summaryrefslogtreecommitdiffstats
path: root/libavcodec/fmtconvert.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-03-04 22:05:16 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2011-03-07 11:15:25 -0500
commit159683ddec69bb4faadfc53de8e1d357e1abbbad (patch)
tree2d5f52f876c5cd67f9589df1c31b569d4504b994 /libavcodec/fmtconvert.c
parentd34ca1cfe3182c1cb185c31e6b1bb64f40de0e92 (diff)
downloadffmpeg-streaming-159683ddec69bb4faadfc53de8e1d357e1abbbad.zip
ffmpeg-streaming-159683ddec69bb4faadfc53de8e1d357e1abbbad.tar.gz
Fix compilation on powerpc with --disable-altivec.
Diffstat (limited to 'libavcodec/fmtconvert.c')
-rw-r--r--libavcodec/fmtconvert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fmtconvert.c b/libavcodec/fmtconvert.c
index e26b899..bf762cc 100644
--- a/libavcodec/fmtconvert.c
+++ b/libavcodec/fmtconvert.c
@@ -63,6 +63,6 @@ av_cold void ff_fmt_convert_init(FmtConvertContext *c, AVCodecContext *avctx)
c->float_to_int16_interleave = float_to_int16_interleave_c;
if (ARCH_ARM) ff_fmt_convert_init_arm(c, avctx);
- if (ARCH_PPC) ff_fmt_convert_init_ppc(c, avctx);
+ if (HAVE_ALTIVEC) ff_fmt_convert_init_ppc(c, avctx);
if (HAVE_MMX) ff_fmt_convert_init_x86(c, avctx);
}
OpenPOWER on IntegriCloud