Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(651)

Unified Diff: media/tools/player_x11/x11_video_renderer.cc

Issue 83413006: Replace LOG(INFO) with VLOG(0), throughout *media* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase2 Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/tools/player_x11/gl_video_renderer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/tools/player_x11/x11_video_renderer.cc
diff --git a/media/tools/player_x11/x11_video_renderer.cc b/media/tools/player_x11/x11_video_renderer.cc
index c96d4663e6f93c07f0a728af76135d888e420756..907e1abb5f680172559538880ba9cd0687fbe285 100644
--- a/media/tools/player_x11/x11_video_renderer.cc
+++ b/media/tools/player_x11/x11_video_renderer.cc
@@ -16,7 +16,7 @@
// Creates a 32-bit XImage.
static XImage* CreateImage(Display* display, int width, int height) {
- LOG(INFO) << "Allocating XImage " << width << "x" << height;
+ VLOG(0) << "Allocating XImage " << width << "x" << height;
return XCreateImage(display,
DefaultVisual(display, DefaultScreen(display)),
DefaultDepth(display, DefaultScreen(display)),
@@ -181,7 +181,7 @@ void X11VideoRenderer::Paint(media::VideoFrame* video_frame) {
void X11VideoRenderer::Initialize(gfx::Size coded_size,
gfx::Rect visible_rect) {
CHECK(!image_);
- LOG(INFO) << "Initializing X11 Renderer...";
+ VLOG(0) << "Initializing X11 Renderer...";
// Resize the window to fit that of the video.
XResizeWindow(display_, window_, visible_rect.width(), visible_rect.height());
@@ -194,7 +194,7 @@ void X11VideoRenderer::Initialize(gfx::Size coded_size,
use_render_ = XRenderQueryExtension(display_, &dummy, &dummy);
if (use_render_) {
- LOG(INFO) << "Using XRender extension.";
+ VLOG(0) << "Using XRender extension.";
// If we are using XRender, we'll create a picture representing the
// window.
« no previous file with comments | « media/tools/player_x11/gl_video_renderer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698