[FFmpeg-cvslog] r23855 - trunk/libavutil/aes.c
reimar
subversion
Mon Jun 28 19:11:48 CEST 2010
Author: reimar
Date: Mon Jun 28 19:11:48 2010
New Revision: 23855
Log:
Use a consistent type for multbl array function parameters.
Modified:
trunk/libavutil/aes.c
Modified: trunk/libavutil/aes.c
==============================================================================
--- trunk/libavutil/aes.c Mon Jun 28 18:04:14 2010 (r23854)
+++ trunk/libavutil/aes.c Mon Jun 28 19:11:48 2010 (r23855)
@@ -61,7 +61,7 @@ static void subshift(uint8_t s0[2][16],
s3[0][1]=box[s3[1][13]]; s3[0][13]=box[s3[1][ 9]]; s3[0][ 9]=box[s3[1][ 5]]; s3[0][ 5]=box[s3[1][ 1]];
}
-static inline int mix_core(uint32_t multbl[4][256], int a, int b, int c, int d){
+static inline int mix_core(uint32_t multbl[][256], int a, int b, int c, int d){
#if CONFIG_SMALL
#define ROT(x,s) ((x<<s)|(x>>(32-s)))
return multbl[0][a] ^ ROT(multbl[0][b], 8) ^ ROT(multbl[0][c], 16) ^ ROT(multbl[0][d], 24);
@@ -70,14 +70,14 @@ static inline int mix_core(uint32_t mult
#endif
}
-static inline void mix(uint8_t state[2][4][4], uint32_t multbl[4][256], int s1, int s3){
+static inline void mix(uint8_t state[2][4][4], uint32_t multbl[][256], int s1, int s3){
((uint32_t *)(state))[0] = mix_core(multbl, state[1][0][0], state[1][s1 ][1], state[1][2][2], state[1][s3 ][3]);
((uint32_t *)(state))[1] = mix_core(multbl, state[1][1][0], state[1][s3-1][1], state[1][3][2], state[1][s1-1][3]);
((uint32_t *)(state))[2] = mix_core(multbl, state[1][2][0], state[1][s3 ][1], state[1][0][2], state[1][s1 ][3]);
((uint32_t *)(state))[3] = mix_core(multbl, state[1][3][0], state[1][s1-1][1], state[1][1][2], state[1][s3-1][3]);
}
-static inline void crypt(AVAES *a, int s, const uint8_t *sbox, const uint32_t *multbl){
+static inline void crypt(AVAES *a, int s, const uint8_t *sbox, uint32_t multbl[][256]){
int r;
for(r=a->rounds-1; r>0; r--){
More information about the ffmpeg-cvslog
mailing list