diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-25 13:39:47 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-25 13:39:47 +0000 |
commit | 50eb9cbc44bb79f67188e77a734ce2d66644eb54 (patch) | |
tree | 502dcb22eb29fa7e6f9798be3ca8da012d4fc370 /libavcodec/armv4l | |
parent | 6e2d5f1aeabd0abbe2ee4ff9d24c4c4ce384d77c (diff) | |
download | ffmpeg-50eb9cbc44bb79f67188e77a734ce2d66644eb54.tar.gz |
idct_permutation_type variable, so the permutation type can quickly be identified
Originally committed as revision 1071 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/armv4l')
-rw-r--r-- | libavcodec/armv4l/mpegvideo_arm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/armv4l/mpegvideo_arm.c b/libavcodec/armv4l/mpegvideo_arm.c index d54bb7a37e..afb7a41c9d 100644 --- a/libavcodec/armv4l/mpegvideo_arm.c +++ b/libavcodec/armv4l/mpegvideo_arm.c @@ -44,7 +44,6 @@ void MPV_common_init_armv4l(MpegEncContext *s) if(idct_algo==FF_IDCT_AUTO || idct_algo==FF_IDCT_ARM){ s->idct_put= arm_idct_put; s->idct_add= arm_idct_add; - for(i=0; i<64; i++) - s->idct_permutation[i]= i; + s->idct_permutation_type= FF_NO_IDCT_PERM; } } |