mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avutil/xtea: make const tables static const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
90b40b45d4
commit
0e98a13322
@ -244,7 +244,7 @@ int main(void)
|
||||
AVXTEA ctx;
|
||||
uint8_t buf[8], iv[8];
|
||||
int i;
|
||||
const uint8_t src[32] = "HelloWorldHelloWorldHelloWorld";
|
||||
static const uint8_t src[32] = "HelloWorldHelloWorldHelloWorld";
|
||||
uint8_t ct[32];
|
||||
uint8_t pl[32];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user