FFmpeg
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 
39 #include "libavutil/colorspace.h"
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 "formats.h"
46 #include "framesync.h"
47 #include "internal.h"
48 #include "video.h"
49 
50 typedef struct RemapContext {
51  const AVClass *class;
52  int format;
53 
54  int nb_planes;
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);
63 } RemapContext;
64 
65 #define OFFSET(x) offsetof(RemapContext, x)
66 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
67 
68 static 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 
78 typedef struct ThreadData {
79  AVFrame *in, *xin, *yin, *out;
80  int nb_planes;
81  int nb_components;
82  int step;
83 } ThreadData;
84 
86 {
87  RemapContext *s = ctx->priv;
88  static const enum AVPixelFormat pix_fmts[] = {
104  };
105  static const enum AVPixelFormat gray_pix_fmts[] = {
110  };
111  static const enum AVPixelFormat map_fmts[] = {
114  };
115  AVFilterFormats *pix_formats = NULL, *map_formats = NULL;
116  int ret;
117 
118  pix_formats = ff_make_format_list(s->format ? gray_pix_fmts : pix_fmts);
119  if ((ret = ff_formats_ref(pix_formats, &ctx->inputs[0]->outcfg.formats)) < 0 ||
120  (ret = ff_formats_ref(pix_formats, &ctx->outputs[0]->incfg.formats)) < 0)
121  return ret;
122 
123  map_formats = ff_make_format_list(map_fmts);
124  if ((ret = ff_formats_ref(map_formats, &ctx->inputs[1]->outcfg.formats)) < 0)
125  return ret;
126  return ff_formats_ref(map_formats, &ctx->inputs[2]->outcfg.formats);
127 }
128 
129 /**
130  * remap_planar algorithm expects planes of same size
131  * pixels are copied from source to target using :
132  * Target_frame[y][x] = Source_frame[ ymap[y][x] ][ [xmap[y][x] ];
133  */
134 #define DEFINE_REMAP_PLANAR_FUNC(name, bits, div) \
135 static int remap_planar##bits##_##name##_slice(AVFilterContext *ctx, void *arg, \
136  int jobnr, int nb_jobs) \
137 { \
138  RemapContext *s = ctx->priv; \
139  const ThreadData *td = arg; \
140  const AVFrame *in = td->in; \
141  const AVFrame *xin = td->xin; \
142  const AVFrame *yin = td->yin; \
143  const AVFrame *out = td->out; \
144  const int slice_start = (out->height * jobnr ) / nb_jobs; \
145  const int slice_end = (out->height * (jobnr+1)) / nb_jobs; \
146  const int xlinesize = xin->linesize[0] / 2; \
147  const int ylinesize = yin->linesize[0] / 2; \
148  int x , y, plane; \
149  \
150  for (plane = 0; plane < td->nb_planes ; plane++) { \
151  const int dlinesize = out->linesize[plane] / div; \
152  const uint##bits##_t *src = (const uint##bits##_t *)in->data[plane]; \
153  uint##bits##_t *dst = (uint##bits##_t *)out->data[plane] + slice_start * dlinesize; \
154  const int slinesize = in->linesize[plane] / div; \
155  const uint16_t *xmap = (const uint16_t *)xin->data[0] + slice_start * xlinesize; \
156  const uint16_t *ymap = (const uint16_t *)yin->data[0] + slice_start * ylinesize; \
157  const int color = s->fill_color[plane]; \
158  \
159  for (y = slice_start; y < slice_end; y++) { \
160  for (x = 0; x < out->width; x++) { \
161  if (ymap[x] < in->height && xmap[x] < in->width) { \
162  dst[x] = src[ymap[x] * slinesize + xmap[x]]; \
163  } else { \
164  dst[x] = color; \
165  } \
166  } \
167  dst += dlinesize; \
168  xmap += xlinesize; \
169  ymap += ylinesize; \
170  } \
171  } \
172  \
173  return 0; \
174 }
175 
176 DEFINE_REMAP_PLANAR_FUNC(nearest, 8, 1)
177 DEFINE_REMAP_PLANAR_FUNC(nearest, 16, 2)
178 
179 /**
180  * remap_packed algorithm expects pixels with both padded bits (step) and
181  * number of components correctly set.
182  * pixels are copied from source to target using :
183  * Target_frame[y][x] = Source_frame[ ymap[y][x] ][ [xmap[y][x] ];
184  */
185 #define DEFINE_REMAP_PACKED_FUNC(name, bits, div) \
186 static int remap_packed##bits##_##name##_slice(AVFilterContext *ctx, void *arg, \
187  int jobnr, int nb_jobs) \
188 { \
189  RemapContext *s = ctx->priv; \
190  const ThreadData *td = arg; \
191  const AVFrame *in = td->in; \
192  const AVFrame *xin = td->xin; \
193  const AVFrame *yin = td->yin; \
194  const AVFrame *out = td->out; \
195  const int slice_start = (out->height * jobnr ) / nb_jobs; \
196  const int slice_end = (out->height * (jobnr+1)) / nb_jobs; \
197  const int dlinesize = out->linesize[0] / div; \
198  const int slinesize = in->linesize[0] / div; \
199  const int xlinesize = xin->linesize[0] / 2; \
200  const int ylinesize = yin->linesize[0] / 2; \
201  const uint##bits##_t *src = (const uint##bits##_t *)in->data[0]; \
202  uint##bits##_t *dst = (uint##bits##_t *)out->data[0] + slice_start * dlinesize; \
203  const uint16_t *xmap = (const uint16_t *)xin->data[0] + slice_start * xlinesize; \
204  const uint16_t *ymap = (const uint16_t *)yin->data[0] + slice_start * ylinesize; \
205  const int step = td->step / div; \
206  int c, x, y; \
207  \
208  for (y = slice_start; y < slice_end; y++) { \
209  for (x = 0; x < out->width; x++) { \
210  for (c = 0; c < td->nb_components; c++) { \
211  if (ymap[x] < in->height && xmap[x] < in->width) { \
212  dst[x * step + c] = src[ymap[x] * slinesize + xmap[x] * step + c]; \
213  } else { \
214  dst[x * step + c] = s->fill_color[c]; \
215  } \
216  } \
217  } \
218  dst += dlinesize; \
219  xmap += xlinesize; \
220  ymap += ylinesize; \
221  } \
222  \
223  return 0; \
224 }
225 
226 DEFINE_REMAP_PACKED_FUNC(nearest, 8, 1)
227 DEFINE_REMAP_PACKED_FUNC(nearest, 16, 2)
228 
230 {
231  AVFilterContext *ctx = inlink->dst;
232  RemapContext *s = ctx->priv;
234  int depth = desc->comp[0].depth;
235  int is_rgb = !!(desc->flags & AV_PIX_FMT_FLAG_RGB);
236  int factor = 1 << (depth - 8);
237  uint8_t rgba_map[4];
238 
239  ff_fill_rgba_map(rgba_map, inlink->format);
240  s->nb_planes = av_pix_fmt_count_planes(inlink->format);
241  s->nb_components = desc->nb_components;
242 
243  if (is_rgb) {
244  s->fill_color[rgba_map[0]] = s->fill_rgba[0] * factor;
245  s->fill_color[rgba_map[1]] = s->fill_rgba[1] * factor;
246  s->fill_color[rgba_map[2]] = s->fill_rgba[2] * factor;
247  s->fill_color[rgba_map[3]] = s->fill_rgba[3] * factor;
248  } else {
249  s->fill_color[0] = RGB_TO_Y_BT709(s->fill_rgba[0], s->fill_rgba[1], s->fill_rgba[2]) * factor;
250  s->fill_color[1] = RGB_TO_U_BT709(s->fill_rgba[0], s->fill_rgba[1], s->fill_rgba[2], 0) * factor;
251  s->fill_color[2] = RGB_TO_V_BT709(s->fill_rgba[0], s->fill_rgba[1], s->fill_rgba[2], 0) * factor;
252  s->fill_color[3] = s->fill_rgba[3] * factor;
253  }
254 
255  if (depth == 8) {
256  if (s->nb_planes > 1 || s->nb_components == 1) {
257  s->remap_slice = remap_planar8_nearest_slice;
258  } else {
259  s->remap_slice = remap_packed8_nearest_slice;
260  }
261  } else {
262  if (s->nb_planes > 1 || s->nb_components == 1) {
263  s->remap_slice = remap_planar16_nearest_slice;
264  } else {
265  s->remap_slice = remap_packed16_nearest_slice;
266  }
267  }
268 
269  s->step = av_get_padded_bits_per_pixel(desc) >> 3;
270  return 0;
271 }
272 
274 {
275  AVFilterContext *ctx = fs->parent;
276  RemapContext *s = fs->opaque;
277  AVFilterLink *outlink = ctx->outputs[0];
278  AVFrame *out, *in, *xpic, *ypic;
279  int ret;
280 
281  if ((ret = ff_framesync_get_frame(&s->fs, 0, &in, 0)) < 0 ||
282  (ret = ff_framesync_get_frame(&s->fs, 1, &xpic, 0)) < 0 ||
283  (ret = ff_framesync_get_frame(&s->fs, 2, &ypic, 0)) < 0)
284  return ret;
285 
286  {
287  ThreadData td;
288 
289  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
290  if (!out)
291  return AVERROR(ENOMEM);
293 
294  td.in = in;
295  td.xin = xpic;
296  td.yin = ypic;
297  td.out = out;
298  td.nb_planes = s->nb_planes;
299  td.nb_components = s->nb_components;
300  td.step = s->step;
301  ff_filter_execute(ctx, s->remap_slice, &td, NULL,
302  FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
303  }
304  out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
305 
306  return ff_filter_frame(outlink, out);
307 }
308 
309 static int config_output(AVFilterLink *outlink)
310 {
311  AVFilterContext *ctx = outlink->src;
312  RemapContext *s = ctx->priv;
313  AVFilterLink *srclink = ctx->inputs[0];
314  AVFilterLink *xlink = ctx->inputs[1];
315  AVFilterLink *ylink = ctx->inputs[2];
316  FFFrameSyncIn *in;
317  int ret;
318 
319  if (xlink->w != ylink->w || xlink->h != ylink->h) {
320  av_log(ctx, AV_LOG_ERROR, "Second input link %s parameters "
321  "(size %dx%d) do not match the corresponding "
322  "third input link %s parameters (%dx%d)\n",
323  ctx->input_pads[1].name, xlink->w, xlink->h,
324  ctx->input_pads[2].name, ylink->w, ylink->h);
325  return AVERROR(EINVAL);
326  }
327 
328  outlink->w = xlink->w;
329  outlink->h = xlink->h;
330  outlink->sample_aspect_ratio = srclink->sample_aspect_ratio;
331  outlink->frame_rate = srclink->frame_rate;
332 
333  ret = ff_framesync_init(&s->fs, ctx, 3);
334  if (ret < 0)
335  return ret;
336 
337  in = s->fs.in;
338  in[0].time_base = srclink->time_base;
339  in[1].time_base = xlink->time_base;
340  in[2].time_base = ylink->time_base;
341  in[0].sync = 2;
342  in[0].before = EXT_STOP;
343  in[0].after = EXT_STOP;
344  in[1].sync = 1;
345  in[1].before = EXT_NULL;
346  in[1].after = EXT_INFINITY;
347  in[2].sync = 1;
348  in[2].before = EXT_NULL;
349  in[2].after = EXT_INFINITY;
350  s->fs.opaque = s;
351  s->fs.on_event = process_frame;
352 
353  ret = ff_framesync_configure(&s->fs);
354  outlink->time_base = s->fs.time_base;
355 
356  return ret;
357 }
358 
360 {
361  RemapContext *s = ctx->priv;
362  return ff_framesync_activate(&s->fs);
363 }
364 
366 {
367  RemapContext *s = ctx->priv;
368 
369  ff_framesync_uninit(&s->fs);
370 }
371 
372 static const AVFilterPad remap_inputs[] = {
373  {
374  .name = "source",
375  .type = AVMEDIA_TYPE_VIDEO,
376  .config_props = config_input,
377  },
378  {
379  .name = "xmap",
380  .type = AVMEDIA_TYPE_VIDEO,
381  },
382  {
383  .name = "ymap",
384  .type = AVMEDIA_TYPE_VIDEO,
385  },
386 };
387 
388 static const AVFilterPad remap_outputs[] = {
389  {
390  .name = "default",
391  .type = AVMEDIA_TYPE_VIDEO,
392  .config_props = config_output,
393  },
394 };
395 
397  .name = "remap",
398  .description = NULL_IF_CONFIG_SMALL("Remap pixels."),
399  .priv_size = sizeof(RemapContext),
400  .uninit = uninit,
401  .activate = activate,
405  .priv_class = &remap_class,
407 };
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:112
AV_PIX_FMT_GBRAP16
#define AV_PIX_FMT_GBRAP16
Definition: pixfmt.h:501
FFFrameSyncIn::time_base
AVRational time_base
Time base for the incoming frames.
Definition: framesync.h:117
ff_framesync_configure
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition: framesync.c:134
td
#define td
Definition: regdef.h:70
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
ff_make_format_list
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:435
ff_framesync_uninit
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition: framesync.c:304
out
FILE * out
Definition: movenc.c:54
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1018
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2962
ff_framesync_get_frame
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
Definition: framesync.c:267
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
RemapContext::remap_slice
int(* remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_remap.c:62
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:375
pixdesc.h
config_output
static int config_output(AVFilterLink *outlink)
Definition: vf_remap.c:309
AVOption
AVOption.
Definition: opt.h:346
FILTER_QUERY_FUNC
#define FILTER_QUERY_FUNC(func)
Definition: internal.h:159
AV_PIX_FMT_BGR24
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:76
AV_PIX_FMT_BGRA
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:102
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:170
FFFrameSync
Frame sync structure.
Definition: framesync.h:168
RemapContext::fs
FFFrameSync fs
Definition: vf_remap.c:60
EXT_INFINITY
@ EXT_INFINITY
Extend the frame to infinity.
Definition: framesync.h:75
ThreadData::out
AVFrame * out
Definition: af_adeclick.c:526
ThreadData::xin
AVFrame * xin
Definition: vf_displace.c:77
video.h
ThreadData::in
AVFrame * in
Definition: af_adecorrelate.c:153
AV_PIX_FMT_GRAY9
#define AV_PIX_FMT_GRAY9
Definition: pixfmt.h:458
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
formats.h
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3002
EXT_STOP
@ EXT_STOP
Completely stop all streams with this one.
Definition: framesync.h:65
AV_PIX_FMT_GBRP14
#define AV_PIX_FMT_GBRP14
Definition: pixfmt.h:496
AV_PIX_FMT_GBRAP
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:212
AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:494
AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUVA444P16
Definition: pixfmt.h:523
FFFrameSyncIn
Input stream structure.
Definition: framesync.h:102
EXT_NULL
@ EXT_NULL
Ignore this stream and continue processing the other ones.
Definition: framesync.h:70
activate
static int activate(AVFilterContext *ctx)
Definition: vf_remap.c:359
AV_PIX_FMT_GRAY16
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:462
FFFrameSyncIn::sync
unsigned sync
Synchronization level: frames on input at the highest sync level will generate output frame events.
Definition: framesync.h:160
ThreadData::nb_planes
int nb_planes
Definition: vf_remap.c:80
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:33
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:481
RemapContext::format
int format
Definition: vf_remap.c:52
OFFSET
#define OFFSET(x)
Definition: vf_remap.c:65
colorspace.h
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
AV_PIX_FMT_GBRAP10
#define AV_PIX_FMT_GBRAP10
Definition: pixfmt.h:498
RGB_TO_Y_BT709
#define RGB_TO_Y_BT709(r, g, b)
Definition: vf_pseudocolor.c:674
s
#define s(width, name)
Definition: cbs_vp9.c:198
AV_PIX_FMT_GBRAP12
#define AV_PIX_FMT_GBRAP12
Definition: pixfmt.h:499
AV_PIX_FMT_YUV444P16
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:491
format
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample format(the sample packing is implied by the sample format) and sample rate. The lists are not just lists
RGB_TO_U_BT709
#define RGB_TO_U_BT709(r1, g1, b1, max)
Definition: vf_pseudocolor.c:678
ff_formats_ref
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add *ref as a new reference to formats.
Definition: formats.c:678
process_frame
static int process_frame(FFFrameSync *fs)
Definition: vf_remap.c:273
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:304
AV_PIX_FMT_YUVA444P12
#define AV_PIX_FMT_YUVA444P12
Definition: pixfmt.h:520
RemapContext::fill_rgba
uint8_t fill_rgba[4]
Definition: vf_remap.c:57
ctx
AVFormatContext * ctx
Definition: movenc.c:48
AV_PIX_FMT_GRAY14
#define AV_PIX_FMT_GRAY14
Definition: pixfmt.h:461
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
gray_pix_fmts
static enum AVPixelFormat gray_pix_fmts[]
Definition: jpeg2000dec.c:176
AV_PIX_FMT_RGBA
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:100
AV_PIX_FMT_YUVJ444P
@ 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
arg
const char * arg
Definition: jacosubdec.c:67
AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GRAY10
Definition: pixfmt.h:459
remap_options
static const AVOption remap_options[]
Definition: vf_remap.c:68
ThreadData::yin
AVFrame * yin
Definition: vf_displace.c:77
AV_PIX_FMT_GBRP16
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:497
AV_PIX_FMT_RGBA64
#define AV_PIX_FMT_RGBA64
Definition: pixfmt.h:468
DEFINE_REMAP_PACKED_FUNC
#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:185
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
AV_PIX_FMT_BGR48
#define AV_PIX_FMT_BGR48
Definition: pixfmt.h:469
NULL
#define NULL
Definition: coverity.c:32
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:709
fs
#define fs(width, name, subs,...)
Definition: cbs_vp9.c:200
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_remap.c:229
AV_OPT_TYPE_COLOR
@ AV_OPT_TYPE_COLOR
Definition: opt.h:250
AV_PIX_FMT_GRAY8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:81
AV_PIX_FMT_GBRP9
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:493
AV_PIX_FMT_ABGR
@ AV_PIX_FMT_ABGR
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:101
RemapContext::fill_color
int fill_color[4]
Definition: vf_remap.c:58
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_remap.c:365
ThreadData::step
int step
Definition: vf_remap.c:82
RGB_TO_V_BT709
#define RGB_TO_V_BT709(r1, g1, b1, max)
Definition: vf_pseudocolor.c:682
AV_PIX_FMT_RGB24
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:75
RemapContext
Definition: vf_remap.c:50
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:106
av_get_padded_bits_per_pixel
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:2927
AV_PIX_FMT_FLAG_RGB
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
Definition: pixdesc.h:136
AV_PIX_FMT_RGB48
#define AV_PIX_FMT_RGB48
Definition: pixfmt.h:464
remap_outputs
static const AVFilterPad remap_outputs[]
Definition: vf_remap.c:388
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:485
remap
static const int remap[16]
Definition: msvideo1enc.c:65
AV_PIX_FMT_YUVA444P
@ 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_YUVA444P10
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:518
internal.h
AV_PIX_FMT_ARGB
@ AV_PIX_FMT_ARGB
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:99
AV_PIX_FMT_BGRA64
#define AV_PIX_FMT_BGRA64
Definition: pixfmt.h:473
remap_inputs
static const AVFilterPad remap_inputs[]
Definition: vf_remap.c:372
AV_PIX_FMT_GBRP12
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:495
ff_filter_get_nb_threads
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:825
ThreadData
Used for passing data between threads.
Definition: dsddec.c:69
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
RemapContext::nb_components
int nb_components
Definition: vf_remap.c:55
FLAGS
#define FLAGS
Definition: vf_remap.c:66
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:39
AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:477
RemapContext::step
int step
Definition: vf_remap.c:56
AVFilter
Filter definition.
Definition: avfilter.h:166
ret
ret
Definition: filter_design.txt:187
AV_PIX_FMT_YUVA444P9
#define AV_PIX_FMT_YUVA444P9
Definition: pixfmt.h:515
ff_framesync_init
int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
Initialize a frame sync structure.
Definition: framesync.c:86
FFFrameSyncIn::before
enum FFFrameSyncExtMode before
Extrapolation mode for timestamps before the first frame.
Definition: framesync.h:107
framesync.h
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
avfilter.h
RemapContext::nb_planes
int nb_planes
Definition: vf_remap.c:54
AV_PIX_FMT_YUV444P
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:78
AVFilterContext
An instance of a filter.
Definition: avfilter.h:407
factor
static const int factor[16]
Definition: vf_pp7.c:78
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(remap)
AV_PIX_FMT_GBRP
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:165
AVFILTER_FLAG_SLICE_THREADS
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:117
desc
const char * desc
Definition: libsvtav1.c:75
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
ThreadData::nb_components
int nb_components
Definition: vf_identity.c:91
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
ff_fill_rgba_map
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
Definition: drawutils.c:35
ff_vf_remap
const AVFilter ff_vf_remap
Definition: vf_remap.c:396
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_remap.c:85
imgutils.h
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
FFFrameSyncIn::after
enum FFFrameSyncExtMode after
Extrapolation mode for timestamps after the last frame.
Definition: framesync.h:112
AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:488
ff_framesync_activate
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
Definition: framesync.c:355
AV_PIX_FMT_GRAY12
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:460
drawutils.h
ff_filter_execute
static av_always_inline int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
Definition: internal.h:134
int
int
Definition: ffmpeg_filter.c:410
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:244
DEFINE_REMAP_PLANAR_FUNC
#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:134