diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-11-23 17:02:17 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-11-24 09:24:30 -0500 |
commit | 7831fb90503142e32cc3c9be43bc3f9d342ded6b (patch) | |
tree | b6692b27a7d11844c59f1dc2939d23a39567d7eb /libavcodec | |
parent | 99cb833fc2d9874c62fffbcd3347fae660de0fe5 (diff) | |
download | ffmpeg-7831fb90503142e32cc3c9be43bc3f9d342ded6b.tar.gz |
textureencdsp: cosmetics: Use normal static const for tables
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/texturedspenc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/texturedspenc.c b/libavcodec/texturedspenc.c index 2036998c81..a351bea5f0 100644 --- a/libavcodec/texturedspenc.c +++ b/libavcodec/texturedspenc.c @@ -32,13 +32,13 @@ #include "texturedsp.h" -const static uint8_t expand5[32] = { +static const uint8_t expand5[32] = { 0, 8, 16, 24, 33, 41, 49, 57, 66, 74, 82, 90, 99, 107, 115, 123, 132, 140, 148, 156, 165, 173, 181, 189, 198, 206, 214, 222, 231, 239, 247, 255, }; -const static uint8_t expand6[64] = { +static const uint8_t expand6[64] = { 0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 65, 69, 73, 77, 81, 85, 89, 93, 97, 101, 105, 109, 113, 117, 121, 125, 130, 134, 138, 142, @@ -47,7 +47,7 @@ const static uint8_t expand6[64] = { 243, 247, 251, 255, }; -const static uint8_t match5[256][2] = { +static const uint8_t match5[256][2] = { { 0, 0 }, { 0, 0 }, { 0, 1 }, { 0, 1 }, { 1, 0 }, { 1, 0 }, { 1, 0 }, { 1, 1 }, { 1, 1 }, { 2, 0 }, { 2, 0 }, { 0, 4 }, { 2, 1 }, { 2, 1 }, { 2, 1 }, { 3, 0 }, { 3, 0 }, { 3, 0 }, @@ -93,7 +93,7 @@ const static uint8_t match5[256][2] = { { 31, 30 }, { 31, 30 }, { 31, 31 }, { 31, 31 }, }; -const static uint8_t match6[256][2] = { +static const uint8_t match6[256][2] = { { 0, 0 }, { 0, 1 }, { 1, 0 }, { 1, 0 }, { 1, 1 }, { 2, 0 }, { 2, 1 }, { 3, 0 }, { 3, 0 }, { 3, 1 }, { 4, 0 }, { 4, 0 }, { 4, 1 }, { 5, 0 }, { 5, 1 }, { 6, 0 }, { 6, 0 }, { 6, 1 }, |