Revision ecc7efbb libavcodec/x86/h264_intrapred_init.c
libavcodec/x86/h264_intrapred_init.c | ||
---|---|---|
75 | 75 |
void ff_pred8x8l_vertical_right_mmxext(uint8_t *src, int has_topleft, int has_topright, int stride); |
76 | 76 |
void ff_pred8x8l_vertical_right_sse2(uint8_t *src, int has_topleft, int has_topright, int stride); |
77 | 77 |
void ff_pred8x8l_vertical_right_ssse3(uint8_t *src, int has_topleft, int has_topright, int stride); |
78 |
void ff_pred8x8l_vertical_left_sse2(uint8_t *src, int has_topleft, int has_topright, int stride); |
|
79 |
void ff_pred8x8l_vertical_left_ssse3(uint8_t *src, int has_topleft, int has_topright, int stride); |
|
78 | 80 |
void ff_pred4x4_dc_mmxext (uint8_t *src, const uint8_t *topright, int stride); |
79 | 81 |
void ff_pred4x4_down_left_mmxext (uint8_t *src, const uint8_t *topright, int stride); |
80 | 82 |
void ff_pred4x4_tm_vp8_mmx (uint8_t *src, const uint8_t *topright, int stride); |
... | ... | |
157 | 159 |
h->pred8x8l [DIAG_DOWN_LEFT_PRED] = ff_pred8x8l_down_left_sse2; |
158 | 160 |
h->pred8x8l [DIAG_DOWN_RIGHT_PRED] = ff_pred8x8l_down_right_sse2; |
159 | 161 |
h->pred8x8l [VERT_RIGHT_PRED ] = ff_pred8x8l_vertical_right_sse2; |
162 |
h->pred8x8l [VERT_LEFT_PRED ] = ff_pred8x8l_vertical_left_sse2; |
|
160 | 163 |
#endif |
161 | 164 |
if (codec_id == CODEC_ID_VP8) { |
162 | 165 |
h->pred16x16[PLANE_PRED8x8] = ff_pred16x16_tm_vp8_sse2; |
... | ... | |
185 | 188 |
h->pred8x8l [DIAG_DOWN_LEFT_PRED] = ff_pred8x8l_down_left_ssse3; |
186 | 189 |
h->pred8x8l [DIAG_DOWN_RIGHT_PRED] = ff_pred8x8l_down_right_ssse3; |
187 | 190 |
h->pred8x8l [VERT_RIGHT_PRED ] = ff_pred8x8l_vertical_right_ssse3; |
191 |
h->pred8x8l [VERT_LEFT_PRED ] = ff_pred8x8l_vertical_left_ssse3; |
|
188 | 192 |
#endif |
189 | 193 |
if (codec_id == CODEC_ID_VP8) { |
190 | 194 |
h->pred8x8 [PLANE_PRED8x8] = ff_pred8x8_tm_vp8_ssse3; |
Also available in: Unified diff