summaryrefslogtreecommitdiff
path: root/libswscale/rgb2rgb.h
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2010-06-01 06:53:56 +0000
committerReinhard Tartler <siretart@tauware.de>2010-06-01 06:53:56 +0000
commit3d9408f4a7129ba6fb06f838afa5663c5c73075d (patch)
treedbc10e4c611980c9b30b110fa34baebed03077cb /libswscale/rgb2rgb.h
parent770e50ae80d399ca2e9c397e03abfa71df8b11f3 (diff)
remove palette8torgb15 and palette8tobgr15
They contain exactly the same code as their 16bit variants, so this is effectively code de-duplication. Originally committed as revision 31298 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/rgb2rgb.h')
-rw-r--r--libswscale/rgb2rgb.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h
index 386068b856..1d9f761785 100644
--- a/libswscale/rgb2rgb.h
+++ b/libswscale/rgb2rgb.h
@@ -70,8 +70,6 @@ void palette8topacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const
void palette8topacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette);
void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette);
void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette);
-void palette8torgb15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette);
-void palette8tobgr15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette);
/**
* Height should be a multiple of 2 and width should be a multiple of 16.