comparison x86/h264dsp_mmx.c @ 11987:f910bb8f9257 libavcodec

Fix x86 build with h264dsp disabled
author mru
date Mon, 28 Jun 2010 10:02:15 +0000
parents 65470eea7561
children c15e87b9767b
comparison
equal deleted inserted replaced
11986:11a8d4c1ee81 11987:f910bb8f9257
2345 void ff_pred8x8_tm_vp8_mmx (uint8_t *src, int stride); 2345 void ff_pred8x8_tm_vp8_mmx (uint8_t *src, int stride);
2346 void ff_pred8x8_tm_vp8_mmxext (uint8_t *src, int stride); 2346 void ff_pred8x8_tm_vp8_mmxext (uint8_t *src, int stride);
2347 void ff_pred8x8_tm_vp8_sse2 (uint8_t *src, int stride); 2347 void ff_pred8x8_tm_vp8_sse2 (uint8_t *src, int stride);
2348 void ff_pred8x8_tm_vp8_ssse3 (uint8_t *src, int stride); 2348 void ff_pred8x8_tm_vp8_ssse3 (uint8_t *src, int stride);
2349 2349
2350 #if CONFIG_H264DSP
2350 void ff_h264_pred_init_x86(H264PredContext *h, int codec_id) 2351 void ff_h264_pred_init_x86(H264PredContext *h, int codec_id)
2351 { 2352 {
2352 #if HAVE_YASM 2353 #if HAVE_YASM
2353 if (mm_flags & FF_MM_MMX) { 2354 if (mm_flags & FF_MM_MMX) {
2354 h->pred16x16[VERT_PRED8x8] = ff_pred16x16_vertical_mmx; 2355 h->pred16x16[VERT_PRED8x8] = ff_pred16x16_vertical_mmx;
2395 h->pred8x8 [PLANE_PRED8x8] = ff_pred8x8_tm_vp8_ssse3; 2396 h->pred8x8 [PLANE_PRED8x8] = ff_pred8x8_tm_vp8_ssse3;
2396 } 2397 }
2397 } 2398 }
2398 #endif 2399 #endif
2399 } 2400 }
2401 #endif