Commit 1b105243 authored by Michael Niedermayer's avatar Michael Niedermayer

fix 2 warnings

Originally committed as revision 7498 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 034f5fba
...@@ -99,7 +99,7 @@ void av_aes_encrypt(AVAES *a){ ...@@ -99,7 +99,7 @@ void av_aes_encrypt(AVAES *a){
crypt(a, 2, sbox, enc_multbl); crypt(a, 2, sbox, enc_multbl);
} }
static init_multbl2(uint8_t tbl[1024], int c[4], uint8_t *log8, uint8_t *alog8, uint8_t *sbox){ static void init_multbl2(uint8_t tbl[1024], int c[4], uint8_t *log8, uint8_t *alog8, uint8_t *sbox){
int i; int i;
for(i=0; i<1024; i++){ for(i=0; i<1024; i++){
int x= sbox[i/4]; int x= sbox[i/4];
...@@ -192,7 +192,7 @@ AVAES *av_aes_init(uint8_t *key, int key_bits, int decrypt) { ...@@ -192,7 +192,7 @@ AVAES *av_aes_init(uint8_t *key, int key_bits, int decrypt) {
#ifdef TEST #ifdef TEST
int main(){ int main(){
int i,j,k; int i,j;
AVAES *ae= av_aes_init("PI=3.141592654..", 128, 0); AVAES *ae= av_aes_init("PI=3.141592654..", 128, 0);
AVAES *ad= av_aes_init("PI=3.141592654..", 128, 1); AVAES *ad= av_aes_init("PI=3.141592654..", 128, 1);
uint8_t zero[16]= {0}; uint8_t zero[16]= {0};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment