| Index: media/capture/video/video_capture_device.h
|
| diff --git a/media/capture/video/video_capture_device.h b/media/capture/video/video_capture_device.h
|
| index 2caa669f577ec1ade1cc73b69fd4c509ddaec994..7d8ac1f164854c9b09a959c873bf8179696f0703 100644
|
| --- a/media/capture/video/video_capture_device.h
|
| +++ b/media/capture/video/video_capture_device.h
|
| @@ -55,7 +55,6 @@ class MEDIA_EXPORT VideoCaptureDevice {
|
| // Linux/CrOS targets Capture Api type: it can only be set on construction.
|
| enum CaptureApiType {
|
| V4L2_SINGLE_PLANE,
|
| - V4L2_MULTI_PLANE,
|
| API_TYPE_UNKNOWN
|
| };
|
| #elif defined(OS_WIN)
|
| @@ -213,19 +212,6 @@ class MEDIA_EXPORT VideoCaptureDevice {
|
| int clockwise_rotation,
|
| const base::TimeTicks& timestamp) = 0;
|
|
|
| - // Captured a 3 planar YUV frame. Planes are possibly disjoint.
|
| - // |frame_format| must indicate I420.
|
| - virtual void OnIncomingCapturedYuvData(
|
| - const uint8_t* y_data,
|
| - const uint8_t* u_data,
|
| - const uint8_t* v_data,
|
| - size_t y_stride,
|
| - size_t u_stride,
|
| - size_t v_stride,
|
| - const VideoCaptureFormat& frame_format,
|
| - int clockwise_rotation,
|
| - const base::TimeTicks& timestamp) = 0;
|
| -
|
| // Reserve an output buffer into which contents can be captured directly.
|
| // The returned Buffer will always be allocated with a memory size suitable
|
| // for holding a packed video frame with pixels of |format| format, of
|
|
|