diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-14 14:47:30 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-30 12:19:45 +0200 |
commit | 38282149b6ce8f4b8361e3b84542ba9aa8a1f32f (patch) | |
tree | 028b5282288a6849233274851112fff4e2d0d25b /libavcodec/h264dsp.c | |
parent | 42b9150b0d4f0a130c1d93dc991fd5412743a8cf (diff) | |
download | ffmpeg-38282149b6ce8f4b8361e3b84542ba9aa8a1f32f.tar.gz |
ppc: More consistent arch initialization
Diffstat (limited to 'libavcodec/h264dsp.c')
-rw-r--r-- | libavcodec/h264dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264dsp.c b/libavcodec/h264dsp.c index 8a70aefedc..6ba465bced 100644 --- a/libavcodec/h264dsp.c +++ b/libavcodec/h264dsp.c @@ -132,6 +132,6 @@ void ff_h264dsp_init(H264DSPContext *c, const int bit_depth, const int chroma_fo } if (ARCH_ARM) ff_h264dsp_init_arm(c, bit_depth, chroma_format_idc); - if (HAVE_ALTIVEC) ff_h264dsp_init_ppc(c, bit_depth, chroma_format_idc); + if (ARCH_PPC) ff_h264dsp_init_ppc(c, bit_depth, chroma_format_idc); if (ARCH_X86) ff_h264dsp_init_x86(c, bit_depth, chroma_format_idc); } |