FFmpeg
Loading...
Searching...
No Matches
vf_guided.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2021 Xuewei Meng
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "libavutil/imgutils.h"
22#include "libavutil/mem.h"
23#include "libavutil/opt.h"
24#include "libavutil/pixdesc.h"
25#include "avfilter.h"
26#include "filters.h"
27#include "framesync.h"
28#include "video.h"
29
35
41
42typedef struct GuidedContext {
43 const AVClass *class;
45
46 int radius;
47 float eps;
48 int mode;
49 int sub;
51 int planes;
52
53 int width;
54 int height;
55
57 int depth;
58 int planewidth[4];
60
61 float *I;
62 float *II;
63 float *P;
64 float *IP;
65 float *meanI;
66 float *meanII;
67 float *meanP;
68 float *meanIP;
69
70 float *A;
71 float *B;
72 float *meanA;
73 float *meanB;
74
75 int (*box_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
77
78#define OFFSET(x) offsetof(GuidedContext, x)
79#define TFLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
80#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
81
82static const AVOption guided_options[] = {
83 { "radius", "set the box radius", OFFSET(radius), AV_OPT_TYPE_INT, {.i64 = 3 }, 1, 20, TFLAGS },
84 { "eps", "set the regularization parameter (with square)", OFFSET(eps), AV_OPT_TYPE_FLOAT, {.dbl = 0.01 }, 0.0, 1, TFLAGS },
85 { "mode", "set filtering mode (0: basic mode; 1: fast mode)", OFFSET(mode), AV_OPT_TYPE_INT, {.i64 = BASIC}, BASIC, NB_MODES - 1, TFLAGS, .unit = "mode" },
86 { "basic", "basic guided filter", 0, AV_OPT_TYPE_CONST, {.i64 = BASIC}, 0, 0, TFLAGS, .unit = "mode" },
87 { "fast", "fast guided filter", 0, AV_OPT_TYPE_CONST, {.i64 = FAST }, 0, 0, TFLAGS, .unit = "mode" },
88 { "sub", "subsampling ratio for fast mode", OFFSET(sub), AV_OPT_TYPE_INT, {.i64 = 4 }, 2, 64, TFLAGS },
89 { "guidance", "set guidance mode (0: off mode; 1: on mode)", OFFSET(guidance), AV_OPT_TYPE_INT, {.i64 = OFF }, OFF, NB_GUIDANCE_MODES - 1, FLAGS, .unit = "guidance" },
90 { "off", "only one input is enabled", 0, AV_OPT_TYPE_CONST, {.i64 = OFF }, 0, 0, FLAGS, .unit = "guidance" },
91 { "on", "two inputs are required", 0, AV_OPT_TYPE_CONST, {.i64 = ON }, 0, 0, FLAGS, .unit = "guidance" },
92 { "planes", "set planes to filter", OFFSET(planes), AV_OPT_TYPE_INT, {.i64 = 1 }, 0, 0xF, TFLAGS },
93 { NULL }
94};
95
97
98typedef struct ThreadData {
99 int width;
100 int height;
101 float *src;
102 float *dst;
105} ThreadData;
106
107static int box_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
108{
109 GuidedContext *s = ctx->priv;
110 ThreadData *t = arg;
111
112 const int width = t->width;
113 const int height = t->height;
114 const int src_stride = t->srcStride;
115 const int dst_stride = t->dstStride;
116 const int slice_start = ff_slice_pos(height, jobnr, nb_jobs);
117 const int slice_end = ff_slice_pos(height, jobnr + 1, nb_jobs);
118 const int radius = s->radius;
119 const float *src = t->src;
120 float *dst = t->dst;
121
122 int w;
123 int numPix;
124 w = (radius << 1) + 1;
125 numPix = w * w;
126 for (int i = slice_start;i < slice_end;i++) {
127 for (int j = 0;j < width;j++) {
128 float temp = 0.0;
129 for (int row = -radius;row <= radius;row++) {
130 for (int col = -radius;col <= radius;col++) {
131 int x = i + row;
132 int y = j + col;
133 x = (x < 0) ? 0 : (x >= height ? height - 1 : x);
134 y = (y < 0) ? 0 : (y >= width ? width - 1 : y);
135 temp += src[x * src_stride + y];
136 }
137 }
138 dst[i * dst_stride + j] = temp / numPix;
139 }
140 }
141 return 0;
142}
143
164
165static int config_input(AVFilterLink *inlink)
166{
167 AVFilterContext *ctx = inlink->dst;
168 GuidedContext *s = ctx->priv;
170
171 if (s->mode == BASIC) {
172 s->sub = 1;
173 } else if (s->mode == FAST) {
174 if (s->radius >= s->sub)
175 s->radius = s->radius / s->sub;
176 else {
177 s->radius = 1;
178 }
179 }
180
181 s->depth = desc->comp[0].depth;
182 s->width = ctx->inputs[0]->w;
183 s->height = ctx->inputs[0]->h;
184
185 s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
186 s->planewidth[0] = s->planewidth[3] = inlink->w;
187 s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
188 s->planeheight[0] = s->planeheight[3] = inlink->h;
189
190 s->nb_planes = av_pix_fmt_count_planes(inlink->format);
191 s->box_slice = box_slice;
192 return 0;
193}
194
195#define GUIDED(type, name) \
196static int guided_##name(AVFilterContext *ctx, GuidedContext *s, \
197 const uint8_t *ssrc, const uint8_t *ssrcRef, \
198 uint8_t *ddst, int radius, float eps, int width, int height, \
199 int src_stride, int src_ref_stride, int dst_stride, \
200 float maxval) \
201{ \
202 int ret = 0; \
203 type *dst = (type *)ddst; \
204 const type *src = (const type *)ssrc; \
205 const type *srcRef = (const type *)ssrcRef; \
206 \
207 int sub = s->sub; \
208 int h = (height % sub) == 0 ? height / sub : height / sub + 1; \
209 int w = (width % sub) == 0 ? width / sub : width / sub + 1; \
210 \
211 ThreadData t; \
212 const int nb_threads = ff_filter_get_nb_threads(ctx); \
213 float *I = s->I; \
214 float *II = s->II; \
215 float *P = s->P; \
216 float *IP = s->IP; \
217 float *meanI = s->meanI; \
218 float *meanII = s->meanII; \
219 float *meanP = s->meanP; \
220 float *meanIP = s->meanIP; \
221 float *A = s->A; \
222 float *B = s->B; \
223 float *meanA = s->meanA; \
224 float *meanB = s->meanB; \
225 \
226 for (int i = 0;i < h;i++) { \
227 for (int j = 0;j < w;j++) { \
228 int x = i * w + j; \
229 I[x] = src[(i * src_stride + j) * sub] / maxval; \
230 II[x] = I[x] * I[x]; \
231 P[x] = srcRef[(i * src_ref_stride + j) * sub] / maxval; \
232 IP[x] = I[x] * P[x]; \
233 } \
234 } \
235 \
236 t.width = w; \
237 t.height = h; \
238 t.srcStride = w; \
239 t.dstStride = w; \
240 t.src = I; \
241 t.dst = meanI; \
242 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
243 t.src = II; \
244 t.dst = meanII; \
245 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
246 t.src = P; \
247 t.dst = meanP; \
248 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
249 t.src = IP; \
250 t.dst = meanIP; \
251 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
252 \
253 for (int i = 0;i < h;i++) { \
254 for (int j = 0;j < w;j++) { \
255 int x = i * w + j; \
256 float varI = meanII[x] - (meanI[x] * meanI[x]); \
257 float covIP = meanIP[x] - (meanI[x] * meanP[x]); \
258 A[x] = covIP / (varI + eps); \
259 B[x] = meanP[x] - A[x] * meanI[x]; \
260 } \
261 } \
262 \
263 t.src = A; \
264 t.dst = meanA; \
265 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
266 t.src = B; \
267 t.dst = meanB; \
268 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
269 \
270 for (int i = 0;i < height;i++) { \
271 for (int j = 0;j < width;j++) { \
272 int x = i / sub * w + j / sub; \
273 dst[i * dst_stride + j] = meanA[x] * src[i * src_stride + j] + \
274 meanB[x] * maxval; \
275 } \
276 } \
277 \
278 return ret; \
279}
280
281GUIDED(uint8_t, byte)
282GUIDED(uint16_t, word)
283
285{
286 GuidedContext *s = ctx->priv;
287 AVFilterLink *outlink = ctx->outputs[0];
288 *out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
289 if (!*out)
290 return AVERROR(ENOMEM);
292
293 for (int plane = 0; plane < s->nb_planes; plane++) {
294 if (!(s->planes & (1 << plane))) {
295 av_image_copy_plane((*out)->data[plane], (*out)->linesize[plane],
296 in->data[plane], in->linesize[plane],
297 s->planewidth[plane] * ((s->depth + 7) / 8), s->planeheight[plane]);
298 continue;
299 }
300 if (s->depth <= 8)
301 guided_byte(ctx, s, in->data[plane], ref->data[plane], (*out)->data[plane], s->radius, s->eps,
302 s->planewidth[plane], s->planeheight[plane],
303 in->linesize[plane], ref->linesize[plane], (*out)->linesize[plane], (1 << s->depth) - 1.f);
304 else
305 guided_word(ctx, s, in->data[plane], ref->data[plane], (*out)->data[plane], s->radius, s->eps,
306 s->planewidth[plane], s->planeheight[plane],
307 in->linesize[plane] / 2, ref->linesize[plane] / 2, (*out)->linesize[plane] / 2, (1 << s->depth) - 1.f);
308 }
309
310 return 0;
311}
312
314{
315 AVFilterContext *ctx = fs->parent;
316 AVFilterLink *outlink = ctx->outputs[0];
317 AVFrame *out_frame = NULL, *main_frame = NULL, *ref_frame = NULL;
318 int ret;
319 ret = ff_framesync_dualinput_get(fs, &main_frame, &ref_frame);
320 if (ret < 0)
321 return ret;
322
323 if (ctx->is_disabled)
324 return ff_filter_frame(outlink, main_frame);
325
326 ret = filter_frame(ctx, &out_frame, main_frame, ref_frame);
327 if (ret < 0)
328 return ret;
329 av_frame_free(&main_frame);
330
331 return ff_filter_frame(outlink, out_frame);
332}
333
334static int config_output(AVFilterLink *outlink)
335{
336 AVFilterContext *ctx = outlink->src;
337 GuidedContext *s = ctx->priv;
338 AVFilterLink *mainlink = ctx->inputs[0];
339 FilterLink *il = ff_filter_link(mainlink);
340 FilterLink *ol = ff_filter_link(outlink);
341 FFFrameSyncIn *in;
342 int w, h, ret;
343
344 if (s->guidance == ON) {
345 if (ctx->inputs[0]->w != ctx->inputs[1]->w ||
346 ctx->inputs[0]->h != ctx->inputs[1]->h) {
347 av_log(ctx, AV_LOG_ERROR, "Width and height of input videos must be same.\n");
348 return AVERROR(EINVAL);
349 }
350 }
351
352 outlink->w = w = mainlink->w;
353 outlink->h = h = mainlink->h;
354 outlink->time_base = mainlink->time_base;
355 outlink->sample_aspect_ratio = mainlink->sample_aspect_ratio;
356 ol->frame_rate = il->frame_rate;
357
358 s->I = av_calloc(w * h, sizeof(*s->I));
359 s->II = av_calloc(w * h, sizeof(*s->II));
360 s->P = av_calloc(w * h, sizeof(*s->P));
361 s->IP = av_calloc(w * h, sizeof(*s->IP));
362 s->meanI = av_calloc(w * h, sizeof(*s->meanI));
363 s->meanII = av_calloc(w * h, sizeof(*s->meanII));
364 s->meanP = av_calloc(w * h, sizeof(*s->meanP));
365 s->meanIP = av_calloc(w * h, sizeof(*s->meanIP));
366
367 s->A = av_calloc(w * h, sizeof(*s->A));
368 s->B = av_calloc(w * h, sizeof(*s->B));
369 s->meanA = av_calloc(w * h, sizeof(*s->meanA));
370 s->meanB = av_calloc(w * h, sizeof(*s->meanA));
371
372 if (!s->I || !s->II || !s->P || !s->IP || !s->meanI || !s->meanII || !s->meanP ||
373 !s->meanIP || !s->A || !s->B || !s->meanA || !s->meanB)
374 return AVERROR(ENOMEM);
375
376 if (s->guidance == OFF)
377 return 0;
378
379 if ((ret = ff_framesync_init(&s->fs, ctx, 2)) < 0)
380 return ret;
381
382 outlink->time_base = s->fs.time_base;
383
384 in = s->fs.in;
385 in[0].time_base = mainlink->time_base;
386 in[1].time_base = ctx->inputs[1]->time_base;
387 in[0].sync = 2;
388 in[0].before = EXT_INFINITY;
389 in[0].after = EXT_INFINITY;
390 in[1].sync = 1;
391 in[1].before = EXT_INFINITY;
392 in[1].after = EXT_INFINITY;
393 s->fs.opaque = s;
394 s->fs.on_event = process_frame;
395
396 return ff_framesync_configure(&s->fs);
397}
398
400{
401 GuidedContext *s = ctx->priv;
402 AVFilterLink *outlink = ctx->outputs[0];
403 AVFilterLink *inlink = ctx->inputs[0];
404 AVFrame *frame = NULL;
405 AVFrame *out = NULL;
406 int ret, status;
407 int64_t pts;
408 if (s->guidance)
409 return ff_framesync_activate(&s->fs);
410
411 FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink);
412
413 if ((ret = ff_inlink_consume_frame(inlink, &frame)) > 0) {
414 if (ctx->is_disabled)
415 return ff_filter_frame(outlink, frame);
416
417 ret = filter_frame(ctx, &out, frame, frame);
419 if (ret < 0)
420 return ret;
421 ret = ff_filter_frame(outlink, out);
422 }
423 if (ret < 0)
424 return ret;
425 if (ff_inlink_acknowledge_status(inlink, &status, &pts)) {
426 ff_outlink_set_status(outlink, status, pts);
427 return 0;
428 }
429 if (ff_outlink_frame_wanted(outlink))
431 return 0;
432}
433
435{
436 GuidedContext *s = ctx->priv;
437 AVFilterPad pad = { 0 };
438 int ret;
439
441 pad.name = "source";
443
444 if ((ret = ff_append_inpad(ctx, &pad)) < 0)
445 return ret;
446
447 if (s->guidance == ON) {
449 pad.name = "guidance";
450 pad.config_props = NULL;
451
452 if ((ret = ff_append_inpad(ctx, &pad)) < 0)
453 return ret;
454 }
455
456 return 0;
457}
458
460{
461 GuidedContext *s = ctx->priv;
462 if (s->guidance == ON)
464
465 av_freep(&s->I);
466 av_freep(&s->II);
467 av_freep(&s->P);
468 av_freep(&s->IP);
469 av_freep(&s->meanI);
470 av_freep(&s->meanII);
471 av_freep(&s->meanP);
472 av_freep(&s->meanIP);
473 av_freep(&s->A);
474 av_freep(&s->B);
475 av_freep(&s->meanA);
476 av_freep(&s->meanB);
477
478 return;
479}
480
481static const AVFilterPad guided_outputs[] = {
482 {
483 .name = "default",
484 .type = AVMEDIA_TYPE_VIDEO,
485 .config_props = config_output,
486 },
487};
488
490 .p.name = "guided",
491 .p.description = NULL_IF_CONFIG_SMALL("Apply Guided filter."),
492 .p.priv_class = &guided_class,
493 .p.inputs = NULL,
496 .init = init,
497 .uninit = uninit,
498 .priv_size = sizeof(GuidedContext),
502 .process_command = ff_filter_process_command,
503};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static int config_input(AVFilterLink *inlink)
#define TFLAGS
Definition af_afade.c:66
@ NB_MODES
Definition af_afftdn.c:48
const FFFilter ff_vf_guided
Definition vf_guided.c:489
static FILE * out
static AVFormatContext * ctx
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Definition avfilter.c:1467
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_append_inpad(AVFilterContext *f, AVFilterPad *p)
Append a new input/output pad to the filter's list of such pads.
Definition avfilter.c:127
int ff_outlink_frame_wanted(AVFilterLink *link)
Test if a frame is wanted on an output link.
Definition avfilter.c:1690
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition avfilter.c:906
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
Definition avfilter.c:1520
void ff_inlink_request_frame(AVFilterLink *link)
Mark that a frame is wanted on the link.
Definition avfilter.c:1623
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define fs(width, name, subs,...)
Definition cbs_vp9.c:200
#define FLAGS
Definition cmdutils.c:598
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static AVFrame * frame
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
static av_always_inline int process_frame(AVTextFormatContext *tfc, InputFile *ifile, AVFrame *frame, const AVPacket *pkt, int *packet_new)
Definition ffprobe.c:1596
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition framesync.c:137
int ff_framesync_dualinput_get(FFFrameSync *fs, AVFrame **f0, AVFrame **f1)
Definition framesync.c:390
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
Definition framesync.c:352
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition framesync.c:301
int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
Initialize a frame sync structure.
Definition framesync.c:86
@ EXT_INFINITY
Extend the frame to infinity.
Definition framesync.h:75
@ 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_FLOAT
Underlying C type is float.
Definition opt.h:270
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition avfilter.h:166
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition avfilter.h:204
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition avfilter.h:155
#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 AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
Definition imgutils.c:374
misc image utilities
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
#define OFF(field)
Definition aacdec.c:2629
const char * arg
Definition jacosubdec.c:65
#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 void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
Definition filters.h:629
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
Definition filters.h:639
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static enum AVPixelFormat pix_fmts[]
Definition libkvazaar.c:296
const char * desc
Definition libsvtav1.c:83
static const struct @257111027162314367033347246032313251342043035002 planes[]
uint8_t w
Definition llvidencdsp.c:39
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
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_GBRAP12
Definition pixfmt.h:569
#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_YUV440P12
Definition pixfmt.h:551
#define AV_PIX_FMT_GRAY9
Definition pixfmt.h:524
#define AV_PIX_FMT_GBRAP16
Definition pixfmt.h:571
#define AV_PIX_FMT_GBRP9
Definition pixfmt.h:563
#define AV_PIX_FMT_YUV422P9
Definition pixfmt.h:543
#define AV_PIX_FMT_YUVA444P10
Definition pixfmt.h:598
#define AV_PIX_FMT_YUVA420P16
Definition pixfmt.h:601
#define AV_PIX_FMT_YUV420P12
Definition pixfmt.h:549
#define AV_PIX_FMT_YUVA420P10
Definition pixfmt.h:596
#define AV_PIX_FMT_YUVA422P9
Definition pixfmt.h:594
#define AV_PIX_FMT_YUV422P12
Definition pixfmt.h:550
#define AV_PIX_FMT_GBRP10
Definition pixfmt.h:564
#define AV_PIX_FMT_YUV422P10
Definition pixfmt.h:546
#define AV_PIX_FMT_GRAY12
Definition pixfmt.h:526
#define AV_PIX_FMT_GBRP12
Definition pixfmt.h:565
#define AV_PIX_FMT_YUV420P9
Definition pixfmt.h:542
#define AV_PIX_FMT_YUVA420P9
Definition pixfmt.h:593
#define AV_PIX_FMT_YUVA422P10
Definition pixfmt.h:597
#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_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition pixfmt.h:106
@ 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_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition pixfmt.h:108
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
Definition pixfmt.h:107
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition pixfmt.h:79
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition pixfmt.h:80
@ 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_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition pixfmt.h:174
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition pixfmt.h:283
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition pixfmt.h:212
@ 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_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition pixfmt.h:173
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition pixfmt.h:165
@ 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_GBRAP10
Definition pixfmt.h:568
#define AV_PIX_FMT_YUVA444P16
Definition pixfmt.h:603
#define AV_PIX_FMT_YUVA422P16
Definition pixfmt.h:602
#define AV_PIX_FMT_GBRP16
Definition pixfmt.h:567
#define AV_PIX_FMT_YUV444P14
Definition pixfmt.h:555
#define AV_PIX_FMT_YUVA444P9
Definition pixfmt.h:595
#define AV_PIX_FMT_GBRP14
Definition pixfmt.h:566
#define AV_PIX_FMT_YUV444P16
Definition pixfmt.h:558
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
A filter pad used for either input or output.
Definition filters.h:40
int(* config_props)(AVFilterLink *link)
Link configuration callback.
Definition filters.h:120
enum AVMediaType type
AVFilterPad type.
Definition filters.h:51
const char * name
Pad name.
Definition filters.h:46
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
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
Input stream structure.
Definition framesync.h:102
enum FFFrameSyncExtMode after
Extrapolation mode for timestamps after the last frame.
Definition framesync.h:112
enum FFFrameSyncExtMode before
Extrapolation mode for timestamps before the first frame.
Definition framesync.h:107
AVRational time_base
Time base for the incoming frames.
Definition framesync.h:117
unsigned sync
Synchronization level: frames on input at the highest sync level will generate output frame events.
Definition framesync.h:160
Frame sync structure.
Definition framesync.h:168
float * I
Definition vf_guided.c:61
int planeheight[4]
Definition vf_guided.c:59
float * meanP
Definition vf_guided.c:67
int(* box_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_guided.c:75
float * IP
Definition vf_guided.c:64
float * meanB
Definition vf_guided.c:73
float * meanII
Definition vf_guided.c:66
float * meanIP
Definition vf_guided.c:68
float * B
Definition vf_guided.c:71
FFFrameSync fs
Definition vf_guided.c:44
float * meanI
Definition vf_guided.c:65
float * meanA
Definition vf_guided.c:72
float * P
Definition vf_guided.c:63
int planewidth[4]
Definition vf_guided.c:58
float * II
Definition vf_guided.c:62
float * A
Definition vf_guided.c:70
Used for passing data between threads.
Definition dsddec.c:71
int dstStride
Definition vf_guided.c:104
int srcStride
Definition vf_guided.c:103
const uint8_t * src
Definition vf_bm3d.c:54
AVFrame * dst
Definition vf_blend.c:59
Definition swscale.c:71
#define av_freep(p)
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
static int ref[MAX_W *MAX_W]
#define height
Definition dsp.h:89
#define width
Definition dsp.h:89
static int64_t pts
@ BASIC
Definition vf_bm3d.c:48
GuidanceModes
Definition vf_guided.c:36
@ NB_GUIDANCE_MODES
Definition vf_guided.c:39
@ ON
Definition vf_guided.c:38
@ FAST
Definition vf_guided.c:32
#define GUIDED(type, name)
Definition vf_guided.c:195
static int box_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_guided.c:107
static int config_input(AVFilterLink *inlink)
Definition vf_guided.c:165
static int filter_frame(AVFilterContext *ctx, AVFrame **out, AVFrame *in, AVFrame *ref)
Definition vf_guided.c:284
static const AVFilterPad guided_outputs[]
Definition vf_guided.c:481
static int activate(AVFilterContext *ctx)
Definition vf_guided.c:399
static av_cold void uninit(AVFilterContext *ctx)
Definition vf_guided.c:459
#define OFFSET(x)
Definition vf_guided.c:78
static int config_output(AVFilterLink *outlink)
Definition vf_guided.c:334
static const AVOption guided_options[]
Definition vf_guided.c:82
static int process_frame(FFFrameSync *fs)
Definition vf_guided.c:313
else temp
Definition vf_mcdeint.c:275
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 ref_frame(VVCFrame *dst, const VVCFrame *src)
Definition dec.c:616
static int slice_start(SliceContext *sc, VVCContext *s, VVCFrameContext *fc, const CodedBitstreamUnit *unit, const int is_first_slice)
Definition dec.c:844