summaryrefslogtreecommitdiff
path: root/libswscale/rgb2rgb.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-04-19 21:25:10 +0200
committerAnton Khirnov <anton@khirnov.net>2011-04-19 21:50:12 +0200
commit7dfe244fbd9a3c0a24cac441a4ec777da8f3a666 (patch)
tree7a076c8072ed8b6cb55016b7d56108cbf51f624f /libswscale/rgb2rgb.h
parent975c27340528b9e053a7ae9b63b764984e91941c (diff)
sws: remove disabled cruft.
Diffstat (limited to 'libswscale/rgb2rgb.h')
-rw-r--r--libswscale/rgb2rgb.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h
index bde1134541..158d9a9a87 100644
--- a/libswscale/rgb2rgb.h
+++ b/libswscale/rgb2rgb.h
@@ -68,16 +68,6 @@ 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);
-#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
-
/**
* Height should be a multiple of 2 and width should be a multiple of 16.
* (If this is a problem for anyone then tell me, and I will fix it.)