| Index: media/capture/video/mac/video_capture_device_mac.mm
|
| diff --git a/media/capture/video/mac/video_capture_device_mac.mm b/media/capture/video/mac/video_capture_device_mac.mm
|
| index 5fc083e4d68169482e2c329d43ebbebcce1a7d83..a598988f9733defdf7a12a3851f274db45e9b3ce 100644
|
| --- a/media/capture/video/mac/video_capture_device_mac.mm
|
| +++ b/media/capture/video/mac/video_capture_device_mac.mm
|
| @@ -464,7 +464,8 @@ void VideoCaptureDeviceMac::ReceiveFrame(const uint8* video_frame,
|
| int video_frame_length,
|
| const VideoCaptureFormat& frame_format,
|
| int aspect_numerator,
|
| - int aspect_denominator) {
|
| + int aspect_denominator,
|
| + base::TimeTicks timestamp) {
|
| // This method is safe to call from a device capture thread, i.e. any thread
|
| // controlled by QTKit/AVFoundation.
|
| if (!final_resolution_selected_) {
|
| @@ -536,7 +537,7 @@ void VideoCaptureDeviceMac::ReceiveFrame(const uint8* video_frame,
|
| }
|
|
|
| client_->OnIncomingCapturedData(video_frame, video_frame_length, frame_format,
|
| - 0, base::TimeTicks::Now());
|
| + 0, timestamp);
|
| }
|
|
|
| void VideoCaptureDeviceMac::ReceiveError(const std::string& reason) {
|
|
|