| Index: content/browser/renderer_host/media/video_capture_device_client.h
|
| diff --git a/content/browser/renderer_host/media/video_capture_device_client.h b/content/browser/renderer_host/media/video_capture_device_client.h
|
| index 6d73f0c95ca0b4df47769ad904c5eb7cb06e74e6..411b653279516fc1c7085b598a412761b55b91bd 100644
|
| --- a/content/browser/renderer_host/media/video_capture_device_client.h
|
| +++ b/content/browser/renderer_host/media/video_capture_device_client.h
|
| @@ -39,6 +39,15 @@ class CONTENT_EXPORT VideoCaptureDeviceClient
|
| const media::VideoCaptureFormat& frame_format,
|
| int rotation,
|
| const base::TimeTicks& timestamp) override;
|
| + void OnIncomingCapturedYuvData(const uint8* y_data,
|
| + const uint8* u_data,
|
| + const uint8* v_data,
|
| + int y_length,
|
| + int u_length,
|
| + int v_length,
|
| + const media::VideoCaptureFormat& frame_format,
|
| + int clockwise_rotation,
|
| + const base::TimeTicks& timestamp) override;
|
| scoped_refptr<Buffer> ReserveOutputBuffer(media::VideoFrame::Format format,
|
| const gfx::Size& size) override;
|
| void OnIncomingCapturedVideoFrame(
|
|
|