Searched refs:LOWPASS (Results 1 – 6 of 6) sorted by relevance
/third_party/ffmpeg/libavcodec/x86/ |
D | vp9intrapred_16bpp.asm | 671 %macro LOWPASS 3 ; left [dst], center, right 708 LOWPASS 0, 1, 2 ; BCDEFGh. 726 LOWPASS 0, 1, 2 ; BCDEFGHh 754 LOWPASS 0, 1, 2 ; BCDEFGHI 759 LOWPASS 1, 2, 3 ; JKLMNOPp 789 LOWPASS 0, 4, 5 ; BCDEFGHI 792 LOWPASS 1, 4, 5 ; JKLMNOPQ 795 LOWPASS 2, 4, 5 ; RSTUVWXY 800 LOWPASS 3, 4, 5 ; Z0123455 859 LOWPASS 0, 3, 4 ; BCDEFGHIJKLMNOPp [all …]
|
D | vp9intrapred.asm | 938 %macro LOWPASS 4 ; left [dst], center, right, tmp 961 LOWPASS 0, 1, 2, 3 995 LOWPASS 0, 1, 2, 3 1030 LOWPASS 0, 1, 2, 3 1064 LOWPASS 0, 2, 3, 4 1080 LOWPASS 1, 2, 3, 4 1135 LOWPASS 0, 1, 2, 3 1161 LOWPASS 0, 1, 2, 3 1191 LOWPASS 3, 2, 4, 5 1194 LOWPASS 0, 1, 2, 4 [all …]
|
/third_party/ffmpeg/libavfilter/x86/ |
D | vf_hqdn3d.asm | 25 %macro LOWPASS 3 ; prevsample, cursample, lut 81 LOWPASS t1, pixelant, spatial 83 LOWPASS pixelant, t0, spatial 86 LOWPASS t0, t1, temporal
|
D | vf_interlace.asm | 33 %macro LOWPASS 1 81 LOWPASS b 85 LOWPASS w
|
/third_party/ffmpeg/libavcodec/ |
D | cavs.c | 306 #define LOWPASS(ARRAY, INDEX) \ macro 314 d[y * stride + x] = (LOWPASS(top, x + 1) + LOWPASS(left, y + 1)) >> 1; in intra_pred_lp() 322 d[y * stride + x] = (LOWPASS(top, x + y + 2) + LOWPASS(left, x + y + 2)) >> 1; in intra_pred_down_left() 333 d[y * stride + x] = LOWPASS(top, x - y); in intra_pred_down_right() 335 d[y * stride + x] = LOWPASS(left, y - x); in intra_pred_down_right() 343 d[y * stride + x] = LOWPASS(left, y + 1); in intra_pred_lp_left() 351 d[y * stride + x] = LOWPASS(top, x + 1); in intra_pred_lp_top() 354 #undef LOWPASS
|
/third_party/ffmpeg/libavfilter/ |
D | vf_waveform.c | 41 LOWPASS, enumerator 157 { "lowpass", NULL, 0, AV_OPT_TYPE_CONST, {.i64=LOWPASS}, 0, 0, FLAGS, "filter" }, 321 case LOWPASS: in_pix_fmts = in_lowpass_pix_fmts; break; in query_formats() 355 if (s->filter == LOWPASS && ncomp == 1 && depth == 8) in query_formats() 357 else if (s->filter == LOWPASS && ncomp == 1 && depth == 9) in query_formats() 359 else if (s->filter == LOWPASS && ncomp == 1 && depth == 10) in query_formats() 361 else if (s->filter == LOWPASS && ncomp == 1 && depth == 12) in query_formats() 3147 case LOWPASS: in config_input() 3165 case LOWPASS: in config_input() 3422 case LOWPASS: in filter_frame()
|