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

Unified Diff: media/video/capture/win/video_capture_device_mf_win.cc

Issue 83413006: Replace LOG(INFO) with VLOG(0), throughout *media* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: media/video/capture/win/video_capture_device_mf_win.cc
diff --git a/media/video/capture/win/video_capture_device_mf_win.cc b/media/video/capture/win/video_capture_device_mf_win.cc
index 12694de11c01f757a9095c70e50a52364e4840aa..df479718633cf56a6a5cc9c1b1ba2cf7a59ba9da 100644
--- a/media/video/capture/win/video_capture_device_mf_win.cc
+++ b/media/video/capture/win/video_capture_device_mf_win.cc
@@ -357,10 +357,10 @@ void VideoCaptureDeviceMFWin::AllocateAndStart(
capabilities.GetBestMatchedCapability(capture_format.width,
capture_format.height,
capture_format.frame_rate);
- DLOG(INFO) << "Chosen capture format= (" << found_capability.width << "x"
- << found_capability.height << ")@("
- << found_capability.frame_rate_numerator << "/"
- << found_capability.frame_rate_denominator << ")fps";
+ DVLOG(0) << "Chosen capture format= (" << found_capability.width << "x"
+ << found_capability.height << ")@("
+ << found_capability.frame_rate_numerator << "/"
+ << found_capability.frame_rate_denominator << ")fps";
ScopedComPtr<IMFMediaType> type;
if (FAILED(hr = reader_->GetNativeMediaType(

Powered by Google App Engine
This is Rietveld 408576698