diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-07-28 12:30:19 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-04 00:23:00 +0200 |
commit | 4ce0a94656591eb2a6f567e0c6778e2cc96c17b0 (patch) | |
tree | 460714e93f5249da2daf62dec5f0386e4bd559a7 /libswscale/rgb2rgb.h | |
parent | 99c7b516414e76c90446a865ca5a02df3117f694 (diff) | |
download | ffmpeg-4ce0a94656591eb2a6f567e0c6778e2cc96c17b0.tar.gz |
lsws: remove deprecated and unused stuff after the 0->1 major bump
Diffstat (limited to 'libswscale/rgb2rgb.h')
-rw-r--r-- | libswscale/rgb2rgb.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h index 6923dd9608..e3edac88d4 100644 --- a/libswscale/rgb2rgb.h +++ b/libswscale/rgb2rgb.h @@ -68,17 +68,6 @@ void shuffle_bytes_1230(const uint8_t *src, uint8_t *dst, int src_size); void shuffle_bytes_3012(const uint8_t *src, uint8_t *dst, int src_size); void shuffle_bytes_3210(const uint8_t *src, uint8_t *dst, int src_size); -#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); -attribute_deprecated void palette8topacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); - -/* totally deprecated, please fix code that uses this */ -attribute_deprecated void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); -attribute_deprecated void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); -#endif - - void rgb24toyv12_c(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, int width, int height, int lumStride, int chromStride, int srcStride); |