|
|
|
@ -100,7 +100,7 @@ PRED16x16(horizontal, 10, sse2) |
|
|
|
|
|
|
|
|
|
/* 8-bit versions */ |
|
|
|
|
PRED16x16(vertical, 8, sse) |
|
|
|
|
PRED16x16(horizontal, 8, mmxext) |
|
|
|
|
PRED16x16(horizontal, 8, sse2) |
|
|
|
|
PRED16x16(horizontal, 8, ssse3) |
|
|
|
|
PRED16x16(dc, 8, sse2) |
|
|
|
|
PRED16x16(dc, 8, ssse3) |
|
|
|
@ -170,7 +170,6 @@ av_cold void ff_h264_pred_init_x86(H264PredContext *h, int codec_id, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (EXTERNAL_MMXEXT(cpu_flags)) { |
|
|
|
|
h->pred16x16[HOR_PRED8x8 ] = ff_pred16x16_horizontal_8_mmxext; |
|
|
|
|
if (chroma_format_idc <= 1) |
|
|
|
|
h->pred8x8[HOR_PRED8x8 ] = ff_pred8x8_horizontal_8_mmxext; |
|
|
|
|
h->pred8x8l [TOP_DC_PRED ] = ff_pred8x8l_top_dc_8_mmxext; |
|
|
|
@ -210,6 +209,7 @@ av_cold void ff_h264_pred_init_x86(H264PredContext *h, int codec_id, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (EXTERNAL_SSE2(cpu_flags)) { |
|
|
|
|
h->pred16x16[HOR_PRED8x8 ] = ff_pred16x16_horizontal_8_sse2; |
|
|
|
|
h->pred16x16[DC_PRED8x8 ] = ff_pred16x16_dc_8_sse2; |
|
|
|
|
h->pred8x8l [DIAG_DOWN_LEFT_PRED ] = ff_pred8x8l_down_left_8_sse2; |
|
|
|
|
h->pred8x8l [DIAG_DOWN_RIGHT_PRED ] = ff_pred8x8l_down_right_8_sse2; |
|
|
|
|