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_unscaled.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_unscaled.c')
-rw-r--r-- | libswscale/swscale_unscaled.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libswscale/swscale_unscaled.c b/libswscale/swscale_unscaled.c index 5e93d93e3e..19470c543e 100644 --- a/libswscale/swscale_unscaled.c +++ b/libswscale/swscale_unscaled.c @@ -64,7 +64,6 @@ DECLARE_ALIGNED(8, static const uint8_t, dither_8x8_64)[8][8] = { { 24, 40, 20, 36, 27, 43, 23, 39,}, { 56, 8, 52, 4, 59, 11, 55, 7,}, }; -extern const uint8_t dither_8x8_128[8][8]; DECLARE_ALIGNED(8, static const uint8_t, dither_8x8_256)[8][8] = { { 72, 136, 120, 184, 68, 132, 116, 180,}, { 200, 8, 248, 56, 196, 4, 244, 52,}, @@ -875,7 +874,7 @@ static int planarCopyWrapper(SwsContext *c, const uint8_t *src[], if (dst_depth == 9) { \ DITHER_COPY(dstPtr2, dstStride[plane] / 2, wfunc, \ srcPtr2, srcStride[plane] / 2, rfunc, \ - dither_8x8_128, 7, clip9); \ + ff_dither_8x8_128, 7, clip9); \ } else { \ DITHER_COPY(dstPtr2, dstStride[plane] / 2, wfunc, \ srcPtr2, srcStride[plane] / 2, rfunc, \ |