/third_party/ffmpeg/libavcodec/mips/ |
D | h264pred_mips.h | 30 void ff_pred8x8l_top_dc_8_mmi(uint8_t *src, int has_topleft, int has_topright, 32 void ff_pred8x8l_dc_8_mmi(uint8_t *src, int has_topleft, int has_topright, 34 void ff_pred8x8l_vertical_8_mmi(uint8_t *src, int has_topleft,
|
D | h264pred_mmi.c | 155 void ff_pred8x8l_top_dc_8_mmi(uint8_t *src, int has_topleft, in ff_pred8x8l_top_dc_8_mmi() argument 216 [has_topleft]"r"(has_topleft), [has_topright]"r"(has_topright), in ff_pred8x8l_top_dc_8_mmi() 246 void ff_pred8x8l_dc_8_mmi(uint8_t *src, int has_topleft, int has_topright, in ff_pred8x8l_dc_8_mmi() argument 253 …const int l0 = ((has_topleft ? src[-1+-1*stride] : src[-1+0*stride]) + 2*src[-1+0*stride] + src[-1… in ff_pred8x8l_dc_8_mmi() 320 [has_topleft]"r"(has_topleft), [has_topright]"r"(has_topright) in ff_pred8x8l_dc_8_mmi() 352 void ff_pred8x8l_vertical_8_mmi(uint8_t *src, int has_topleft, in ff_pred8x8l_vertical_8_mmi() argument 407 [has_topleft]"r"(has_topleft), [has_topright]"r"(has_topright) in ff_pred8x8l_vertical_8_mmi()
|
/third_party/ffmpeg/tests/checkasm/ |
D | h264pred.c | 213 int has_topleft = neighbors & 0x8000; in check_pred8x8l() local 216 … if ((pred_mode == DIAG_DOWN_RIGHT_PRED || pred_mode == VERT_RIGHT_PRED) && !has_topleft) in check_pred8x8l() 220 call_ref(src0, has_topleft, has_topright, 24*SIZEOF_PIXEL); in check_pred8x8l() 221 call_new(src1, has_topleft, has_topright, 24*SIZEOF_PIXEL); in check_pred8x8l() 224 bench_new(src1, has_topleft, has_topright, 24*SIZEOF_PIXEL); in check_pred8x8l()
|
/third_party/ffmpeg/libavcodec/ |
D | h264pred_template.c | 851 const int l0 = ((has_topleft ? SRC(-1,-1) : SRC(-1,0)) \ 859 const int t0 = ((has_topleft ? SRC(-1,-1) : SRC(0,-1)) \ 885 static void FUNCC(pred8x8l_128_dc)(uint8_t *_src, int has_topleft, in FUNCC() 893 static void FUNCC(pred8x8l_left_dc)(uint8_t *_src, int has_topleft, in FUNCC() 903 static void FUNCC(pred8x8l_top_dc)(uint8_t *_src, int has_topleft, in FUNCC() 913 static void FUNCC(pred8x8l_dc)(uint8_t *_src, int has_topleft, in FUNCC() 925 static void FUNCC(pred8x8l_horizontal)(uint8_t *_src, int has_topleft, in FUNCC() 939 static void FUNCC(pred8x8l_vertical)(uint8_t *_src, int has_topleft, in FUNCC() 963 static void FUNCC(pred8x8l_down_left)(uint8_t *_src, int has_topleft, in FUNCC() 986 static void FUNCC(pred8x8l_down_right)(uint8_t *_src, int has_topleft, in FUNCC() [all …]
|
/third_party/ffmpeg/libavcodec/x86/ |
D | h264_intrapred_10bit.asm | 510 ; void ff_pred8x8l_128_dc_10(pixel *src, int has_topleft, int has_topright, 535 ; void ff_pred8x8l_top_dc_10(pixel *src, int has_topleft, int has_topright, 575 ; void ff_pred8x8l_dc_10(pixel *src, int has_topleft, int has_topright, 635 ; void ff_pred8x8l_vertical_10(pixel *src, int has_topleft, int has_topright, 671 ; void ff_pred8x8l_horizontal_10(uint8_t *src, int has_topleft, 728 ; void ff_pred8x8l_down_left_10(pixel *src, int has_topleft, int has_topright, 797 ; void ff_pred8x8l_down_right_10(pixel *src, int has_topleft, 801 ; standard forbids this when has_topleft is false 872 ; void ff_pred8x8l_vertical_right_10(pixel *src, int has_topleft, 943 ; void ff_pred8x8l_horizontal_up_10(pixel *src, int has_topleft,
|
D | h264_intrapred.asm | 1049 ; void ff_pred8x8l_top_dc_8(uint8_t *src, int has_topleft, int has_topright, 1105 ; void ff_pred8x8l_dc_8(uint8_t *src, int has_topleft, int has_topright, 1209 ; void ff_pred8x8l_horizontal_8(uint8_t *src, int has_topleft, 1281 ; void ff_pred8x8l_vertical_8(uint8_t *src, int has_topleft, int has_topright, 1332 ; void ff_pred8x8l_down_left_8(uint8_t *src, int has_topleft, 1533 ; void ff_pred8x8l_down_right_8_mmxext(uint8_t *src, int has_topleft, 1785 ; void ff_pred8x8l_vertical_right_8(uint8_t *src, int has_topleft, 2013 ; void ff_pred8x8l_vertical_left_8(uint8_t *src, int has_topleft, 2103 ; void ff_pred8x8l_horizontal_up_8(uint8_t *src, int has_topleft, 2191 ; void ff_pred8x8l_horizontal_down_8(uint8_t *src, int has_topleft,
|
D | h264_intrapred_init.c | 61 int has_topleft, \
|