summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-06-27 23:25:04 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-06-27 23:25:04 +0000
commita64fadf62b19551e73e8d049bf4bbeca35a04553 (patch)
treed7cdb2f351163ceb88fc6083543182ab9d985093
parent6951515cbff15cde4e116370f1e10bcc49134f01 (diff)
Fix linking if MMX is disabled.
Originally committed as revision 23839 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/h264pred.c2
-rw-r--r--libavcodec/vp8dsp.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c
index 3353a9a2c0..eff7d89055 100644
--- a/libavcodec/h264pred.c
+++ b/libavcodec/h264pred.c
@@ -1299,5 +1299,5 @@ void ff_h264_pred_init(H264PredContext *h, int codec_id){
h->pred16x16_add[ HOR_PRED8x8]= pred16x16_horizontal_add_c;
if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id);
- if (ARCH_X86) ff_h264_pred_init_x86(h, codec_id);
+ if (HAVE_MMX) ff_h264_pred_init_x86(h, codec_id);
}
diff --git a/libavcodec/vp8dsp.c b/libavcodec/vp8dsp.c
index 4fb602522f..59cf4d6e16 100644
--- a/libavcodec/vp8dsp.c
+++ b/libavcodec/vp8dsp.c
@@ -452,6 +452,6 @@ av_cold void ff_vp8dsp_init(VP8DSPContext *dsp)
VP8_BILINEAR_MC_FUNC(1, 8);
VP8_BILINEAR_MC_FUNC(2, 4);
- if (ARCH_X86)
+ if (HAVE_MMX)
ff_vp8dsp_init_x86(dsp);
}