diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-03-04 22:05:16 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-03-07 11:15:25 -0500 |
commit | 159683ddec69bb4faadfc53de8e1d357e1abbbad (patch) | |
tree | 2d5f52f876c5cd67f9589df1c31b569d4504b994 /libavcodec | |
parent | d34ca1cfe3182c1cb185c31e6b1bb64f40de0e92 (diff) | |
download | ffmpeg-159683ddec69bb4faadfc53de8e1d357e1abbbad.tar.gz |
Fix compilation on powerpc with --disable-altivec.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/fmtconvert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fmtconvert.c b/libavcodec/fmtconvert.c index e26b8997ab..bf762cc660 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); } |