comparison h264pred.c @ 11985:1cffcc7b1470 libavcodec

Fix linking if MMX is disabled.
author stefano
date Sun, 27 Jun 2010 23:25:04 +0000
parents afee30fe8c26
children fdafbcef52f5
comparison
equal deleted inserted replaced
11984:7589f76ce761 11985:1cffcc7b1470
1297 h->pred8x8_add [ HOR_PRED8x8]= pred8x8_horizontal_add_c; 1297 h->pred8x8_add [ HOR_PRED8x8]= pred8x8_horizontal_add_c;
1298 h->pred16x16_add[VERT_PRED8x8]= pred16x16_vertical_add_c; 1298 h->pred16x16_add[VERT_PRED8x8]= pred16x16_vertical_add_c;
1299 h->pred16x16_add[ HOR_PRED8x8]= pred16x16_horizontal_add_c; 1299 h->pred16x16_add[ HOR_PRED8x8]= pred16x16_horizontal_add_c;
1300 1300
1301 if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id); 1301 if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id);
1302 if (ARCH_X86) ff_h264_pred_init_x86(h, codec_id); 1302 if (HAVE_MMX) ff_h264_pred_init_x86(h, codec_id);
1303 } 1303 }