Commit 60e9b855 authored by Michael Niedermayer's avatar Michael Niedermayer

swscale_unscaled: make dither_scale static, its not used elsewhere and has no prefix

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 165b6577
...@@ -805,7 +805,6 @@ static av_always_inline int usePal(enum AVPixelFormat pix_fmt) ...@@ -805,7 +805,6 @@ static av_always_inline int usePal(enum AVPixelFormat pix_fmt)
extern const uint64_t ff_dither4[2]; extern const uint64_t ff_dither4[2];
extern const uint64_t ff_dither8[2]; extern const uint64_t ff_dither8[2];
extern const uint8_t dithers[8][8][8]; extern const uint8_t dithers[8][8][8];
extern const uint16_t dither_scale[15][16];
extern const AVClass sws_context_class; extern const AVClass sws_context_class;
......
...@@ -109,7 +109,7 @@ DECLARE_ALIGNED(8, const uint8_t, dithers)[8][8][8]={ ...@@ -109,7 +109,7 @@ DECLARE_ALIGNED(8, const uint8_t, dithers)[8][8][8]={
{ 112, 16,104, 8,118, 22,110, 14,}, { 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, 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,}, { 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,}, { 3, 3, 4, 15, 15, 29, 57, 57, 57, 113, 113, 113, 113, 113, 113, 113,},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment