OSDN Git Service

memcpy
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 14 Jan 2007 13:37:19 +0000 (13:37 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 14 Jan 2007 13:37:19 +0000 (13:37 +0000)
Originally committed as revision 7469 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/aes.c

index 0aa1150..f06c4a6 100644 (file)
@@ -146,8 +146,7 @@ AVAES *av_aes_init(uint8_t *key, int key_bits) {
 
     for(t= 0; t < (rounds+1)*4; ) {
         for(j = 0; (j < KC) && (t < (rounds+1)*4); j++, t++)
-            for(i = 0; i < 4; i++)
-                a->round_key[0][t][i] = tk[j][i];
+            memcpy(a->round_key[0][t],  tk[j], 4);
 
         for(i = 0; i < 4; i++)
                 tk[0][i] ^= sbox[tk[KC-1][(i+1)&3]];