diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-19 14:17:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-19 15:13:48 +0100 |
commit | ef627bf9ecddfa888d4c6e4fd633852798c3b4a9 (patch) | |
tree | acda9d2b5e84c4435999c1b7d4462f2a951c4215 /libswscale/rgb2rgb.h | |
parent | 722fb81dc5c8546eb6498629db7c8ebe2f9545c2 (diff) | |
download | ffmpeg-ef627bf9ecddfa888d4c6e4fd633852798c3b4a9.tar.gz |
swscale: add nv12/nv21->yuv420 converter
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/rgb2rgb.h')
-rw-r--r-- | libswscale/rgb2rgb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h index 340cc70205..5df5dea420 100644 --- a/libswscale/rgb2rgb.h +++ b/libswscale/rgb2rgb.h @@ -135,6 +135,10 @@ extern void (*interleaveBytes)(const uint8_t *src1, const uint8_t *src2, uint8_t int width, int height, int src1Stride, int src2Stride, int dstStride); +extern void (*deinterleaveBytes)(const uint8_t *src, uint8_t *dst1, uint8_t *dst2, + int width, int height, int srcStride, + int dst1Stride, int dst2Stride); + extern void (*vu9_to_vu12)(const uint8_t *src1, const uint8_t *src2, uint8_t *dst1, uint8_t *dst2, int width, int height, |