diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-15 20:46:57 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-15 21:38:22 +0200 |
commit | 60e9b8556ab33af8087968b1de15867ede7c5685 (patch) | |
tree | ee1031742cd98f5098911576e0ce6a9bd3f059cd /libswscale/swscale_unscaled.c | |
parent | 165b65771de966f0d47eb236d2135f1beddfcac1 (diff) | |
download | ffmpeg-60e9b8556ab33af8087968b1de15867ede7c5685.tar.gz |
swscale_unscaled: make dither_scale static, its not used elsewhere and has no prefix
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/swscale_unscaled.c')
-rw-r--r-- | libswscale/swscale_unscaled.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_unscaled.c b/libswscale/swscale_unscaled.c index 3b07800d02..8735c62ba3 100644 --- a/libswscale/swscale_unscaled.c +++ b/libswscale/swscale_unscaled.c @@ -109,7 +109,7 @@ DECLARE_ALIGNED(8, const uint8_t, dithers)[8][8][8]={ { 112, 16,104, 8,118, 22,110, 14,}, }}; -const uint16_t dither_scale[15][16]={ +static const uint16_t dither_scale[15][16]={ { 2, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,}, { 2, 3, 7, 7, 13, 13, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,}, { 3, 3, 4, 15, 15, 29, 57, 57, 57, 113, 113, 113, 113, 113, 113, 113,}, |