FFmpeg
Loading...
Searching...
No Matches
vf_remap.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Floris Sluiter
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/**
22 * @file
23 * Pixel remap filter
24 * This filter copies pixel by pixel a source frame to a target frame.
25 * It remaps the pixels to a new x,y destination based on two files ymap/xmap.
26 * Map files are passed as a parameter and are in PGM format (P2 or P5),
27 * where the values are y(rows)/x(cols) coordinates of the source_frame.
28 * The *target* frame dimension is based on mapfile dimensions: specified in the
29 * header of the mapfile and reflected in the number of datavalues.
30 * Dimensions of ymap and xmap must be equal. Datavalues must be positive or zero.
31 * Any datavalue in the ymap or xmap which value is higher
32 * then the *source* frame height or width is silently ignored, leaving a
33 * blank/chromakey pixel. This can safely be used as a feature to create overlays.
34 *
35 * Algorithm digest:
36 * Target_frame[y][x] = Source_frame[ ymap[y][x] ][ [xmap[y][x] ];
37 */
38
40#include "libavutil/imgutils.h"
41#include "libavutil/pixdesc.h"
42#include "libavutil/opt.h"
43#include "avfilter.h"
44#include "drawutils.h"
45#include "filters.h"
46#include "formats.h"
47#include "framesync.h"
48#include "video.h"
49
50typedef struct RemapContext {
51 const AVClass *class;
52 int format;
53
56 int step;
57 uint8_t fill_rgba[4];
58 int fill_color[4];
59
61
62 int (*remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
64
65#define OFFSET(x) offsetof(RemapContext, x)
66#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
67
68static const AVOption remap_options[] = {
69 { "format", "set output format", OFFSET(format), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, .unit = "format" },
70 { "color", "", 0, AV_OPT_TYPE_CONST, {.i64=0}, .flags = FLAGS, .unit = "format" },
71 { "gray", "", 0, AV_OPT_TYPE_CONST, {.i64=1}, .flags = FLAGS, .unit = "format" },
72 { "fill", "set the color of the unmapped pixels", OFFSET(fill_rgba), AV_OPT_TYPE_COLOR, {.str="black"}, .flags = FLAGS },
73 { NULL }
74};
75
77
78typedef struct ThreadData {
79 AVFrame *in, *xin, *yin, *out;
81 int nb_components;
82 int step;
84
86 AVFilterFormatsConfig **cfg_in,
87 AVFilterFormatsConfig **cfg_out)
88{
89 const RemapContext *s = ctx->priv;
90 static const enum AVPixelFormat pix_fmts[] = {
106 };
107 static const enum AVPixelFormat gray_pix_fmts[] = {
112 };
113 static const enum AVPixelFormat map_fmts[] = {
116 };
117 AVFilterFormats *pix_formats = NULL, *map_formats = NULL;
118 int ret;
119
120 pix_formats = ff_make_pixel_format_list(s->format ? gray_pix_fmts : pix_fmts);
121 if ((ret = ff_formats_ref(pix_formats, &cfg_in[0]->formats)) < 0 ||
122 (ret = ff_formats_ref(pix_formats, &cfg_out[0]->formats)) < 0)
123 return ret;
124
125 map_formats = ff_make_pixel_format_list(map_fmts);
126 if ((ret = ff_formats_ref(map_formats, &cfg_in[1]->formats)) < 0)
127 return ret;
128 return ff_formats_ref(map_formats, &cfg_in[2]->formats);
129}
130
131/**
132 * remap_planar algorithm expects planes of same size
133 * pixels are copied from source to target using :
134 * Target_frame[y][x] = Source_frame[ ymap[y][x] ][ [xmap[y][x] ];
135 */
136#define DEFINE_REMAP_PLANAR_FUNC(name, bits, div) \
137static int remap_planar##bits##_##name##_slice(AVFilterContext *ctx, void *arg, \
138 int jobnr, int nb_jobs) \
139{ \
140 RemapContext *s = ctx->priv; \
141 const ThreadData *td = arg; \
142 const AVFrame *in = td->in; \
143 const AVFrame *xin = td->xin; \
144 const AVFrame *yin = td->yin; \
145 const AVFrame *out = td->out; \
146 const int slice_start = ff_slice_pos(out->height, jobnr, nb_jobs); \
147 const int slice_end = ff_slice_pos(out->height, jobnr + 1, nb_jobs); \
148 const int xlinesize = xin->linesize[0] / 2; \
149 const int ylinesize = yin->linesize[0] / 2; \
150 int x , y, plane; \
151 \
152 for (plane = 0; plane < td->nb_planes ; plane++) { \
153 const int dlinesize = out->linesize[plane] / div; \
154 const uint##bits##_t *src = (const uint##bits##_t *)in->data[plane]; \
155 uint##bits##_t *dst = (uint##bits##_t *)out->data[plane] + slice_start * dlinesize; \
156 const int slinesize = in->linesize[plane] / div; \
157 const uint16_t *xmap = (const uint16_t *)xin->data[0] + slice_start * xlinesize; \
158 const uint16_t *ymap = (const uint16_t *)yin->data[0] + slice_start * ylinesize; \
159 const int color = s->fill_color[plane]; \
160 \
161 for (y = slice_start; y < slice_end; y++) { \
162 for (x = 0; x < out->width; x++) { \
163 if (ymap[x] < in->height && xmap[x] < in->width) { \
164 dst[x] = src[ymap[x] * slinesize + xmap[x]]; \
165 } else { \
166 dst[x] = color; \
167 } \
168 } \
169 dst += dlinesize; \
170 xmap += xlinesize; \
171 ymap += ylinesize; \
172 } \
173 } \
174 \
175 return 0; \
176}
177
178DEFINE_REMAP_PLANAR_FUNC(nearest, 8, 1)
179DEFINE_REMAP_PLANAR_FUNC(nearest, 16, 2)
180
181/**
182 * remap_packed algorithm expects pixels with both padded bits (step) and
183 * number of components correctly set.
184 * pixels are copied from source to target using :
185 * Target_frame[y][x] = Source_frame[ ymap[y][x] ][ [xmap[y][x] ];
186 */
187#define DEFINE_REMAP_PACKED_FUNC(name, bits, div) \
188static int remap_packed##bits##_##name##_slice(AVFilterContext *ctx, void *arg, \
189 int jobnr, int nb_jobs) \
190{ \
191 RemapContext *s = ctx->priv; \
192 const ThreadData *td = arg; \
193 const AVFrame *in = td->in; \
194 const AVFrame *xin = td->xin; \
195 const AVFrame *yin = td->yin; \
196 const AVFrame *out = td->out; \
197 const int slice_start = ff_slice_pos(out->height, jobnr, nb_jobs); \
198 const int slice_end = ff_slice_pos(out->height, jobnr + 1, nb_jobs); \
199 const int dlinesize = out->linesize[0] / div; \
200 const int slinesize = in->linesize[0] / div; \
201 const int xlinesize = xin->linesize[0] / 2; \
202 const int ylinesize = yin->linesize[0] / 2; \
203 const uint##bits##_t *src = (const uint##bits##_t *)in->data[0]; \
204 uint##bits##_t *dst = (uint##bits##_t *)out->data[0] + slice_start * dlinesize; \
205 const uint16_t *xmap = (const uint16_t *)xin->data[0] + slice_start * xlinesize; \
206 const uint16_t *ymap = (const uint16_t *)yin->data[0] + slice_start * ylinesize; \
207 const int step = td->step / div; \
208 int c, x, y; \
209 \
210 for (y = slice_start; y < slice_end; y++) { \
211 for (x = 0; x < out->width; x++) { \
212 for (c = 0; c < td->nb_components; c++) { \
213 if (ymap[x] < in->height && xmap[x] < in->width) { \
214 dst[x * step + c] = src[ymap[x] * slinesize + xmap[x] * step + c]; \
215 } else { \
216 dst[x * step + c] = s->fill_color[c]; \
217 } \
218 } \
219 } \
220 dst += dlinesize; \
221 xmap += xlinesize; \
222 ymap += ylinesize; \
223 } \
224 \
225 return 0; \
226}
227
228DEFINE_REMAP_PACKED_FUNC(nearest, 8, 1)
229DEFINE_REMAP_PACKED_FUNC(nearest, 16, 2)
230
231static int config_input(AVFilterLink *inlink)
232{
233 AVFilterContext *ctx = inlink->dst;
234 RemapContext *s = ctx->priv;
235 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
236 int depth = desc->comp[0].depth;
237 int is_rgb = !!(desc->flags & AV_PIX_FMT_FLAG_RGB);
238 int factor = 1 << (depth - 8);
239 uint8_t rgba_map[4];
240
241 ff_fill_rgba_map(rgba_map, inlink->format);
242 s->nb_planes = av_pix_fmt_count_planes(inlink->format);
243 s->nb_components = desc->nb_components;
244
245 if (is_rgb) {
246 s->fill_color[rgba_map[0]] = s->fill_rgba[0] * factor;
247 s->fill_color[rgba_map[1]] = s->fill_rgba[1] * factor;
248 s->fill_color[rgba_map[2]] = s->fill_rgba[2] * factor;
249 s->fill_color[rgba_map[3]] = s->fill_rgba[3] * factor;
250 } else {
251 s->fill_color[0] = RGB_TO_Y_BT709(s->fill_rgba[0], s->fill_rgba[1], s->fill_rgba[2]) * factor;
252 s->fill_color[1] = RGB_TO_U_BT709(s->fill_rgba[0], s->fill_rgba[1], s->fill_rgba[2], 0) * factor;
253 s->fill_color[2] = RGB_TO_V_BT709(s->fill_rgba[0], s->fill_rgba[1], s->fill_rgba[2], 0) * factor;
254 s->fill_color[3] = s->fill_rgba[3] * factor;
255 }
256
257 if (depth == 8) {
258 if (s->nb_planes > 1 || s->nb_components == 1) {
259 s->remap_slice = remap_planar8_nearest_slice;
260 } else {
261 s->remap_slice = remap_packed8_nearest_slice;
262 }
263 } else {
264 if (s->nb_planes > 1 || s->nb_components == 1) {
265 s->remap_slice = remap_planar16_nearest_slice;
266 } else {
267 s->remap_slice = remap_packed16_nearest_slice;
268 }
269 }
270
271 s->step = av_get_padded_bits_per_pixel(desc) >> 3;
272 return 0;
273}
274
276{
277 AVFilterContext *ctx = fs->parent;
278 RemapContext *s = fs->opaque;
279 AVFilterLink *outlink = ctx->outputs[0];
280 AVFrame *out, *in, *xpic, *ypic;
281 int ret;
282
283 if ((ret = ff_framesync_get_frame(&s->fs, 0, &in, 0)) < 0 ||
284 (ret = ff_framesync_get_frame(&s->fs, 1, &xpic, 0)) < 0 ||
285 (ret = ff_framesync_get_frame(&s->fs, 2, &ypic, 0)) < 0)
286 return ret;
287
288 {
289 ThreadData td;
290
291 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
292 if (!out)
293 return AVERROR(ENOMEM);
295
296 td.in = in;
297 td.xin = xpic;
298 td.yin = ypic;
299 td.out = out;
300 td.nb_planes = s->nb_planes;
301 td.nb_components = s->nb_components;
302 td.step = s->step;
303 ff_filter_execute(ctx, s->remap_slice, &td, NULL,
304 FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
305 }
306 out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
307
308 return ff_filter_frame(outlink, out);
309}
310
311static int config_output(AVFilterLink *outlink)
312{
313 AVFilterContext *ctx = outlink->src;
314 RemapContext *s = ctx->priv;
315 AVFilterLink *srclink = ctx->inputs[0];
316 AVFilterLink *xlink = ctx->inputs[1];
317 AVFilterLink *ylink = ctx->inputs[2];
318 FilterLink *il = ff_filter_link(srclink);
319 FilterLink *ol = ff_filter_link(outlink);
320 FFFrameSyncIn *in;
321 int ret;
322
323 if (xlink->w != ylink->w || xlink->h != ylink->h) {
324 av_log(ctx, AV_LOG_ERROR, "Second input link %s parameters "
325 "(size %dx%d) do not match the corresponding "
326 "third input link %s parameters (%dx%d)\n",
327 ctx->input_pads[1].name, xlink->w, xlink->h,
328 ctx->input_pads[2].name, ylink->w, ylink->h);
329 return AVERROR(EINVAL);
330 }
331
332 outlink->w = xlink->w;
333 outlink->h = xlink->h;
334 outlink->sample_aspect_ratio = srclink->sample_aspect_ratio;
335 ol->frame_rate = il->frame_rate;
336
337 ret = ff_framesync_init(&s->fs, ctx, 3);
338 if (ret < 0)
339 return ret;
340
341 in = s->fs.in;
342 in[0].time_base = srclink->time_base;
343 in[1].time_base = xlink->time_base;
344 in[2].time_base = ylink->time_base;
345 in[0].sync = 2;
346 in[0].before = EXT_STOP;
347 in[0].after = EXT_STOP;
348 in[1].sync = 1;
349 in[1].before = EXT_NULL;
350 in[1].after = EXT_INFINITY;
351 in[2].sync = 1;
352 in[2].before = EXT_NULL;
353 in[2].after = EXT_INFINITY;
354 s->fs.opaque = s;
355 s->fs.on_event = process_frame;
356
357 ret = ff_framesync_configure(&s->fs);
358 outlink->time_base = s->fs.time_base;
359
360 return ret;
361}
362
364{
365 RemapContext *s = ctx->priv;
366 return ff_framesync_activate(&s->fs);
367}
368
370{
371 RemapContext *s = ctx->priv;
372
374}
375
376static const AVFilterPad remap_inputs[] = {
377 {
378 .name = "source",
379 .type = AVMEDIA_TYPE_VIDEO,
380 .config_props = config_input,
381 },
382 {
383 .name = "xmap",
384 .type = AVMEDIA_TYPE_VIDEO,
385 },
386 {
387 .name = "ymap",
388 .type = AVMEDIA_TYPE_VIDEO,
389 },
390};
391
392static const AVFilterPad remap_outputs[] = {
393 {
394 .name = "default",
395 .type = AVMEDIA_TYPE_VIDEO,
396 .config_props = config_output,
397 },
398};
399
401 .p.name = "remap",
402 .p.description = NULL_IF_CONFIG_SMALL("Remap pixels."),
403 .p.priv_class = &remap_class,
405 .priv_size = sizeof(RemapContext),
406 .uninit = uninit,
411};
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition aeval.c:246
static int config_input(AVFilterLink *inlink)
static const char *const format[]
Definition af_aiir.c:444
const FFFilter ff_vf_remap
Definition vf_remap.c:400
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
Main libavfilter public API header.
#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 NULL
Definition coverity.c:32
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
Definition drawutils.c:80
misc drawing utilities
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_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add ref as a new reference to formats.
Definition formats.c:756
av_warn_unused_result AVFilterFormats * ff_make_pixel_format_list(const enum AVPixelFormat *fmts)
Create a list of supported pixel formats.
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition framesync.c:137
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
Definition framesync.c:352
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
Definition framesync.c:269
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_COLOR
Underlying C type is uint8_t[4].
Definition opt.h:322
#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
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
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
misc image utilities
static enum AVPixelFormat gray_pix_fmts[]
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
const char * arg
Definition jacosubdec.c:65
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define FILTER_QUERY_FUNC2(func)
Definition filters.h:241
static const int factor[16]
Definition vf_pp7.c:98
#define av_cold
Definition attributes.h:117
Various defines for YUV<->RGB conversion.
#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
#define FFMIN(a, b)
Definition macros.h:49
static const int remap[16]
Definition msvideo1enc.c:66
AVOptions.
@ EXT_STOP
Completely stop all streams with this one.
Definition packetsync.h:62
@ EXT_NULL
Ignore this stream and continue processing the other ones.
Definition packetsync.h:67
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3500
int av_get_padded_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel for the pixel format described by pixdesc, including any padding ...
Definition pixdesc.c:3425
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
Definition pixdesc.h:136
#define AV_PIX_FMT_GBRAP12
Definition pixfmt.h:569
#define AV_PIX_FMT_YUV444P12
Definition pixfmt.h:552
#define AV_PIX_FMT_YUV444P9
Definition pixfmt.h:544
#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_YUVA444P10
Definition pixfmt.h:598
#define AV_PIX_FMT_BGR48
Definition pixfmt.h:536
#define AV_PIX_FMT_GBRP10
Definition pixfmt.h:564
#define AV_PIX_FMT_GRAY12
Definition pixfmt.h:526
#define AV_PIX_FMT_RGBA64
Definition pixfmt.h:535
#define AV_PIX_FMT_GBRP12
Definition pixfmt.h:565
#define AV_PIX_FMT_RGB48
Definition pixfmt.h:531
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition pixfmt.h:75
@ AV_PIX_FMT_ARGB
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition pixfmt.h:99
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition pixfmt.h:102
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ AV_PIX_FMT_ABGR
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition pixfmt.h:101
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition pixfmt.h:100
@ 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_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition pixfmt.h:212
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition pixfmt.h:76
@ 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
#define AV_PIX_FMT_GRAY10
Definition pixfmt.h:525
#define AV_PIX_FMT_GRAY14
Definition pixfmt.h:527
#define AV_PIX_FMT_BGRA64
Definition pixfmt.h:540
#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_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_YUVA444P12
Definition pixfmt.h:600
#define AV_PIX_FMT_YUV444P16
Definition pixfmt.h:558
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548
formats
Definition signature.h:47
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
Lists of formats / etc.
Definition avfilter.h:120
A list of supported formats for one end of a filter link.
Definition formats.h:64
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
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
int nb_planes
Definition vf_remap.c:54
int nb_components
Definition vf_remap.c:55
int(* remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_remap.c:62
FFFrameSync fs
Definition vf_remap.c:60
int fill_color[4]
Definition vf_remap.c:58
uint8_t fill_rgba[4]
Definition vf_remap.c:57
Used for passing data between threads.
Definition dsddec.c:71
int nb_components
Definition vf_identity.c:92
AVFrame * xin
Definition vf_displace.c:78
AVFrame * out
int nb_planes
Definition vf_remap.c:80
AVFrame * yin
Definition vf_displace.c:78
#define av_log(a,...)
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
#define RGB_TO_Y_BT709(r, g, b)
#define RGB_TO_U_BT709(r1, g1, b1, max)
#define RGB_TO_V_BT709(r1, g1, b1, max)
#define DEFINE_REMAP_PLANAR_FUNC(name, bits, div)
remap_planar algorithm expects planes of same size pixels are copied from source to target using : Ta...
Definition vf_remap.c:136
static const AVOption remap_options[]
Definition vf_remap.c:68
#define DEFINE_REMAP_PACKED_FUNC(name, bits, div)
remap_packed algorithm expects pixels with both padded bits (step) and number of components correctly...
Definition vf_remap.c:187
static const AVFilterPad remap_inputs[]
Definition vf_remap.c:376
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition vf_remap.c:85
static int activate(AVFilterContext *ctx)
Definition vf_remap.c:363
static av_cold void uninit(AVFilterContext *ctx)
Definition vf_remap.c:369
#define OFFSET(x)
Definition vf_remap.c:65
static int config_output(AVFilterLink *outlink)
Definition vf_remap.c:311
static const AVFilterPad remap_outputs[]
Definition vf_remap.c:392
static int process_frame(FFFrameSync *fs)
Definition vf_remap.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