| Index: include/libyuv/planar_functions.h
|
| diff --git a/include/libyuv/planar_functions.h b/include/libyuv/planar_functions.h
|
| index 1b57b29261eeb38798ff26c0830583cfc6f732f8..1098dd64cc01737ecc06c5d9586ffd5d05e2d93d 100644
|
| --- a/include/libyuv/planar_functions.h
|
| +++ b/include/libyuv/planar_functions.h
|
| @@ -111,6 +111,11 @@ int UYVYToNV12(const uint8* src_uyvy, int src_stride_uyvy,
|
| uint8* dst_uv, int dst_stride_uv,
|
| int width, int height);
|
|
|
| +LIBYUV_API
|
| +int YUY2ToY(const uint8* src_yuy2, int src_stride_yuy2,
|
| + uint8* dst_y, int dst_stride_y,
|
| + int width, int height);
|
| +
|
| // Convert I420 to I400. (calls CopyPlane ignoring u/v).
|
| LIBYUV_API
|
| int I420ToI400(const uint8* src_y, int src_stride_y,
|
|
|