diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-06-07 13:22:36 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-06-07 13:23:04 +0200 |
commit | 7a8228c05e23d85b11a3853bf25a7ddbc662e2e3 (patch) | |
tree | 3fc2a066c18682581899ae2dfce2d0f33ef891f2 /libswscale/swscale_internal.h | |
parent | 4ae28eb85351528e37ded59336e3f763497813b7 (diff) | |
download | ffmpeg-7a8228c05e23d85b11a3853bf25a7ddbc662e2e3.tar.gz |
sws: make dither_scale const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 16e7d3288c..1403e7dd20 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -498,7 +498,7 @@ const char *sws_format_name(enum PixelFormat format); extern const uint64_t ff_dither4[2]; extern const uint64_t ff_dither8[2]; extern const uint8_t dithers[8][8][8]; -extern uint16_t dither_scale[15][16]; +extern const uint16_t dither_scale[15][16]; extern const AVClass sws_context_class; |