Mercurial > libavcodec.hg
changeset 11506:c7743bcad821 libavcodec
Fix compilation on PPC 470.
author | cehoyos |
---|---|
date | Wed, 17 Mar 2010 15:06:27 +0000 |
parents | 61949a920190 |
children | 25e209f9153a |
files | h264dsp.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/h264dsp.c Wed Mar 17 13:04:33 2010 +0000 +++ b/h264dsp.c Wed Mar 17 15:06:27 2010 +0000 @@ -315,6 +315,6 @@ c->h264_loop_filter_strength= NULL; if (ARCH_ARM) ff_h264dsp_init_arm(c); - if (ARCH_PPC) ff_h264dsp_init_ppc(c); + if (HAVE_ALTIVEC) ff_h264dsp_init_ppc(c); if (HAVE_MMX) ff_h264dsp_init_x86(c); }