]> git.sesse.net Git - ffmpeg/commitdiff
unused think
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 14 Jan 2007 19:41:57 +0000 (19:41 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 14 Jan 2007 19:41:57 +0000 (19:41 +0000)
Originally committed as revision 7495 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/aes.c

index 1697e9ecc9a0f3c6de97002a61f185aa225c939d..7b453d8e73077156498742cce61cd143422b364c 100644 (file)
@@ -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];