summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libswscale/swscale.c4
-rw-r--r--libswscale/yuv2rgb.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 577a0dfa9d..2cac8729e2 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -264,12 +264,12 @@ static unsigned char clip_table[768];
static SwsVector *sws_getConvVec(SwsVector *a, SwsVector *b);
-const uint8_t __attribute__((aligned(8))) dither_2x2_4[2][8]={
+static const uint8_t __attribute__((aligned(8))) dither_2x2_4[2][8]={
{ 1, 3, 1, 3, 1, 3, 1, 3, },
{ 2, 0, 2, 0, 2, 0, 2, 0, },
};
-const uint8_t __attribute__((aligned(8))) dither_2x2_8[2][8]={
+static const uint8_t __attribute__((aligned(8))) dither_2x2_8[2][8]={
{ 6, 2, 6, 2, 6, 2, 6, 2, },
{ 0, 4, 0, 4, 0, 4, 0, 4, },
};
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c
index 9b64c06dec..d19430fd17 100644
--- a/libswscale/yuv2rgb.c
+++ b/libswscale/yuv2rgb.c
@@ -41,8 +41,6 @@
#define DITHER1XBPP // only for MMX
-extern const uint8_t dither_2x2_4[2][8];
-extern const uint8_t dither_2x2_8[2][8];
extern const uint8_t dither_8x8_32[8][8];
extern const uint8_t dither_8x8_73[8][8];
extern const uint8_t dither_8x8_220[8][8];