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

Unified Diff: content/renderer/media/video_capture_message_filter.cc

Issue 2045813003: Decouple capture timestamp and reference time (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
Index: content/renderer/media/video_capture_message_filter.cc
diff --git a/content/renderer/media/video_capture_message_filter.cc b/content/renderer/media/video_capture_message_filter.cc
index 14afb71d45b95cbb2fb79e5f8fb73a873295ab2b..cd645d2b76d5f7ecb5e1039c1c376d778f48d965 100644
--- a/content/renderer/media/video_capture_message_filter.cc
+++ b/content/renderer/media/video_capture_message_filter.cc
@@ -153,13 +153,10 @@ void VideoCaptureMessageFilter::OnBufferReceived(
return;
}
- delegate->OnBufferReceived(params.buffer_id,
- params.timestamp,
- params.metadata,
- params.pixel_format,
- params.storage_type,
- params.coded_size,
- params.visible_rect);
+ delegate->OnBufferReceived(params.buffer_id, params.reference_time,
+ params.timestamp, params.metadata,
+ params.pixel_format, params.storage_type,
+ params.coded_size, params.visible_rect);
}
void VideoCaptureMessageFilter::OnBufferDestroyed(int device_id,

Powered by Google App Engine
This is Rietveld 408576698