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

Unified Diff: content/renderer/media_capture_from_element/html_video_element_capturer_source.cc

Issue 2727583007: HTMLMediaElement capture: teach the captured MStream to follow up source events (Closed)
Patch Set: haraken@ comments Created 3 years, 9 months 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 | « no previous file | third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-capture.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-capture.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698