/third_party/ffmpeg/libavcodec/mips/ |
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 254 …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() 321 [has_topleft]"r"(has_topleft), [has_topright]"r"(has_topright) in ff_pred8x8l_dc_8_mmi() 353 void ff_pred8x8l_vertical_8_mmi(uint8_t *src, int has_topleft, in ff_pred8x8l_vertical_8_mmi() argument 408 [has_topleft]"r"(has_topleft), [has_topright]"r"(has_topright) in ff_pred8x8l_vertical_8_mmi()
|
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,
|
/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 | 829 const int l0 = ((has_topleft ? SRC(-1,-1) : SRC(-1,0)) \ 837 const int t0 = ((has_topleft ? SRC(-1,-1) : SRC(0,-1)) \ 863 static void FUNCC(pred8x8l_128_dc)(uint8_t *_src, int has_topleft, in FUNCC() 871 static void FUNCC(pred8x8l_left_dc)(uint8_t *_src, int has_topleft, in FUNCC() 881 static void FUNCC(pred8x8l_top_dc)(uint8_t *_src, int has_topleft, in FUNCC() 891 static void FUNCC(pred8x8l_dc)(uint8_t *_src, int has_topleft, in FUNCC() 903 static void FUNCC(pred8x8l_horizontal)(uint8_t *_src, int has_topleft, in FUNCC() 917 static void FUNCC(pred8x8l_vertical)(uint8_t *_src, int has_topleft, in FUNCC() 941 static void FUNCC(pred8x8l_down_left)(uint8_t *_src, int has_topleft, in FUNCC() 964 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 | 488 ; void ff_pred8x8l_128_dc_10(pixel *src, int has_topleft, int has_topright, 507 ; void ff_pred8x8l_top_dc_10(pixel *src, int has_topleft, int has_topright, 547 ; void ff_pred8x8l_dc_10(pixel *src, int has_topleft, int has_topright, 607 ; void ff_pred8x8l_vertical_10(pixel *src, int has_topleft, int has_topright, 643 ; void ff_pred8x8l_horizontal_10(uint8_t *src, int has_topleft, 700 ; void ff_pred8x8l_down_left_10(pixel *src, int has_topleft, int has_topright, 769 ; void ff_pred8x8l_down_right_10(pixel *src, int has_topleft, 773 ; standard forbids this when has_topleft is false 844 ; void ff_pred8x8l_vertical_right_10(pixel *src, int has_topleft, 915 ; void ff_pred8x8l_horizontal_up_10(pixel *src, int has_topleft,
|
D | h264_intrapred.asm | 815 ; void ff_pred8x8l_top_dc_8(uint8_t *src, int has_topleft, int has_topright, 871 ; void ff_pred8x8l_dc_8(uint8_t *src, int has_topleft, int has_topright, 975 ; void ff_pred8x8l_horizontal_8(uint8_t *src, int has_topleft, 1047 ; void ff_pred8x8l_vertical_8(uint8_t *src, int has_topleft, int has_topright, 1098 ; void ff_pred8x8l_down_left_8(uint8_t *src, int has_topleft, 1191 ; void ff_pred8x8l_down_right_8(uint8_t *src, int has_topleft, 1311 ; void ff_pred8x8l_vertical_right_8(uint8_t *src, int has_topleft, 1432 ; void ff_pred8x8l_vertical_left_8(uint8_t *src, int has_topleft, 1522 ; void ff_pred8x8l_horizontal_up_8(uint8_t *src, int has_topleft, 1610 ; void ff_pred8x8l_horizontal_down_8(uint8_t *src, int has_topleft,
|
D | h264_intrapred_init.c | 63 int has_topleft, \
|