diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-02 13:42:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-02 13:42:46 +0200 |
commit | 270e647adc3b329946b1d42b3889dd43c4e1a166 (patch) | |
tree | 144dd114089637547048ef0edbd9ae762b2e44e7 | |
parent | c1872172873c0bfec32b4b8d15f6dba70e294e5c (diff) | |
download | ffmpeg-270e647adc3b329946b1d42b3889dd43c4e1a166.tar.gz |
avcodec/x86/dct-test: Make static table const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/dct-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dct-test.c b/libavcodec/x86/dct-test.c index 193a69e3eb..75b8301f3c 100644 --- a/libavcodec/x86/dct-test.c +++ b/libavcodec/x86/dct-test.c @@ -88,7 +88,7 @@ static const struct algo idct_tab_arch[] = { { 0 } }; -static short idct_simple_mmx_perm[64] = { +static const short idct_simple_mmx_perm[64] = { 0x00, 0x08, 0x04, 0x09, 0x01, 0x0C, 0x05, 0x0D, 0x10, 0x18, 0x14, 0x19, 0x11, 0x1C, 0x15, 0x1D, 0x20, 0x28, 0x24, 0x29, 0x21, 0x2C, 0x25, 0x2D, |