diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-15 13:38:12 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-15 14:38:03 +0200 |
commit | aa2ba8c99e5708884a56aea9c1d96e014866f8a3 (patch) | |
tree | 9aeb996d919f68f7e24dc9bdf161a56014191ca6 /libswscale/swscale.c | |
parent | d258531502b24cb653204fe4f003c8815755bdc4 (diff) | |
download | ffmpeg-aa2ba8c99e5708884a56aea9c1d96e014866f8a3.tar.gz |
swscale: Move extern declarations for tables to swscale_internal.h
Also add missing ff_ prefixes where necessary.
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index cee169e309..3a63fbe789 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -35,7 +35,7 @@ #include "swscale_internal.h" #include "swscale.h" -DECLARE_ALIGNED(8, const uint8_t, dither_8x8_128)[8][8] = { +DECLARE_ALIGNED(8, const uint8_t, ff_dither_8x8_128)[8][8] = { { 36, 68, 60, 92, 34, 66, 58, 90, }, { 100, 4, 124, 28, 98, 2, 122, 26, }, { 52, 84, 44, 76, 50, 82, 42, 74, }, @@ -548,8 +548,8 @@ static int swScale(SwsContext *c, const uint8_t *src[], lastInLumBuf, lastInChrBuf); #endif if (should_dither) { - c->chrDither8 = dither_8x8_128[chrDstY & 7]; - c->lumDither8 = dither_8x8_128[dstY & 7]; + c->chrDither8 = ff_dither_8x8_128[chrDstY & 7]; + c->lumDither8 = ff_dither_8x8_128[dstY & 7]; } if (dstY >= dstH - 2) { /* hmm looks like we can't use MMX here without overwriting |