FFmpeg
vf_negate.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "libavutil/attributes.h"
20 #include "libavutil/common.h"
21 #include "libavutil/imgutils.h"
22 #include "libavutil/opt.h"
23 #include "libavutil/pixdesc.h"
24 #include "avfilter.h"
25 #include "drawutils.h"
26 #include "formats.h"
27 #include "internal.h"
28 #include "video.h"
29 
30 #define COMP_R 0x01
31 #define COMP_G 0x02
32 #define COMP_B 0x04
33 #define COMP_A 0x08
34 #define COMP_Y 0x10
35 #define COMP_U 0x20
36 #define COMP_V 0x40
37 
38 typedef struct ThreadData {
39  AVFrame *in;
40  AVFrame *out;
41 } ThreadData;
42 
43 typedef struct NegateContext {
44  const AVClass *class;
46  int max;
49  int planes;
50  int step;
51  int nb_planes;
52  int linesize[4];
53  int width[4];
54  int height[4];
55  uint8_t rgba_map[4];
56 
57  void (*negate)(const uint8_t *src, uint8_t *dst,
58  ptrdiff_t slinesize, ptrdiff_t dlinesize,
59  int w, int h, int max, int step,
60  int components);
62 
63 #define OFFSET(x) offsetof(NegateContext, x)
64 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
65 
66 static const AVOption negate_options[] = {
67  { "components", "set components to negate", OFFSET(requested_components), AV_OPT_TYPE_FLAGS, {.i64=0x77}, 1, 0xff, FLAGS, "flags"},
68  { "y", "set luma component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_Y}, 0, 0, FLAGS, "flags"},
69  { "u", "set u component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_U}, 0, 0, FLAGS, "flags"},
70  { "v", "set v component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_V}, 0, 0, FLAGS, "flags"},
71  { "r", "set red component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_R}, 0, 0, FLAGS, "flags"},
72  { "g", "set green component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_G}, 0, 0, FLAGS, "flags"},
73  { "b", "set blue component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_B}, 0, 0, FLAGS, "flags"},
74  { "a", "set alpha component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_A}, 0, 0, FLAGS, "flags"},
75  { "negate_alpha", NULL, OFFSET(negate_alpha), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
76  { NULL }
77 };
78 
79 AVFILTER_DEFINE_CLASS(negate);
80 
81 static const enum AVPixelFormat pix_fmts[] = {
107 };
108 
109 static void negate8(const uint8_t *src, uint8_t *dst,
110  ptrdiff_t slinesize, ptrdiff_t dlinesize,
111  int w, int h, int max, int step,
112  int components)
113 {
114  for (int y = 0; y < h; y++) {
115  for (int x = 0; x < w; x++)
116  dst[x] = 255 - src[x];
117 
118  dst += dlinesize;
119  src += slinesize;
120  }
121 }
122 
123 static void negate_packed8(const uint8_t *ssrc, uint8_t *ddst,
124  ptrdiff_t slinesize, ptrdiff_t dlinesize,
125  int w, int h, int max, int step,
126  int components)
127 {
128  for (int y = 0; y < h; y++) {
129  const uint8_t *src = ssrc + y * slinesize;
130  uint8_t *dst = ddst + y * dlinesize;
131 
132  for (int x = 0; x < w; x++) {
133  switch (step) {
134  case 4: dst[3] = components & 8 ? 255 - src[3] : src[3];
135  case 3: dst[2] = components & 4 ? 255 - src[2] : src[2];
136  case 2: dst[1] = components & 2 ? 255 - src[1] : src[1];
137  default: dst[0] = components & 1 ? 255 - src[0] : src[0];
138  }
139 
140  src += step;
141  dst += step;
142  }
143  }
144 }
145 
146 static void negate16(const uint8_t *ssrc, uint8_t *ddst,
147  ptrdiff_t slinesize, ptrdiff_t dlinesize,
148  int w, int h, int max, int step,
149  int components)
150 {
151  const uint16_t *src = (const uint16_t *)ssrc;
152  uint16_t *dst = (uint16_t *)ddst;
153 
154  dlinesize /= 2;
155  slinesize /= 2;
156 
157  for (int y = 0; y < h; y++) {
158  for (int x = 0; x < w; x++)
159  dst[x] = max - src[x];
160 
161  dst += dlinesize;
162  src += slinesize;
163  }
164 }
165 
166 static void negate_packed16(const uint8_t *ssrc, uint8_t *ddst,
167  ptrdiff_t slinesize, ptrdiff_t dlinesize,
168  int w, int h, int max, int step,
169  int components)
170 {
171  for (int y = 0; y < h; y++) {
172  const uint16_t *src = (const uint16_t *)(ssrc + y * slinesize);
173  uint16_t *dst = (uint16_t *)(ddst + y * dlinesize);
174 
175  for (int x = 0; x < w; x++) {
176  switch (step) {
177  case 4: dst[3] = components & 8 ? max - src[3] : src[3];
178  case 3: dst[2] = components & 4 ? max - src[2] : src[2];
179  case 2: dst[1] = components & 2 ? max - src[1] : src[1];
180  default: dst[0] = components & 1 ? max - src[0] : src[0];
181  }
182 
183  src += step;
184  dst += step;
185  }
186  }
187 }
188 
190 {
191  AVFilterContext *ctx = inlink->dst;
192  NegateContext *s = ctx->priv;
194  int depth, vsub, hsub, ret, is_packed;
195  int comp_avail;
196 
197  s->planes = s->negate_alpha ? 0xF : 0x7;
198  is_packed = !(desc->flags & AV_PIX_FMT_FLAG_PLANAR) &&
199  (desc->nb_components > 1);
200  if (s->requested_components != 0x77) {
201  comp_avail = ((desc->flags & AV_PIX_FMT_FLAG_RGB) ? COMP_R|COMP_G|COMP_B :
202  COMP_Y |
203  ((desc->nb_components > 2) ? COMP_U|COMP_V : 0)) |
204  ((desc->flags & AV_PIX_FMT_FLAG_ALPHA) ? COMP_A : 0);
205  if (s->requested_components & ~comp_avail) {
206  av_log(ctx, AV_LOG_ERROR, "Requested components not available.\n");
207  return AVERROR(EINVAL);
208  }
209 
210  s->planes = 0;
211  if (!(desc->flags & AV_PIX_FMT_FLAG_RGB)) {
212  if (s->requested_components & COMP_Y)
213  s->planes |= 1;
214  if (s->requested_components & COMP_U)
215  s->planes |= 2;
216  if (s->requested_components & COMP_V)
217  s->planes |= 4;
218  if (s->requested_components & COMP_A)
219  s->planes |= 8;
220  } else {
221  if (s->requested_components & COMP_R)
222  s->planes |= 4;
223  if (s->requested_components & COMP_G)
224  s->planes |= 1;
225  if (s->requested_components & COMP_B)
226  s->planes |= 2;
227  if (s->requested_components & COMP_A)
228  s->planes |= 8;
229  }
230  }
231  s->nb_planes = av_pix_fmt_count_planes(inlink->format);
232 
233  s->components = 0;
234  if (desc->flags & AV_PIX_FMT_FLAG_RGB) {
235  ff_fill_rgba_map(s->rgba_map, inlink->format);
236 
237  if (s->requested_components & COMP_R)
238  s->components |= 1 << s->rgba_map[0];
239  if (s->requested_components & COMP_G)
240  s->components |= 1 << s->rgba_map[1];
241  if (s->requested_components & COMP_B)
242  s->components |= 1 << s->rgba_map[2];
243  if (s->requested_components & COMP_A)
244  s->components |= 1 << s->rgba_map[3];
245  }
246 
247  if ((ret = av_image_fill_linesizes(s->linesize, inlink->format, inlink->w)) < 0)
248  return ret;
249 
250  depth = desc->comp[0].depth;
251  hsub = desc->log2_chroma_w;
252  vsub = desc->log2_chroma_h;
253  s->height[1] = s->height[2] = AV_CEIL_RSHIFT(inlink->h, vsub);
254  s->height[0] = s->height[3] = inlink->h;
255  s->width[1] = s->width[2] = AV_CEIL_RSHIFT(inlink->w, hsub);
256  s->width[0] = s->width[3] = inlink->w;
257 
258  s->negate = depth <= 8 ? negate8 : negate16;
259  if (is_packed) {
260  s->negate = depth <= 8 ? negate_packed8 : negate_packed16;
261  s->planes = 1;
262  }
263  s->max = (1 << depth) - 1;
264  s->step = av_get_bits_per_pixel(desc) >> 3;
265  if (depth > 8)
266  s->step = s->step >> 1;
267 
268  return 0;
269 }
270 
271 static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
272 {
273  NegateContext *s = ctx->priv;
274  ThreadData *td = arg;
275  AVFrame *in = td->in;
276  AVFrame *out = td->out;
277 
278  for (int p = 0; p < s->nb_planes; p++) {
279  const int h = s->height[p];
280  const int slice_start = (h * jobnr) / nb_jobs;
281  const int slice_end = (h * (jobnr+1)) / nb_jobs;
282 
283  if (!((1 << p) & s->planes)) {
284  if (out != in)
285  av_image_copy_plane(out->data[p] + slice_start * out->linesize[p],
286  out->linesize[p],
287  in->data[p] + slice_start * in->linesize[p],
288  in->linesize[p],
289  s->linesize[p], slice_end - slice_start);
290  continue;
291  }
292 
293  s->negate(in->data[p] + slice_start * in->linesize[p],
294  out->data[p] + slice_start * out->linesize[p],
295  in->linesize[p], out->linesize[p],
296  s->width[p], slice_end - slice_start,
297  s->max, s->step, s->components);
298  }
299 
300  return 0;
301 }
302 
304 {
305  AVFilterContext *ctx = inlink->dst;
306  NegateContext *s = ctx->priv;
307  AVFilterLink *outlink = ctx->outputs[0];
308  ThreadData td;
309  AVFrame *out;
310 
311  if (av_frame_is_writable(in)) {
312  out = in;
313  } else {
314  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
315  if (!out) {
316  av_frame_free(&in);
317  return AVERROR(ENOMEM);
318  }
320  }
321 
322  td.out = out;
323  td.in = in;
325  FFMIN(s->height[2], ff_filter_get_nb_threads(ctx)));
326  if (out != in)
327  av_frame_free(&in);
328 
329  return ff_filter_frame(outlink, out);
330 }
331 
332 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
333  char *res, int res_len, int flags)
334 {
335  NegateContext *s = ctx->priv;
336  int old_planes = s->planes;
337  int ret;
338 
339  ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
340  if (ret < 0)
341  return ret;
342 
343  ret = config_input(ctx->inputs[0]);
344  if (ret < 0)
345  s->planes = old_planes;
346  return ret;
347 }
348 
349 static const AVFilterPad inputs[] = {
350  {
351  .name = "default",
352  .type = AVMEDIA_TYPE_VIDEO,
353  .filter_frame = filter_frame,
354  .config_props = config_input,
355  },
356 };
357 
358 static const AVFilterPad outputs[] = {
359  {
360  .name = "default",
361  .type = AVMEDIA_TYPE_VIDEO,
362  },
363 };
364 
366  .name = "negate",
367  .description = NULL_IF_CONFIG_SMALL("Negate input video."),
368  .priv_size = sizeof(NegateContext),
369  .priv_class = &negate_class,
374  .process_command = process_command,
375 };
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:98
AV_PIX_FMT_YUVA422P16
#define AV_PIX_FMT_YUVA422P16
Definition: pixfmt.h:447
AV_PIX_FMT_GBRAP16
#define AV_PIX_FMT_GBRAP16
Definition: pixfmt.h:426
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(negate)
COMP_B
#define COMP_B
Definition: vf_negate.c:32
td
#define td
Definition: regdef.h:70
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
COMP_Y
#define COMP_Y
Definition: vf_negate.c:34
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
out
FILE * out
Definition: movenc.c:54
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_negate.c:189
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:2660
NegateContext::rgba_map
uint8_t rgba_map[4]
Definition: vf_negate.c:55
FILTER_PIXFMTS_ARRAY
#define FILTER_PIXFMTS_ARRAY(array)
Definition: internal.h:171
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
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:109
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:317
pixdesc.h
step
trying all byte sequences megabyte in length and selecting the best looking sequence will yield cases to try But a word about which is also called distortion Distortion can be quantified by almost any quality measurement one chooses the sum of squared differences is used but more complex methods that consider psychovisual effects can be used as well It makes no difference in this discussion First step
Definition: rate_distortion.txt:58
AV_PIX_FMT_YUVA420P16
#define AV_PIX_FMT_YUVA420P16
Definition: pixfmt.h:446
w
uint8_t w
Definition: llviddspenc.c:38
AVOption
AVOption.
Definition: opt.h:247
NegateContext::requested_components
int requested_components
Definition: vf_negate.c:47
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:404
AV_PIX_FMT_BGR24
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:69
AV_PIX_FMT_BGRA
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:95
av_get_bits_per_pixel
int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel used by the pixel format described by pixdesc.
Definition: pixdesc.c:2612
AV_PIX_FMT_YUV440P
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:99
max
#define max(a, b)
Definition: cuda_runtime.h:33
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:169
NegateContext::negate_alpha
int negate_alpha
Definition: vf_negate.c:45
ThreadData::out
AVFrame * out
Definition: af_adeclick.c:473
video.h
outputs
static const AVFilterPad outputs[]
Definition: vf_negate.c:358
AV_PIX_FMT_GRAY9
#define AV_PIX_FMT_GRAY9
Definition: pixfmt.h:384
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:338
av_image_copy_plane
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
hsub
static void hsub(htype *dst, const htype *src, int bins)
Definition: vf_median.c:74
formats.h
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2700
AV_PIX_FMT_GBRP14
#define AV_PIX_FMT_GBRP14
Definition: pixfmt.h:422
AV_PIX_FMT_GBRAP
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:205
NegateContext::planes
int planes
Definition: vf_negate.c:49
AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:420
AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUVA444P16
Definition: pixfmt.h:448
FLAGS
#define FLAGS
Definition: vf_negate.c:64
AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:402
ff_vf_negate
const AVFilter ff_vf_negate
Definition: vf_negate.c:365
AV_PIX_FMT_GRAY16
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:388
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:50
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:407
NegateContext::components
int components
Definition: vf_negate.c:48
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
AV_PIX_FMT_YUV422P16
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:416
AV_PIX_FMT_YUVJ422P
@ 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:79
AV_PIX_FMT_GBRAP10
#define AV_PIX_FMT_GBRAP10
Definition: pixfmt.h:424
av_image_fill_linesizes
int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width)
Fill plane linesizes for an image with pixel format pix_fmt and width width.
Definition: imgutils.c:89
s
#define s(width, name)
Definition: cbs_vp9.c:257
AV_PIX_FMT_GBRAP12
#define AV_PIX_FMT_GBRAP12
Definition: pixfmt.h:425
AV_PIX_FMT_YUVA420P
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:101
AV_PIX_FMT_YUV444P16
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:417
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:51
slice_end
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
Definition: mpeg12dec.c:2042
COMP_U
#define COMP_U
Definition: vf_negate.c:35
negate16
static void negate16(const uint8_t *ssrc, uint8_t *ddst, ptrdiff_t slinesize, ptrdiff_t dlinesize, int w, int h, int max, int step, int components)
Definition: vf_negate.c:146
NegateContext::negate
void(* negate)(const uint8_t *src, uint8_t *dst, ptrdiff_t slinesize, ptrdiff_t dlinesize, int w, int h, int max, int step, int components)
Definition: vf_negate.c:57
AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:401
AV_PIX_FMT_YUV420P16
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:415
AV_PIX_FMT_FLAG_ALPHA
#define AV_PIX_FMT_FLAG_ALPHA
The pixel format has an alpha channel.
Definition: pixdesc.h:147
ctx
AVFormatContext * ctx
Definition: movenc.c:48
AV_PIX_FMT_GRAY14
#define AV_PIX_FMT_GRAY14
Definition: pixfmt.h:387
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:66
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:191
AV_PIX_FMT_RGBA
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:93
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:80
arg
const char * arg
Definition: jacosubdec.c:67
NegateContext::nb_planes
int nb_planes
Definition: vf_negate.c:51
AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GRAY10
Definition: pixfmt.h:385
AV_PIX_FMT_GBRP16
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:423
NegateContext::width
int width[4]
Definition: vf_negate.c:53
AV_PIX_FMT_RGBA64
#define AV_PIX_FMT_RGBA64
Definition: pixfmt.h:394
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:395
NULL
#define NULL
Definition: coverity.c:32
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_negate.c:303
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:537
AV_PIX_FMT_YUVJ420P
@ 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:78
src
#define src
Definition: vp8dsp.c:255
AV_PIX_FMT_YUV440P10
#define AV_PIX_FMT_YUV440P10
Definition: pixfmt.h:406
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:405
AV_PIX_FMT_GRAY8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:74
NegateContext::height
int height[4]
Definition: vf_negate.c:54
AV_PIX_FMT_GBRP9
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:419
AV_PIX_FMT_ABGR
@ AV_PIX_FMT_ABGR
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:94
AV_PIX_FMT_RGB24
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:68
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:117
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_YUV422P12
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:409
AV_PIX_FMT_RGB48
#define AV_PIX_FMT_RGB48
Definition: pixfmt.h:390
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: vf_negate.c:332
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: vf_negate.c:81
negate_packed16
static void negate_packed16(const uint8_t *ssrc, uint8_t *ddst, ptrdiff_t slinesize, ptrdiff_t dlinesize, int w, int h, int max, int step, int components)
Definition: vf_negate.c:166
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:411
av_frame_is_writable
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:473
ff_filter_process_command
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:882
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:167
attributes.h
COMP_V
#define COMP_V
Definition: vf_negate.c:36
NegateContext::linesize
int linesize[4]
Definition: vf_negate.c:52
internal.h
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#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:146
AV_PIX_FMT_ARGB
@ AV_PIX_FMT_ARGB
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:92
AV_PIX_FMT_BGRA64
#define AV_PIX_FMT_BGRA64
Definition: pixfmt.h:399
AV_PIX_FMT_GBRP12
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:421
common.h
ff_filter_get_nb_threads
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:803
ThreadData
Used for passing data between threads.
Definition: dsddec.c:67
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
AV_PIX_FMT_YUVJ440P
@ 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:100
COMP_A
#define COMP_A
Definition: vf_negate.c:33
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:56
filter_slice
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_negate.c:271
AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:403
AVFilter
Filter definition.
Definition: avfilter.h:165
ret
ret
Definition: filter_design.txt:187
AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:408
AV_PIX_FMT_YUV422P14
#define AV_PIX_FMT_YUV422P14
Definition: pixfmt.h:413
negate_packed8
static void negate_packed8(const uint8_t *ssrc, uint8_t *ddst, ptrdiff_t slinesize, ptrdiff_t dlinesize, int w, int h, int max, int step, int components)
Definition: vf_negate.c:123
negate8
static void negate8(const uint8_t *src, uint8_t *dst, ptrdiff_t slinesize, ptrdiff_t dlinesize, int w, int h, int max, int step, int components)
Definition: vf_negate.c:109
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
avfilter.h
AV_PIX_FMT_FLAG_PLANAR
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
Definition: pixdesc.h:132
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:71
AVFilterContext
An instance of a filter.
Definition: avfilter.h:402
AV_PIX_FMT_GBRP
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:158
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:121
desc
const char * desc
Definition: libsvtav1.c:79
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AV_PIX_FMT_YUV422P
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:70
ThreadData::in
AVFrame * in
Definition: af_adecorrelate.c:154
NegateContext::max
int max
Definition: vf_negate.c:46
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:241
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
NegateContext
Definition: vf_negate.c:43
OFFSET
#define OFFSET(x)
Definition: vf_negate.c:63
AV_PIX_FMT_YUV411P
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:73
ff_fill_rgba_map
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
Definition: drawutils.c:34
AV_OPT_TYPE_FLAGS
@ AV_OPT_TYPE_FLAGS
Definition: opt.h:223
imgutils.h
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
AVFrame::linesize
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:362
AV_PIX_FMT_YUV410P
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:72
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
COMP_R
#define COMP_R
Definition: vf_negate.c:30
AV_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:410
h
h
Definition: vp9dsp_template.c:2038
AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:414
AV_PIX_FMT_GRAY12
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:386
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:143
COMP_G
#define COMP_G
Definition: vf_negate.c:31
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:233
negate_options
static const AVOption negate_options[]
Definition: vf_negate.c:66
AV_PIX_FMT_YUVA422P
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:166
AV_PIX_FMT_YUV420P14
#define AV_PIX_FMT_YUV420P14
Definition: pixfmt.h:412
inputs
static const AVFilterPad inputs[]
Definition: vf_negate.c:349
NegateContext::step
int step
Definition: vf_negate.c:50