diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-14 19:41:57 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-14 19:41:57 +0000 |
commit | a6e923c9db16acb9373c537ec0da23e1c6a6f1b6 (patch) | |
tree | 0298d8ef94fb2d0a7c071583a300cf504a26f58d /libavutil | |
parent | 0c5d2819a5b124ba4692f2fb1c2f1298fd373b8c (diff) | |
download | ffmpeg-a6e923c9db16acb9373c537ec0da23e1c6a6f1b6.tar.gz |
unused think
Originally committed as revision 7495 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/aes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/aes.c b/libavutil/aes.c index 1697e9ecc9..7b453d8e73 100644 --- a/libavutil/aes.c +++ b/libavutil/aes.c @@ -28,8 +28,8 @@ typedef struct AVAES{ int rounds; }AVAES; -static const uint8_t rcon[11] = { - 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36, 0x6c +static const uint8_t rcon[10] = { + 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36 }; static uint8_t sbox[256]; |