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

Unified Diff: media/capture/video/win/sink_filter_observer_win.h

Issue 1324683004: Win Video Capture: Sending the timestamps provided by the driver to the capture pipeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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: media/capture/video/win/sink_filter_observer_win.h
diff --git a/media/capture/video/win/sink_filter_observer_win.h b/media/capture/video/win/sink_filter_observer_win.h
index 9dfd08bdb305b33b7ce4aa3ba545e26edec94563..a534a37198f95daaacc36a8969258405e7a1b365 100644
--- a/media/capture/video/win/sink_filter_observer_win.h
+++ b/media/capture/video/win/sink_filter_observer_win.h
@@ -14,7 +14,10 @@ class SinkFilterObserver {
public:
// SinkFilter will call this function with all frames delivered to it.
// buffer in only valid during this function call.
- virtual void FrameReceived(const uint8* buffer, int length) = 0;
+ virtual void FrameReceived(
+ const uint8* buffer,
+ int length,
+ REFERENCE_TIME raw_timestamp) = 0;
protected:
virtual ~SinkFilterObserver();
« no previous file with comments | « no previous file | media/capture/video/win/sink_input_pin_win.cc » ('j') | media/capture/video/win/sink_input_pin_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698