Index: include/libyuv/convert.h |
diff --git a/include/libyuv/convert.h b/include/libyuv/convert.h |
index fcfcf544e1285533738e7ca5da14987de992f6ba..7c561f902955bc31d4fbc6032530057d9a79304f 100644 |
--- a/include/libyuv/convert.h |
+++ b/include/libyuv/convert.h |
@@ -201,6 +201,13 @@ int ARGB4444ToI420(const uint8* src_frame, int src_stride_frame, |
uint8* dst_v, int dst_stride_v, |
int width, int height); |
+// Split interleaved UV plane into separate U and V planes. |
+LIBYUV_API |
+int SplitUVPlanes(const uint8* src_uv, int src_stride_uv, |
fbarchard1
2016/08/24 17:42:23
This belongs in planar_functions.h
Functions in co
fbarchard1
2016/08/24 17:42:23
src_uv is a single plane of packed 2 channels. Su
|
+ uint8* dst_u, int dst_stride_u, |
+ uint8* dst_v, int dst_stride_v, |
+ int width, int height); |
+ |
#ifdef HAVE_JPEG |
// src_width/height provided by capture. |
// dst_width/height for clipping determine final size. |