Skip to content
Snippets Groups Projects
Commit 270e647a authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/x86/dct-test: Make static table const

parent c1872172
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment