diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-07-18 12:22:07 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-07-18 12:22:07 +0000 |
commit | ef0d7a0d4fd4e45a58e164c365a2b31c4719bc3b (patch) | |
tree | 66328f2c780bfcdad9a5920848528c0991319dce /libavutil/aes.c | |
parent | 109d30e9f1fbe4de416fcdbcc1442aaf43f85d00 (diff) | |
download | ffmpeg-ef0d7a0d4fd4e45a58e164c365a2b31c4719bc3b.tar.gz |
Document aes init code writing on purpose beyond round_key array into state array.
Originally committed as revision 9734 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/aes.c')
-rw-r--r-- | libavutil/aes.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/aes.c b/libavutil/aes.c index dc37162dee..c538521dd8 100644 --- a/libavutil/aes.c +++ b/libavutil/aes.c @@ -24,6 +24,8 @@ #include "aes.h" typedef struct AVAES{ + // Note: round_key[16] is accessed in the init code, but this only + // overwrites state, which does not matter (see also r7471). uint8_t round_key[15][4][4]; uint8_t state[2][4][4]; int rounds; |