diff options
author | Clément Bœsch <clement@stupeflix.com> | 2016-06-21 12:58:56 +0200 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2016-06-21 12:58:56 +0200 |
commit | 5605c1b3c02550b2acf014ecfbea73c728d25379 (patch) | |
tree | c7935a49e278d54c782d394617f40808791fae05 /libavutil | |
parent | 7cf4b442cebd9bb8a0e2602f3fda2edbbdfb39c8 (diff) | |
parent | f2422b58756ba97e3cbadc190f1ed950aa201ec7 (diff) | |
download | ffmpeg-5605c1b3c02550b2acf014ecfbea73c728d25379.tar.gz |
Merge commit 'f2422b58756ba97e3cbadc190f1ed950aa201ec7'
* commit 'f2422b58756ba97e3cbadc190f1ed950aa201ec7':
testprogs: Mark some tables as static const
Merged-by: Clément Bœsch <clement@stupeflix.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/aes-test.c | 7 | ||||
-rw-r--r-- | libavutil/crc-test.c | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/libavutil/aes-test.c b/libavutil/aes-test.c index 137df3060e..2bdba8ada2 100644 --- a/libavutil/aes-test.c +++ b/libavutil/aes-test.c @@ -28,22 +28,23 @@ int main(int argc, char **argv) { int i, j; struct AVAES *b; - uint8_t rkey[2][16] = { + static const uint8_t rkey[2][16] = { { 0 }, { 0x10, 0xa5, 0x88, 0x69, 0xd7, 0x4b, 0xe5, 0xa3, 0x74, 0xcf, 0x86, 0x7c, 0xfb, 0x47, 0x38, 0x59 } }; - uint8_t pt[32], rpt[2][16] = { + static const uint8_t rpt[2][16] = { { 0x6a, 0x84, 0x86, 0x7c, 0xd7, 0x7e, 0x12, 0xad, 0x07, 0xea, 0x1b, 0xe8, 0x95, 0xc5, 0x3f, 0xa3 }, { 0 } }; - uint8_t rct[2][16] = { + static const uint8_t rct[2][16] = { { 0x73, 0x22, 0x81, 0xc0, 0xa0, 0xaa, 0xb8, 0xf7, 0xa5, 0x4a, 0x0c, 0x67, 0xa0, 0xc4, 0x5e, 0xcf }, { 0x6d, 0x25, 0x1e, 0x69, 0x44, 0xb0, 0x51, 0xe0, 0x4e, 0xaa, 0x6f, 0xb4, 0xdb, 0xf7, 0x84, 0x65 } }; + uint8_t pt[32]; uint8_t temp[32]; uint8_t iv[2][16]; int err = 0; diff --git a/libavutil/crc-test.c b/libavutil/crc-test.c index 3c250df919..199aea1ef9 100644 --- a/libavutil/crc-test.c +++ b/libavutil/crc-test.c @@ -25,7 +25,7 @@ int main(void) { uint8_t buf[1999]; int i; - unsigned p[6][3] = { + static const unsigned p[6][3] = { { AV_CRC_32_IEEE_LE, 0xEDB88320, 0x3D5CDD04 }, { AV_CRC_32_IEEE , 0x04C11DB7, 0xC0F5BAE0 }, { AV_CRC_24_IEEE , 0x864CFB , 0xB704CE }, |