diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:12:29 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:12:29 +0000 |
commit | be6ed6fff4cace79a2c17094ad716bc0944a4274 (patch) | |
tree | 7f152718973ecd354ebd9cde2bfc16ad9ed37c23 /libavcodec/ppc | |
parent | 8233b75041c4fca97dd71087ba888576be86a0f9 (diff) | |
download | ffmpeg-be6ed6fff4cace79a2c17094ad716bc0944a4274.tar.gz |
move some CFLAGS settings away from config.* writing section
Originally committed as revision 7043 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r-- | libavcodec/ppc/dsputil_ppc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/dsputil_ppc.c b/libavcodec/ppc/dsputil_ppc.c index 95b69f45ba..35da79ea96 100644 --- a/libavcodec/ppc/dsputil_ppc.c +++ b/libavcodec/ppc/dsputil_ppc.c @@ -42,7 +42,7 @@ void float_init_altivec(DSPContext* c, AVCodecContext *avctx); #endif -int mm_flags = 0; +int ff_mm_flags = 0; int mm_support(void) { @@ -277,7 +277,7 @@ void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx) dsputil_h264_init_ppc(c, avctx); if (has_altivec()) { - mm_flags |= MM_ALTIVEC; + ff_mm_flags |= MM_ALTIVEC; dsputil_init_altivec(c, avctx); snow_init_altivec(c, avctx); |