Skip to content
Snippets Groups Projects
Commit 159683dd authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos Committed by Justin Ruggles
Browse files

Fix compilation on powerpc with --disable-altivec.

parent d34ca1cf
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment