comparison armv4l/mpegvideo_arm.c @ 768:c3fc09466f92 libavcodec

idct_permutation_type variable, so the permutation type can quickly be identified
author michaelni
date Fri, 25 Oct 2002 13:39:47 +0000
parents b24ea84b23e2
children 8cc0d241da37
comparison
equal deleted inserted replaced
767:c75c3f1bef4b 768:c3fc09466f92
42 const int idct_algo= s->avctx->idct_algo; 42 const int idct_algo= s->avctx->idct_algo;
43 43
44 if(idct_algo==FF_IDCT_AUTO || idct_algo==FF_IDCT_ARM){ 44 if(idct_algo==FF_IDCT_AUTO || idct_algo==FF_IDCT_ARM){
45 s->idct_put= arm_idct_put; 45 s->idct_put= arm_idct_put;
46 s->idct_add= arm_idct_add; 46 s->idct_add= arm_idct_add;
47 for(i=0; i<64; i++) 47 s->idct_permutation_type= FF_NO_IDCT_PERM;
48 s->idct_permutation[i]= i;
49 } 48 }
50 } 49 }