summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264dsp.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-04-14 14:47:30 +0200
committerDiego Biurrun <diego@biurrun.de>2013-04-30 12:19:45 +0200
commit38282149b6ce8f4b8361e3b84542ba9aa8a1f32f (patch)
tree028b5282288a6849233274851112fff4e2d0d25b /libavcodec/h264dsp.c
parent42b9150b0d4f0a130c1d93dc991fd5412743a8cf (diff)
downloadffmpeg-streaming-38282149b6ce8f4b8361e3b84542ba9aa8a1f32f.zip
ffmpeg-streaming-38282149b6ce8f4b8361e3b84542ba9aa8a1f32f.tar.gz
ppc: More consistent arch initialization
Diffstat (limited to 'libavcodec/h264dsp.c')
-rw-r--r--libavcodec/h264dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264dsp.c b/libavcodec/h264dsp.c
index 8a70aef..6ba465b 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);
}
OpenPOWER on IntegriCloud