summaryrefslogtreecommitdiff
path: root/libswscale/rgb2rgb.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-05-25 20:49:52 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-05-25 20:58:59 +0200
commit4a056160bef8578dc1e370e2445f61f2459e3863 (patch)
treebbf4a3b2e94904afc28eb756076efa51cf18a23f /libswscale/rgb2rgb.h
parent364889cf9c1f3c5e816a30d30d714a84765cfc29 (diff)
downloadffmpeg-4a056160bef8578dc1e370e2445f61f2459e3863.tar.gz
swscale: remove duplicatiopn of rgb24toyv12_c()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/rgb2rgb.h')
-rw-r--r--libswscale/rgb2rgb.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h
index 6688c5967e..e31d9cc9e9 100644
--- a/libswscale/rgb2rgb.h
+++ b/libswscale/rgb2rgb.h
@@ -68,6 +68,13 @@ void shuffle_bytes_1230(const uint8_t *src, uint8_t *dst, long src_size);
void shuffle_bytes_3012(const uint8_t *src, uint8_t *dst, long src_size);
void shuffle_bytes_3210(const uint8_t *src, uint8_t *dst, long src_size);
+void rgb24toyv12_c(const uint8_t *src, uint8_t *ydst,
+ uint8_t *udst, uint8_t *vdst,
+ long width, long height,
+ long lumStride, long chromStride,
+ long srcStride);
+
+
#if LIBSWSCALE_VERSION_MAJOR < 1
/* deprecated, use the public versions in swscale.h */
attribute_deprecated void palette8topacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette);