diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-15 13:29:01 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-15 14:38:03 +0200 |
commit | d258531502b24cb653204fe4f003c8815755bdc4 (patch) | |
tree | 9fed027acb7eaf375b9c3b9299669d2058b9ef1e /libswscale/swscale.c | |
parent | 060ce0c697e261ca2792a7df30dfd1bae6900a4f (diff) | |
download | ffmpeg-d258531502b24cb653204fe4f003c8815755bdc4.tar.gz |
swscale: Mark a bunch of tables only used within one file static
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 4fb6d6c6e3..cee169e309 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -46,7 +46,7 @@ DECLARE_ALIGNED(8, const uint8_t, dither_8x8_128)[8][8] = { { 112, 16, 104, 8, 118, 22, 110, 14, }, }; -DECLARE_ALIGNED(8, const uint8_t, ff_sws_pb_64)[8] = { +DECLARE_ALIGNED(8, static const uint8_t, sws_pb_64)[8] = { 64, 64, 64, 64, 64, 64, 64, 64 }; @@ -440,7 +440,7 @@ static int swScale(SwsContext *c, const uint8_t *src[], } if (!should_dither) { - c->chrDither8 = c->lumDither8 = ff_sws_pb_64; + c->chrDither8 = c->lumDither8 = sws_pb_64; } lastDstY = dstY; |