Index: include/libyuv/convert.h |
diff --git a/include/libyuv/convert.h b/include/libyuv/convert.h |
index a026385f6ce6470ee0f0993a98b6ecea9dd111db..fcfcf544e1285533738e7ca5da14987de992f6ba 100644 |
--- a/include/libyuv/convert.h |
+++ b/include/libyuv/convert.h |
@@ -118,6 +118,17 @@ int M420ToI420(const uint8* src_m420, int src_stride_m420, |
uint8* dst_v, int dst_stride_v, |
int width, int height); |
+// Convert Android420 to I420. |
+LIBYUV_API |
+int Android420ToI420(const uint8* src_y, int src_stride_y, |
+ const uint8* src_u, int src_stride_u, |
+ const uint8* src_v, int src_stride_v, |
+ int pixel_stride_uv, |
+ uint8* dst_y, int dst_stride_y, |
+ uint8* dst_u, int dst_stride_u, |
+ uint8* dst_v, int dst_stride_v, |
+ int width, int height); |
+ |
// ARGB little endian (bgra in memory) to I420. |
LIBYUV_API |
int ARGBToI420(const uint8* src_frame, int src_stride_frame, |