]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/h264dsp.c
Make VP8 DSP functions take two strides
[ffmpeg] / libavcodec / h264dsp.c
index d65df1b1edcd5e428ec92cd9d9dbcd7afcf53534..c01fc77c009ce8c56391cb456073e5842044d343 100644 (file)
@@ -20,7 +20,7 @@
  */
 
 /**
- * @file libavcodec/h264dsp.c
+ * @file
  * H.264 / AVC / MPEG4 part10 DSP functions.
  * @author Michael Niedermayer <michaelni@gmx.at>
  */
@@ -315,6 +315,6 @@ void ff_h264dsp_init(H264DSPContext *c)
     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);
 }