summaryrefslogtreecommitdiff
path: root/libswscale/swscale_internal.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-08-15 13:38:12 +0200
committerDiego Biurrun <diego@biurrun.de>2013-08-15 14:38:03 +0200
commitaa2ba8c99e5708884a56aea9c1d96e014866f8a3 (patch)
tree9aeb996d919f68f7e24dc9bdf161a56014191ca6 /libswscale/swscale_internal.h
parentd258531502b24cb653204fe4f003c8815755bdc4 (diff)
swscale: Move extern declarations for tables to swscale_internal.h
Also add missing ff_ prefixes where necessary.
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r--libswscale/swscale_internal.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h
index 9544309cb7..e8245b90d5 100644
--- a/libswscale/swscale_internal.h
+++ b/libswscale/swscale_internal.h
@@ -720,6 +720,14 @@ static av_always_inline int usePal(enum AVPixelFormat pix_fmt)
extern const uint64_t ff_dither4[2];
extern const uint64_t ff_dither8[2];
+extern const uint8_t ff_dither_4x4_16[4][8];
+extern const uint8_t ff_dither_8x8_32[8][8];
+extern const uint8_t ff_dither_8x8_73[8][8];
+extern const uint8_t ff_dither_8x8_128[8][8];
+extern const uint8_t ff_dither_8x8_220[8][8];
+
+extern const int32_t ff_yuv2rgb_coeffs[8][4];
+
extern const AVClass sws_context_class;
/**