Searched refs:radiusV (Results 1 – 6 of 6) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
D | median_template.c | 60 const int radiusV = s->radiusV; in fn() local 73 srcp = src + FFMAX(0, slice_h_start - radiusV) * src_linesize; in fn() 76 cfine[PICK_FINE_BIN(width, srcp[i], i)] += radiusV + 1; in fn() 77 ccoarse[PICK_COARSE_BIN(i, srcp[i])] += radiusV + 1; in fn() 81 srcp = src + FFMAX(0, slice_h_start - radiusV - (jobnr != 0)) * src_linesize; in fn() 82 for (int i = 0; i < radiusV + (jobnr != 0) * (1 + radiusV); i++) { in fn() 97 p = srcp + src_linesize * FFMAX(0, i - radiusV - 1); in fn() 103 p = srcp + src_linesize * FFMIN(height - 1, i + radiusV); in fn()
|
D | vf_median.c | 62 …{ "radiusV", "set median vertical radius", OFFSET(radiusV), AV_OPT_TYPE_INT, {.i64=0},0, 127, FLAG… 125 if (s->planeheight[i] < s->radiusV * 2 + 1) { in check_params() 126 …eight %d must be not less than %d, clipping radiusV.\n", i, s->planeheight[i], s->radiusV * 2 + 1); in check_params() 127 s->radiusV = (s->planeheight[i] - 1) / 2; in check_params() 131 s->t = (2 * s->radius * s->radiusV + s->radiusV + s->radius) * 2.f * s->percentile; in check_params() 145 s->radiusV = !s->radiusV ? s->radius : s->radiusV; in config_input() 150 …s->nb_threads = FFMAX(1, FFMIN(s->planeheight[1] / (s->radiusV + 1), ff_filter_get_nb_threads(inli… in config_input() 263 if (!s->radiusV) in process_command() 264 s->radiusV = s->radius; in process_command()
|
D | vf_avgblur.c | 35 int radiusV; member 54 …{ "sizeY", "set vertical size", OFFSET(radiusV), AV_OPT_TYPE_INT, {.i64=0}, 0, 1024, FLAGS }, 129 const int radius = FFMIN(s->radiusV, height / 2); \ 192 if (s->radiusV <= 0) { in config_input() 193 s->radiusV = s->radius; in config_input()
|
D | vf_avgblur_opencl.c | 42 int radiusV; member 98 if (s->radiusV <= 0) { in avgblur_opencl_make_filter_params() 99 s->radiusV = s->radiusH; in avgblur_opencl_make_filter_params() 201 radius_y = ctx->radiusV; in avgblur_opencl_filter_frame() 336 …{ "sizeY", "set vertical size", OFFSET(radiusV), AV_OPT_TYPE_INT, {.i64=0}, 0, 1024, FLAGS },
|
D | median.h | 33 int radiusV; member
|
/third_party/ffmpeg/doc/ |
D | filters.texi | 14567 @item radiusV
|