FFmpeg
Loading...
Searching...
No Matches
vf_fftfilt.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Arwa Arif <arwaarif1994@gmail.com>
3 * Copyright (c) 2017 Paul B Mahol
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License,
10 * or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/**
23 * @file
24 * FFT domain filtering.
25 */
26
27#include "filters.h"
28#include "video.h"
29#include "libavutil/common.h"
30#include "libavutil/cpu.h"
31#include "libavutil/mem.h"
32#include "libavutil/opt.h"
33#include "libavutil/pixdesc.h"
34#include "libavutil/tx.h"
35#include "libavutil/eval.h"
36
37#define MAX_THREADS 32
38#define MAX_PLANES 4
39
45
83
84static const char *const var_names[] = { "X", "Y", "W", "H", "N", "WS", "HS", NULL };
86
87enum { Y = 0, U, V };
88
89#define OFFSET(x) offsetof(FFTFILTContext, x)
90#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
91
92static const AVOption fftfilt_options[] = {
93 { "dc_Y", "adjust gain in Y plane", OFFSET(dc[Y]), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1000, FLAGS },
94 { "dc_U", "adjust gain in U plane", OFFSET(dc[U]), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1000, FLAGS },
95 { "dc_V", "adjust gain in V plane", OFFSET(dc[V]), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1000, FLAGS },
96 { "weight_Y", "set luminance expression in Y plane", OFFSET(weight_str[Y]), AV_OPT_TYPE_STRING, {.str = "1"}, 0, 0, FLAGS },
97 { "weight_U", "set chrominance expression in U plane", OFFSET(weight_str[U]), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
98 { "weight_V", "set chrominance expression in V plane", OFFSET(weight_str[V]), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
99 { "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, .unit = "eval" },
100 { "init", "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT}, .flags = FLAGS, .unit = "eval" },
101 { "frame", "eval expressions per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
102 {NULL},
103};
104
106
107static inline double lum(void *priv, double x, double y, int plane)
108{
109 FFTFILTContext *s = priv;
110 return s->rdft_vdata_out[plane][(int)x * s->rdft_vstride[plane] + (int)y];
111}
112
113static double weight_Y(void *priv, double x, double y) { return lum(priv, x, y, Y); }
114static double weight_U(void *priv, double x, double y) { return lum(priv, x, y, U); }
115static double weight_V(void *priv, double x, double y) { return lum(priv, x, y, V); }
116
117static void copy_rev(float *dest, int w, int w2)
118{
119 int i;
120
121 for (i = w; i < w + (w2-w)/2; i++)
122 dest[i] = dest[2*w - i - 1];
123
124 for (; i < w2; i++)
125 dest[i] = dest[w2 - i];
126}
127
128static int rdft_horizontal8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
129{
130 FFTFILTContext *s = ctx->priv;
131 AVFrame *in = arg;
132
133 for (int plane = 0; plane < s->nb_planes; plane++) {
134 const int w = s->planewidth[plane];
135 const int h = s->planeheight[plane];
136 const int slice_start = ff_slice_pos(h, jobnr, nb_jobs);
137 const int slice_end = ff_slice_pos(h, jobnr + 1, nb_jobs);
138
139 for (int i = slice_start; i < slice_end; i++) {
140 const uint8_t *src = in->data[plane] + i * in->linesize[plane];
141 float *hdata_in = s->rdft_hdata_in[plane] + i * s->rdft_hstride[plane];
142
143 for (int j = 0; j < w; j++)
144 hdata_in[j] = src[j];
145
146 copy_rev(s->rdft_hdata_in[plane] + i * s->rdft_hstride[plane], w, s->rdft_hlen[plane]);
147 }
148
149 for (int i = slice_start; i < slice_end; i++)
150 s->htx_fn(s->hrdft[jobnr][plane],
151 s->rdft_hdata_out[plane] + i * s->rdft_hstride[plane],
152 s->rdft_hdata_in[plane] + i * s->rdft_hstride[plane],
153 sizeof(float));
154 }
155
156 return 0;
157}
158
159static int rdft_horizontal16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
160{
161 FFTFILTContext *s = ctx->priv;
162 AVFrame *in = arg;
163
164 for (int plane = 0; plane < s->nb_planes; plane++) {
165 const int w = s->planewidth[plane];
166 const int h = s->planeheight[plane];
167 const int slice_start = ff_slice_pos(h, jobnr, nb_jobs);
168 const int slice_end = ff_slice_pos(h, jobnr + 1, nb_jobs);
169
170 for (int i = slice_start; i < slice_end; i++) {
171 const uint16_t *src = (const uint16_t *)(in->data[plane] + i * in->linesize[plane]);
172 float *hdata_in = s->rdft_hdata_in[plane] + i * s->rdft_hstride[plane];
173
174 for (int j = 0; j < w; j++)
175 hdata_in[j] = src[j];
176
177 copy_rev(s->rdft_hdata_in[plane] + i * s->rdft_hstride[plane], w, s->rdft_hlen[plane]);
178 }
179
180 for (int i = slice_start; i < slice_end; i++)
181 s->htx_fn(s->hrdft[jobnr][plane],
182 s->rdft_hdata_out[plane] + i * s->rdft_hstride[plane],
183 s->rdft_hdata_in[plane] + i * s->rdft_hstride[plane],
184 sizeof(float));
185 }
186
187 return 0;
188}
189
190static int irdft_horizontal8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
191{
192 FFTFILTContext *s = ctx->priv;
193 AVFrame *out = arg;
194
195 for (int plane = 0; plane < s->nb_planes; plane++) {
196 const int w = s->planewidth[plane];
197 const int h = s->planeheight[plane];
198 const int slice_start = ff_slice_pos(h, jobnr, nb_jobs);
199 const int slice_end = ff_slice_pos(h, jobnr + 1, nb_jobs);
200
201 for (int i = slice_start; i < slice_end; i++)
202 s->ihtx_fn(s->ihrdft[jobnr][plane],
203 s->rdft_hdata_out[plane] + i * s->rdft_hstride[plane],
204 s->rdft_hdata_in[plane] + i * s->rdft_hstride[plane],
205 sizeof(AVComplexFloat));
206
207 for (int i = slice_start; i < slice_end; i++) {
208 const float scale = 1.f / (s->rdft_hlen[plane] * s->rdft_vlen[plane]);
209 const float *src = s->rdft_hdata_out[plane] + i * s->rdft_hstride[plane];
210 uint8_t *dst = out->data[plane] + i * out->linesize[plane];
211
212 for (int j = 0; j < w; j++)
213 dst[j] = av_clip_uint8(lrintf(src[j] * scale));
214 }
215 }
216
217 return 0;
218}
219
220static int irdft_horizontal16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
221{
222 FFTFILTContext *s = ctx->priv;
223 AVFrame *out = arg;
224
225 for (int plane = 0; plane < s->nb_planes; plane++) {
226 int max = (1 << s->depth) - 1;
227 const int w = s->planewidth[plane];
228 const int h = s->planeheight[plane];
229 const int slice_start = ff_slice_pos(h, jobnr, nb_jobs);
230 const int slice_end = ff_slice_pos(h, jobnr + 1, nb_jobs);
231
232 for (int i = slice_start; i < slice_end; i++)
233 s->ihtx_fn(s->ihrdft[jobnr][plane],
234 s->rdft_hdata_out[plane] + i * s->rdft_hstride[plane],
235 s->rdft_hdata_in[plane] + i * s->rdft_hstride[plane],
236 sizeof(AVComplexFloat));
237
238 for (int i = slice_start; i < slice_end; i++) {
239 const float scale = 1.f / (s->rdft_hlen[plane] * s->rdft_vlen[plane]);
240 const float *src = s->rdft_hdata_out[plane] + i * s->rdft_hstride[plane];
241 uint16_t *dst = (uint16_t *)(out->data[plane] + i * out->linesize[plane]);
242
243 for (int j = 0; j < w; j++)
244 dst[j] = av_clip(lrintf(src[j] * scale), 0, max);
245 }
246 }
247
248 return 0;
249}
250
252{
253 FFTFILTContext *s = ctx->priv;
254 int ret = 0, plane;
255
256 if (!s->dc[U] && !s->dc[V]) {
257 s->dc[U] = s->dc[Y];
258 s->dc[V] = s->dc[Y];
259 } else {
260 if (!s->dc[U]) s->dc[U] = s->dc[V];
261 if (!s->dc[V]) s->dc[V] = s->dc[U];
262 }
263
264 if (!s->weight_str[U] && !s->weight_str[V]) {
265 s->weight_str[U] = av_strdup(s->weight_str[Y]);
266 s->weight_str[V] = av_strdup(s->weight_str[Y]);
267 } else {
268 if (!s->weight_str[U]) s->weight_str[U] = av_strdup(s->weight_str[V]);
269 if (!s->weight_str[V]) s->weight_str[V] = av_strdup(s->weight_str[U]);
270 }
271
272 for (plane = 0; plane < 3; plane++) {
273 static double (*p[])(void *, double, double) = { weight_Y, weight_U, weight_V };
274 const char *const func2_names[] = {"weight_Y", "weight_U", "weight_V", NULL };
275 double (*func2[])(void *, double, double) = { weight_Y, weight_U, weight_V, p[plane], NULL };
276
277 ret = av_expr_parse(&s->weight_expr[plane], s->weight_str[plane], var_names,
278 NULL, NULL, func2_names, func2, 0, ctx);
279 if (ret < 0)
280 break;
281 }
282 return ret;
283}
284
285static void do_eval(FFTFILTContext *s, AVFilterLink *inlink, int plane)
286{
287 FilterLink *l = ff_filter_link(inlink);
288 double values[VAR_VARS_NB];
289 int i, j;
290
291 values[VAR_N] = l->frame_count_out;
292 values[VAR_W] = s->planewidth[plane];
293 values[VAR_H] = s->planeheight[plane];
294 values[VAR_WS] = s->rdft_hlen[plane];
295 values[VAR_HS] = s->rdft_vlen[plane];
296
297 for (i = 0; i < s->rdft_hlen[plane]; i++) {
298 values[VAR_X] = i;
299 for (j = 0; j < s->rdft_vlen[plane]; j++) {
300 values[VAR_Y] = j;
301 s->weight[plane][i * s->rdft_vlen[plane] + j] =
302 av_expr_eval(s->weight_expr[plane], values, s);
303 }
304 }
305}
306
307static int config_props(AVFilterLink *inlink)
308{
309 FFTFILTContext *s = inlink->dst->priv;
311 int ret, i, plane;
312
314 s->depth = desc->comp[0].depth;
315 s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
316 s->planewidth[0] = s->planewidth[3] = inlink->w;
317 s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
318 s->planeheight[0] = s->planeheight[3] = inlink->h;
319
320 s->nb_planes = av_pix_fmt_count_planes(inlink->format);
321 s->nb_threads = FFMIN(32, ff_filter_get_nb_threads(inlink->dst));
322
323 for (i = 0; i < desc->nb_components; i++) {
324 int w = s->planewidth[i];
325 int h = s->planeheight[i];
326
327 /* RDFT - Array initialization for Horizontal pass*/
328 s->rdft_hlen[i] = 1 << (32 - ff_clz(w));
329 s->rdft_hstride[i] = FFALIGN(s->rdft_hlen[i] + 2, av_cpu_max_align());
330 s->rdft_hbits[i] = av_log2(s->rdft_hlen[i]);
331 if (!(s->rdft_hdata_in[i] = av_calloc(h, s->rdft_hstride[i] * sizeof(float))))
332 return AVERROR(ENOMEM);
333
334 if (!(s->rdft_hdata_out[i] = av_calloc(h, s->rdft_hstride[i] * sizeof(float))))
335 return AVERROR(ENOMEM);
336
337 for (int j = 0; j < s->nb_threads; j++) {
338 float scale = 1.f, iscale = 1.f;
339
340 ret = av_tx_init(&s->hrdft[j][i], &s->htx_fn, AV_TX_FLOAT_RDFT,
341 0, 1 << s->rdft_hbits[i], &scale, 0);
342 if (ret < 0)
343 return ret;
344 ret = av_tx_init(&s->ihrdft[j][i], &s->ihtx_fn, AV_TX_FLOAT_RDFT,
345 1, 1 << s->rdft_hbits[i], &iscale, 0);
346 if (ret < 0)
347 return ret;
348 }
349
350 /* RDFT - Array initialization for Vertical pass*/
351 s->rdft_vlen[i] = 1 << (32 - ff_clz(h));
352 s->rdft_vstride[i] = FFALIGN(s->rdft_vlen[i] + 2, av_cpu_max_align());
353 s->rdft_vbits[i] = av_log2(s->rdft_vlen[i]);
354 if (!(s->rdft_vdata_in[i] = av_calloc(s->rdft_hstride[i], s->rdft_vstride[i] * sizeof(float))))
355 return AVERROR(ENOMEM);
356
357 if (!(s->rdft_vdata_out[i] = av_calloc(s->rdft_hstride[i], s->rdft_vstride[i] * sizeof(float))))
358 return AVERROR(ENOMEM);
359
360 for (int j = 0; j < s->nb_threads; j++) {
361 float scale = 1.f, iscale = 1.f;
362
363 ret = av_tx_init(&s->vrdft[j][i], &s->vtx_fn, AV_TX_FLOAT_RDFT,
364 0, 1 << s->rdft_vbits[i], &scale, 0);
365 if (ret < 0)
366 return ret;
367 ret = av_tx_init(&s->ivrdft[j][i], &s->ivtx_fn, AV_TX_FLOAT_RDFT,
368 1, 1 << s->rdft_vbits[i], &iscale, 0);
369 if (ret < 0)
370 return ret;
371 }
372 }
373
374 /*Luminance value - Array initialization*/
375 for (plane = 0; plane < 3; plane++) {
376 if(!(s->weight[plane] = av_calloc(s->rdft_hlen[plane], s->rdft_vlen[plane] * sizeof(double))))
377 return AVERROR(ENOMEM);
378
379 if (s->eval_mode == EVAL_MODE_INIT)
380 do_eval(s, inlink, plane);
381 }
382
383 if (s->depth <= 8) {
384 s->rdft_horizontal = rdft_horizontal8;
385 s->irdft_horizontal = irdft_horizontal8;
386 } else {
387 s->rdft_horizontal = rdft_horizontal16;
388 s->irdft_horizontal = irdft_horizontal16;
389 }
390 return 0;
391}
392
393static int multiply_data(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
394{
395 FFTFILTContext *s = ctx->priv;
396
397 for (int plane = 0; plane < s->nb_planes; plane++) {
398 const int height = s->rdft_hlen[plane];
399 const int slice_start = ff_slice_pos(height, jobnr, nb_jobs);
400 const int slice_end = ff_slice_pos(height, jobnr + 1, nb_jobs);
401 /*Change user defined parameters*/
402 for (int i = slice_start; i < slice_end; i++) {
403 const double *weight = s->weight[plane] + i * s->rdft_vlen[plane];
404 float *vdata = s->rdft_vdata_out[plane] + i * s->rdft_vstride[plane];
405
406 for (int j = 0; j < s->rdft_vlen[plane]; j++)
407 vdata[j] *= weight[j];
408 }
409 }
410
411 return 0;
412}
413
414static int copy_vertical(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
415{
416 FFTFILTContext *s = ctx->priv;
417
418 for (int plane = 0; plane < s->nb_planes; plane++) {
419 const int hlen = s->rdft_hlen[plane];
420 const int vlen = s->rdft_vlen[plane];
421 const int hstride = s->rdft_hstride[plane];
422 const int vstride = s->rdft_vstride[plane];
423 const int slice_start = ff_slice_pos(hlen, jobnr, nb_jobs);
424 const int slice_end = ff_slice_pos(hlen, jobnr + 1, nb_jobs);
425 const int h = s->planeheight[plane];
426 float *hdata = s->rdft_hdata_out[plane];
427 float *vdata = s->rdft_vdata_in[plane];
428
429 for (int i = slice_start; i < slice_end; i++) {
430 for (int j = 0; j < h; j++)
431 vdata[i * vstride + j] = hdata[j * hstride + i];
432 copy_rev(vdata + i * vstride, h, vlen);
433 }
434 }
435
436 return 0;
437}
438
439static int rdft_vertical(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
440{
441 FFTFILTContext *s = ctx->priv;
442
443 for (int plane = 0; plane < s->nb_planes; plane++) {
444 const int height = s->rdft_hlen[plane];
445 const int slice_start = ff_slice_pos(height, jobnr, nb_jobs);
446 const int slice_end = ff_slice_pos(height, jobnr + 1, nb_jobs);
447
448 for (int i = slice_start; i < slice_end; i++)
449 s->vtx_fn(s->vrdft[jobnr][plane],
450 s->rdft_vdata_out[plane] + i * s->rdft_vstride[plane],
451 s->rdft_vdata_in[plane] + i * s->rdft_vstride[plane],
452 sizeof(float));
453 }
454
455 return 0;
456}
457
458static int irdft_vertical(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
459{
460 FFTFILTContext *s = ctx->priv;
461
462 for (int plane = 0; plane < s->nb_planes; plane++) {
463 const int height = s->rdft_hlen[plane];
464 const int slice_start = ff_slice_pos(height, jobnr, nb_jobs);
465 const int slice_end = ff_slice_pos(height, jobnr + 1, nb_jobs);
466
467 for (int i = slice_start; i < slice_end; i++)
468 s->ivtx_fn(s->ivrdft[jobnr][plane],
469 s->rdft_vdata_in[plane] + i * s->rdft_vstride[plane],
470 s->rdft_vdata_out[plane] + i * s->rdft_vstride[plane],
471 sizeof(AVComplexFloat));
472 }
473
474 return 0;
475}
476
477static int copy_horizontal(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
478{
479 FFTFILTContext *s = ctx->priv;
480
481 for (int plane = 0; plane < s->nb_planes; plane++) {
482 const int hlen = s->rdft_hlen[plane];
483 const int hstride = s->rdft_hstride[plane];
484 const int vstride = s->rdft_vstride[plane];
485 const int slice_start = ff_slice_pos(hlen, jobnr, nb_jobs);
486 const int slice_end = ff_slice_pos(hlen, jobnr + 1, nb_jobs);
487 const int h = s->planeheight[plane];
488 float *hdata = s->rdft_hdata_in[plane];
489 float *vdata = s->rdft_vdata_in[plane];
490
491 for (int i = slice_start; i < slice_end; i++)
492 for (int j = 0; j < h; j++)
493 hdata[j * hstride + i] = vdata[i * vstride + j];
494 }
495
496 return 0;
497}
498
499static int filter_frame(AVFilterLink *inlink, AVFrame *in)
500{
501 AVFilterContext *ctx = inlink->dst;
502 AVFilterLink *outlink = inlink->dst->outputs[0];
503 FFTFILTContext *s = ctx->priv;
504 AVFrame *out;
505
506 out = ff_get_video_buffer(outlink, inlink->w, inlink->h);
507 if (!out) {
508 av_frame_free(&in);
509 return AVERROR(ENOMEM);
510 }
511
513
514 ff_filter_execute(ctx, s->rdft_horizontal, in, NULL,
515 FFMIN(s->planeheight[1], s->nb_threads));
516
518 FFMIN(s->planeheight[1], s->nb_threads));
519
521 FFMIN(s->planeheight[1], s->nb_threads));
522
523 for (int plane = 0; plane < s->nb_planes; plane++) {
524 if (s->eval_mode == EVAL_MODE_FRAME)
525 do_eval(s, inlink, plane);
526 }
527
529 FFMIN(s->planeheight[1], s->nb_threads));
530
531 for (int plane = 0; plane < s->nb_planes; plane++)
532 s->rdft_vdata_out[plane][0] += s->rdft_hlen[plane] * s->rdft_vlen[plane] * s->dc[plane] * (1 << (s->depth - 8));
533
535 FFMIN(s->planeheight[1], s->nb_threads));
536
538 FFMIN(s->planeheight[1], s->nb_threads));
539
540 ff_filter_execute(ctx, s->irdft_horizontal, out, NULL,
541 FFMIN(s->planeheight[1], s->nb_threads));
542
543 av_frame_free(&in);
544 return ff_filter_frame(outlink, out);
545}
546
548{
549 FFTFILTContext *s = ctx->priv;
550
551 for (int i = 0; i < MAX_PLANES; i++) {
552 av_freep(&s->rdft_hdata_in[i]);
553 av_freep(&s->rdft_vdata_in[i]);
554 av_freep(&s->rdft_hdata_out[i]);
555 av_freep(&s->rdft_vdata_out[i]);
556 av_expr_free(s->weight_expr[i]);
557 av_freep(&s->weight[i]);
558 for (int j = 0; j < s->nb_threads; j++) {
559 av_tx_uninit(&s->hrdft[j][i]);
560 av_tx_uninit(&s->ihrdft[j][i]);
561 av_tx_uninit(&s->vrdft[j][i]);
562 av_tx_uninit(&s->ivrdft[j][i]);
563 }
564 }
565}
566
585
586static const AVFilterPad fftfilt_inputs[] = {
587 {
588 .name = "default",
589 .type = AVMEDIA_TYPE_VIDEO,
590 .config_props = config_props,
591 .filter_frame = filter_frame,
592 },
593};
594
596 .p.name = "fftfilt",
597 .p.description = NULL_IF_CONFIG_SMALL("Apply arbitrary expressions to pixels in frequency domain."),
598 .p.priv_class = &fftfilt_class,
600 .priv_size = sizeof(FFTFILTContext),
604 .init = initialize,
605 .uninit = uninit,
606};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static double(*const func2[])(void *, double, double)
Definition af_afftfilt.c:99
static const char *const func2_names[]
Definition af_afftfilt.c:98
EvalMode
Definition af_volume.h:39
@ EVAL_MODE_NB
Definition af_volume.h:42
@ EVAL_MODE_FRAME
Definition af_volume.h:41
const FFFilter ff_vf_fftfilt
Definition vf_fftfilt.c:595
#define U(x)
Definition vpx_arith.h:37
#define V
Definition avdct.c:32
@ VAR_H
Definition avfilter.c:565
@ VAR_W
Definition avfilter.c:564
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
Definition avfilter.c:1696
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition avfilter.c:846
#define Y
Definition boxblur.h:37
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
common internal and external API header
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define av_clip
Definition common.h:100
#define av_clip_uint8
Definition common.h:106
#define NULL
Definition coverity.c:32
#define max(a, b)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Definition eval.c:368
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
Definition eval.c:824
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
Definition eval.c:735
simple arithmetic expression evaluator
#define MAX_PLANES
Definition ffv1.h:44
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition avfilter.h:196
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition avfilter.h:166
#define AVERROR(e)
Definition error.h:45
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
#define ff_clz
Definition intmath.h:141
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define av_log2
Definition intmath.h:84
static void scale(int *out, const int *in, const int w, const int h, const int shift)
Definition intra.c:278
static av_cold void uninit(AVBitStreamFilterContext *ctx)
const char * arg
Definition jacosubdec.c:65
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
static int ff_slice_pos(int total, int jobnr, int nb_jobs)
Compute the boundary index for a slice when work of size total is split into nb_jobs slices.
Definition filters.h:763
#define FILTER_PIXFMTS_ARRAY(array)
Definition filters.h:244
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
@ VAR_X
Definition vf_blend.c:55
@ VAR_Y
Definition vf_blend.c:55
static int initialize(AVFilterContext *ctx)
Definition vf_eq.c:159
#define av_cold
Definition attributes.h:117
size_t av_cpu_max_align(void)
Get the maximum data alignment that may be required by FFmpeg.
Definition cpu.c:287
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define lrintf(x)
Definition libm_mips.h:72
const char * desc
Definition libsvtav1.c:83
uint8_t w
Definition llvidencdsp.c:39
#define FFMIN(a, b)
Definition macros.h:49
#define FFALIGN(x, a)
Definition macros.h:78
void * av_calloc(size_t nmemb, size_t size)
Definition mem.c:264
Memory handling functions.
static int slice_end(AVCodecContext *avctx, AVFrame *pict, int *got_output)
Handle slice ends.
Definition mpeg12dec.c:1697
@ VAR_N
Definition noise.c:47
@ VAR_VARS_NB
Definition noise.c:59
static const char *const var_names[]
Definition noise.c:30
#define av_strdup(s)
Definition ops_static.c:55
AVOptions.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3500
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_YUV420P16
Definition pixfmt.h:556
#define AV_PIX_FMT_YUV444P12
Definition pixfmt.h:552
#define AV_PIX_FMT_YUV444P9
Definition pixfmt.h:544
#define AV_PIX_FMT_YUV420P10
Definition pixfmt.h:545
#define AV_PIX_FMT_GRAY9
Definition pixfmt.h:524
#define AV_PIX_FMT_YUV422P9
Definition pixfmt.h:543
#define AV_PIX_FMT_YUV420P12
Definition pixfmt.h:549
#define AV_PIX_FMT_YUV422P12
Definition pixfmt.h:550
#define AV_PIX_FMT_YUV422P10
Definition pixfmt.h:546
#define AV_PIX_FMT_GRAY12
Definition pixfmt.h:526
#define AV_PIX_FMT_YUV420P9
Definition pixfmt.h:542
#define AV_PIX_FMT_YUV420P14
Definition pixfmt.h:553
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition pixfmt.h:86
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition pixfmt.h:87
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition pixfmt.h:85
#define AV_PIX_FMT_YUV422P14
Definition pixfmt.h:554
#define AV_PIX_FMT_GRAY10
Definition pixfmt.h:525
#define AV_PIX_FMT_GRAY14
Definition pixfmt.h:527
#define AV_PIX_FMT_YUV422P16
Definition pixfmt.h:557
#define AV_PIX_FMT_GRAY16
Definition pixfmt.h:528
#define AV_PIX_FMT_YUV444P14
Definition pixfmt.h:555
#define AV_PIX_FMT_YUV444P16
Definition pixfmt.h:558
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548
const h264_weight_func weight
static int config_props(AVBitStreamFilterLink *link)
Definition source.c:181
Describe the class of an AVClass context structure.
Definition log.h:76
Definition eval.c:171
An instance of a filter.
Definition avfilter.h:273
void * priv
private data for use by the filter
Definition avfilter.h:288
AVFilterLink ** outputs
array of pointers to output links
Definition avfilter.h:285
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:517
AVOption.
Definition opt.h:428
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
int(* irdft_horizontal)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:81
int planewidth[MAX_PLANES]
Definition vf_fftfilt.c:53
int planeheight[MAX_PLANES]
Definition vf_fftfilt.c:54
int rdft_vbits[MAX_PLANES]
Definition vf_fftfilt.c:65
int dc[MAX_PLANES]
Definition vf_fftfilt.c:75
av_tx_fn ihtx_fn
Definition vf_fftfilt.c:61
char * weight_str[MAX_PLANES]
Definition vf_fftfilt.c:76
float * rdft_hdata_in[MAX_PLANES]
Definition vf_fftfilt.c:70
float * rdft_vdata_out[MAX_PLANES]
Definition vf_fftfilt.c:73
AVTXContext * ivrdft[MAX_THREADS][MAX_PLANES]
Definition vf_fftfilt.c:59
size_t rdft_hstride[MAX_PLANES]
Definition vf_fftfilt.c:66
size_t rdft_vstride[MAX_PLANES]
Definition vf_fftfilt.c:67
size_t rdft_hlen[MAX_PLANES]
Definition vf_fftfilt.c:68
AVTXContext * hrdft[MAX_THREADS][MAX_PLANES]
Definition vf_fftfilt.c:56
float * rdft_hdata_out[MAX_PLANES]
Definition vf_fftfilt.c:72
size_t rdft_vlen[MAX_PLANES]
Definition vf_fftfilt.c:69
float * rdft_vdata_in[MAX_PLANES]
Definition vf_fftfilt.c:71
av_tx_fn ivtx_fn
Definition vf_fftfilt.c:62
double * weight[MAX_PLANES]
Definition vf_fftfilt.c:78
AVTXContext * vrdft[MAX_THREADS][MAX_PLANES]
Definition vf_fftfilt.c:57
AVExpr * weight_expr[MAX_PLANES]
Definition vf_fftfilt.c:77
AVTXContext * ihrdft[MAX_THREADS][MAX_PLANES]
Definition vf_fftfilt.c:58
av_tx_fn vtx_fn
Definition vf_fftfilt.c:62
av_tx_fn htx_fn
Definition vf_fftfilt.c:61
int rdft_hbits[MAX_PLANES]
Definition vf_fftfilt.c:64
int(* rdft_horizontal)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:80
#define av_freep(p)
#define src
Definition vp8dsp.c:248
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
#define height
Definition dsp.h:89
av_cold void av_tx_uninit(AVTXContext **ctx)
Frees a context and sets *ctx to NULL, does nothing when *ctx == NULL.
Definition tx.c:295
av_cold int av_tx_init(AVTXContext **ctx, av_tx_fn *tx, enum AVTXType type, int inv, int len, const void *scale, uint64_t flags)
Initialize a transform context with the given configuration (i)MDCTs with an odd length are currently...
Definition tx.c:903
@ AV_TX_FLOAT_RDFT
Real to complex and complex to real DFTs.
Definition tx.h:90
void(* av_tx_fn)(AVTXContext *s, void *out, void *in, ptrdiff_t stride)
Function pointer to a function to perform the transform.
Definition tx.h:151
static enum AVPixelFormat pixel_fmts_fftfilt[]
Definition vf_convolve.c:94
@ VAR_HS
Definition vf_fftfilt.c:85
@ VAR_WS
Definition vf_fftfilt.c:85
static int irdft_vertical(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:458
static void copy_rev(float *dest, int w, int w2)
Definition vf_fftfilt.c:117
static int rdft_horizontal8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:128
static int irdft_horizontal8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:190
static int irdft_horizontal16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:220
static void do_eval(FFTFILTContext *s, AVFilterLink *inlink, int plane)
Definition vf_fftfilt.c:285
static av_cold int initialize(AVFilterContext *ctx)
Definition vf_fftfilt.c:251
static double weight_Y(void *priv, double x, double y)
Definition vf_fftfilt.c:113
static int copy_horizontal(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:477
#define MAX_PLANES
Definition vf_fftfilt.c:38
static int rdft_horizontal16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:159
static const AVFilterPad fftfilt_inputs[]
Definition vf_fftfilt.c:586
static int multiply_data(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:393
static int copy_vertical(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:414
static double weight_U(void *priv, double x, double y)
Definition vf_fftfilt.c:114
static int rdft_vertical(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_fftfilt.c:439
static double weight_V(void *priv, double x, double y)
Definition vf_fftfilt.c:115
#define MAX_THREADS
Definition vf_fftfilt.c:37
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition vf_fftfilt.c:499
@ EVAL_MODE_INIT
Definition vf_fftfilt.c:41
static int config_props(AVFilterLink *inlink)
Definition vf_fftfilt.c:307
static const AVOption fftfilt_options[]
Definition vf_fftfilt.c:92
static av_cold void uninit(AVFilterContext *ctx)
Definition vf_fftfilt.c:547
#define OFFSET(x)
Definition vf_fftfilt.c:89
static double lum(void *priv, double x, double y, int plane)
Definition vf_fftfilt.c:107
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89
static int slice_start(SliceContext *sc, VVCContext *s, VVCFrameContext *fc, const CodedBitstreamUnit *unit, const int is_first_slice)
Definition dec.c:844