diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-10-09 18:29:46 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-10-09 18:29:46 +0000 |
commit | b420448e38ae27110953e857f5d65b58ccc8e688 (patch) | |
tree | da7ef4f13a3e004bbc4a2e006bd016fb6503f6a9 /libavcodec/ppc/mpegvideo_ppc.c | |
parent | 1c2a417f6a51c94de6d8b64d2aecc476f89b50f1 (diff) | |
download | ffmpeg-b420448e38ae27110953e857f5d65b58ccc8e688.tar.gz |
removing ALTIVEC_USE_REFERENCE_C_CODE, since has no use anymore
Originally committed as revision 6606 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc/mpegvideo_ppc.c')
-rw-r--r-- | libavcodec/ppc/mpegvideo_ppc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/ppc/mpegvideo_ppc.c b/libavcodec/ppc/mpegvideo_ppc.c index db0ab59bed..c5e822f772 100644 --- a/libavcodec/ppc/mpegvideo_ppc.c +++ b/libavcodec/ppc/mpegvideo_ppc.c @@ -48,11 +48,7 @@ void MPV_common_init_ppc(MpegEncContext *s) { s->dsp.idct_put = idct_put_altivec; s->dsp.idct_add = idct_add_altivec; -#ifndef ALTIVEC_USE_REFERENCE_C_CODE s->dsp.idct_permutation_type = FF_TRANSPOSE_IDCT_PERM; -#else /* ALTIVEC_USE_REFERENCE_C_CODE */ - s->dsp.idct_permutation_type = FF_NO_IDCT_PERM; -#endif /* ALTIVEC_USE_REFERENCE_C_CODE */ } } |