changeset 11987:f910bb8f9257 libavcodec

Fix x86 build with h264dsp disabled
author mru
date Mon, 28 Jun 2010 10:02:15 +0000
parents 11a8d4c1ee81
children e382860b855f
files x86/h264dsp_mmx.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/x86/h264dsp_mmx.c	Mon Jun 28 04:55:36 2010 +0000
+++ b/x86/h264dsp_mmx.c	Mon Jun 28 10:02:15 2010 +0000
@@ -2347,6 +2347,7 @@
 void ff_pred8x8_tm_vp8_sse2        (uint8_t *src, int stride);
 void ff_pred8x8_tm_vp8_ssse3       (uint8_t *src, int stride);
 
+#if CONFIG_H264DSP
 void ff_h264_pred_init_x86(H264PredContext *h, int codec_id)
 {
 #if HAVE_YASM
@@ -2397,3 +2398,4 @@
     }
 #endif
 }
+#endif