| Index: content/renderer/media_capture_from_element/html_video_element_capturer_source.cc
|
| diff --git a/content/renderer/media_capture_from_element/html_video_element_capturer_source.cc b/content/renderer/media_capture_from_element/html_video_element_capturer_source.cc
|
| index 896bda87e57e8932837feb8f802fb72f9cba75db..5314f254e938db0734f82fdde816f5ec728366d1 100644
|
| --- a/content/renderer/media_capture_from_element/html_video_element_capturer_source.cc
|
| +++ b/content/renderer/media_capture_from_element/html_video_element_capturer_source.cc
|
| @@ -61,7 +61,7 @@ void HtmlVideoElementCapturerSource::GetCurrentSupportedFormats(
|
| int max_requested_height,
|
| double max_requested_frame_rate,
|
| const VideoCaptureDeviceFormatsCB& callback) {
|
| - DVLOG(3) << __func__ << "{ max_requested_height = " << max_requested_height
|
| + DVLOG(2) << __func__ << "{ max_requested_height = " << max_requested_height
|
| << "}) { max_requested_width = " << max_requested_width
|
| << "}) { max_requested_frame_rate = " << max_requested_frame_rate
|
| << "})";
|
| @@ -83,7 +83,7 @@ void HtmlVideoElementCapturerSource::StartCapture(
|
| const media::VideoCaptureParams& params,
|
| const VideoCaptureDeliverFrameCB& new_frame_callback,
|
| const RunningCallback& running_callback) {
|
| - DVLOG(3) << __func__ << " requested "
|
| + DVLOG(2) << __func__ << " requested "
|
| << media::VideoCaptureFormat::ToString(params.requested_format);
|
| DCHECK(params.requested_format.IsValid());
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| @@ -115,7 +115,7 @@ void HtmlVideoElementCapturerSource::StartCapture(
|
| }
|
|
|
| void HtmlVideoElementCapturerSource::StopCapture() {
|
| - DVLOG(3) << __func__;
|
| + DVLOG(2) << __func__;
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| running_callback_.Reset();
|
| new_frame_callback_.Reset();
|
|
|