FFmpeg
Loading...
Searching...
No Matches
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
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 "filters.h"
27#include "video.h"
28
29#define COMP_R 0x01
30#define COMP_G 0x02
31#define COMP_B 0x04
32#define COMP_A 0x08
33#define COMP_Y 0x10
34#define COMP_U 0x20
35#define COMP_V 0x40
36
37typedef struct ThreadData {
38 AVFrame *in;
39 AVFrame *out;
41
42typedef struct NegateContext {
43 const AVClass *class;
45 int max;
48 int planes;
49 int step;
51 int linesize[4];
52 int width[4];
53 int height[4];
54 uint8_t rgba_map[4];
55
56 void (*negate)(const uint8_t *src, uint8_t *dst,
57 ptrdiff_t slinesize, ptrdiff_t dlinesize,
58 int w, int h, int max, int step,
59 int components);
61
62#define OFFSET(x) offsetof(NegateContext, x)
63#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
64
65static const AVOption negate_options[] = {
66 { "components", "set components to negate", OFFSET(requested_components), AV_OPT_TYPE_FLAGS, {.i64=0x77}, 1, 0xff, FLAGS, .unit = "flags"},
67 { "y", "set luma component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_Y}, 0, 0, FLAGS, .unit = "flags"},
68 { "u", "set u component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_U}, 0, 0, FLAGS, .unit = "flags"},
69 { "v", "set v component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_V}, 0, 0, FLAGS, .unit = "flags"},
70 { "r", "set red component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_R}, 0, 0, FLAGS, .unit = "flags"},
71 { "g", "set green component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_G}, 0, 0, FLAGS, .unit = "flags"},
72 { "b", "set blue component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_B}, 0, 0, FLAGS, .unit = "flags"},
73 { "a", "set alpha component", 0, AV_OPT_TYPE_CONST, {.i64=COMP_A}, 0, 0, FLAGS, .unit = "flags"},
74 { "negate_alpha", NULL, OFFSET(negate_alpha), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
75 { NULL }
76};
77
79
109
110static void negate8(const uint8_t *src, uint8_t *dst,
111 ptrdiff_t slinesize, ptrdiff_t dlinesize,
112 int w, int h, int max, int step,
113 int components)
114{
115 for (int y = 0; y < h; y++) {
116 for (int x = 0; x < w; x++)
117 dst[x] = 255 - src[x];
118
119 dst += dlinesize;
120 src += slinesize;
121 }
122}
123
124static void negate_packed8(const uint8_t *ssrc, uint8_t *ddst,
125 ptrdiff_t slinesize, ptrdiff_t dlinesize,
126 int w, int h, int max, int step,
127 int components)
128{
129 for (int y = 0; y < h; y++) {
130 const uint8_t *src = ssrc + y * slinesize;
131 uint8_t *dst = ddst + y * dlinesize;
132
133 for (int x = 0; x < w; x++) {
134 switch (step) {
135 case 4: dst[3] = components & 8 ? 255 - src[3] : src[3]; av_fallthrough;
136 case 3: dst[2] = components & 4 ? 255 - src[2] : src[2]; av_fallthrough;
137 case 2: dst[1] = components & 2 ? 255 - src[1] : src[1]; av_fallthrough;
138 default: dst[0] = components & 1 ? 255 - src[0] : src[0];
139 }
140
141 src += step;
142 dst += step;
143 }
144 }
145}
146
147static void negate16(const uint8_t *ssrc, uint8_t *ddst,
148 ptrdiff_t slinesize, ptrdiff_t dlinesize,
149 int w, int h, int max, int step,
150 int components)
151{
152 const uint16_t *src = (const uint16_t *)ssrc;
153 uint16_t *dst = (uint16_t *)ddst;
154
155 dlinesize /= 2;
156 slinesize /= 2;
157
158 for (int y = 0; y < h; y++) {
159 for (int x = 0; x < w; x++)
160 dst[x] = max - src[x];
161
162 dst += dlinesize;
163 src += slinesize;
164 }
165}
166
167static void negate_packed16(const uint8_t *ssrc, uint8_t *ddst,
168 ptrdiff_t slinesize, ptrdiff_t dlinesize,
169 int w, int h, int max, int step,
170 int components)
171{
172 for (int y = 0; y < h; y++) {
173 const uint16_t *src = (const uint16_t *)(ssrc + y * slinesize);
174 uint16_t *dst = (uint16_t *)(ddst + y * dlinesize);
175
176 for (int x = 0; x < w; x++) {
177 switch (step) {
178 case 4: dst[3] = components & 8 ? max - src[3] : src[3]; av_fallthrough;
179 case 3: dst[2] = components & 4 ? max - src[2] : src[2]; av_fallthrough;
180 case 2: dst[1] = components & 2 ? max - src[1] : src[1]; av_fallthrough;
181 default: dst[0] = components & 1 ? max - src[0] : src[0];
182 }
183
184 src += step;
185 dst += step;
186 }
187 }
188}
189
190static int config_input(AVFilterLink *inlink)
191{
192 AVFilterContext *ctx = inlink->dst;
193 NegateContext *s = ctx->priv;
195 int depth, vsub, hsub, ret, is_packed;
196 int comp_avail;
197
198 s->planes = s->negate_alpha ? 0xF : 0x7;
199 is_packed = !(desc->flags & AV_PIX_FMT_FLAG_PLANAR) &&
200 (desc->nb_components > 1);
201 if (s->requested_components != 0x77) {
202 comp_avail = ((desc->flags & AV_PIX_FMT_FLAG_RGB) ? COMP_R|COMP_G|COMP_B :
203 COMP_Y |
204 ((desc->nb_components > 2) ? COMP_U|COMP_V : 0)) |
205 ((desc->flags & AV_PIX_FMT_FLAG_ALPHA) ? COMP_A : 0);
206 if (s->requested_components & ~comp_avail) {
207 av_log(ctx, AV_LOG_ERROR, "Requested components not available.\n");
208 return AVERROR(EINVAL);
209 }
210
211 s->planes = 0;
212 if (!(desc->flags & AV_PIX_FMT_FLAG_RGB)) {
213 if (s->requested_components & COMP_Y)
214 s->planes |= 1;
215 if (s->requested_components & COMP_U)
216 s->planes |= 2;
217 if (s->requested_components & COMP_V)
218 s->planes |= 4;
219 if (s->requested_components & COMP_A)
220 s->planes |= 8;
221 } else {
222 if (s->requested_components & COMP_R)
223 s->planes |= 4;
224 if (s->requested_components & COMP_G)
225 s->planes |= 1;
226 if (s->requested_components & COMP_B)
227 s->planes |= 2;
228 if (s->requested_components & COMP_A)
229 s->planes |= 8;
230 }
231 }
232 s->nb_planes = av_pix_fmt_count_planes(inlink->format);
233
234 s->components = 0;
235 if (desc->flags & AV_PIX_FMT_FLAG_RGB) {
236 ff_fill_rgba_map(s->rgba_map, inlink->format);
237
238 if (s->requested_components & COMP_R)
239 s->components |= 1 << s->rgba_map[0];
240 if (s->requested_components & COMP_G)
241 s->components |= 1 << s->rgba_map[1];
242 if (s->requested_components & COMP_B)
243 s->components |= 1 << s->rgba_map[2];
244 if (s->requested_components & COMP_A)
245 s->components |= 1 << s->rgba_map[3];
246 }
247
248 if ((ret = av_image_fill_linesizes(s->linesize, inlink->format, inlink->w)) < 0)
249 return ret;
250
251 depth = desc->comp[0].depth;
252 hsub = desc->log2_chroma_w;
253 vsub = desc->log2_chroma_h;
254 s->height[1] = s->height[2] = AV_CEIL_RSHIFT(inlink->h, vsub);
255 s->height[0] = s->height[3] = inlink->h;
256 s->width[1] = s->width[2] = AV_CEIL_RSHIFT(inlink->w, hsub);
257 s->width[0] = s->width[3] = inlink->w;
258
259 s->negate = depth <= 8 ? negate8 : negate16;
260 if (is_packed) {
261 s->negate = depth <= 8 ? negate_packed8 : negate_packed16;
262 s->planes = 1;
263 }
264 s->max = (1 << depth) - 1;
265 s->step = av_get_bits_per_pixel(desc) >> 3;
266 if (depth > 8)
267 s->step = s->step >> 1;
268
269 return 0;
270}
271
272static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
273{
274 NegateContext *s = ctx->priv;
275 ThreadData *td = arg;
276 AVFrame *in = td->in;
277 AVFrame *out = td->out;
278
279 for (int p = 0; p < s->nb_planes; p++) {
280 const int h = s->height[p];
281 const int slice_start = ff_slice_pos(h, jobnr, nb_jobs);
282 const int slice_end = ff_slice_pos(h, jobnr + 1, nb_jobs);
283
284 if (!((1 << p) & s->planes)) {
285 if (out != in)
286 av_image_copy_plane(out->data[p] + slice_start * out->linesize[p],
287 out->linesize[p],
288 in->data[p] + slice_start * in->linesize[p],
289 in->linesize[p],
290 s->linesize[p], slice_end - slice_start);
291 continue;
292 }
293
294 s->negate(in->data[p] + slice_start * in->linesize[p],
295 out->data[p] + slice_start * out->linesize[p],
296 in->linesize[p], out->linesize[p],
297 s->width[p], slice_end - slice_start,
298 s->max, s->step, s->components);
299 }
300
301 return 0;
302}
303
304static int filter_frame(AVFilterLink *inlink, AVFrame *in)
305{
306 AVFilterContext *ctx = inlink->dst;
307 NegateContext *s = ctx->priv;
308 AVFilterLink *outlink = ctx->outputs[0];
309 ThreadData td;
310 AVFrame *out;
311
312 if (av_frame_is_writable(in)) {
313 out = in;
314 } else {
315 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
316 if (!out) {
317 av_frame_free(&in);
318 return AVERROR(ENOMEM);
319 }
321 }
322
323 td.out = out;
324 td.in = in;
326 FFMIN(s->height[2], ff_filter_get_nb_threads(ctx)));
327 if (out != in)
328 av_frame_free(&in);
329
330 return ff_filter_frame(outlink, out);
331}
332
333static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
334 char *res, int res_len, int flags)
335{
336 NegateContext *s = ctx->priv;
337 int old_planes = s->planes;
338 int ret;
339
340 ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
341 if (ret < 0)
342 return ret;
343
344 ret = config_input(ctx->inputs[0]);
345 if (ret < 0)
346 s->planes = old_planes;
347 return ret;
348}
349
350static const AVFilterPad inputs[] = {
351 {
352 .name = "default",
353 .type = AVMEDIA_TYPE_VIDEO,
354 .filter_frame = filter_frame,
355 .config_props = config_input,
356 },
357};
358
360 .p.name = "negate",
361 .p.description = NULL_IF_CONFIG_SMALL("Negate input video."),
362 .p.priv_class = &negate_class,
364 .priv_size = sizeof(NegateContext),
368 .process_command = process_command,
369};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static const AVFilterPad inputs[]
Definition af_aap.c:299
static int config_input(AVFilterLink *inlink)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
const FFFilter ff_vf_negate
Definition vf_negate.c:359
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
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_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 flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
common internal and external API header
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define NULL
Definition coverity.c:32
#define max(a, b)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
Definition drawutils.c:80
misc drawing utilities
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_FLAGS
Underlying C type is unsigned int.
Definition opt.h:254
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition opt.h:326
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition avfilter.h:196
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition avfilter.h:166
#define AVERROR(e)
Definition error.h:45
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition frame.c:535
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
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
misc image utilities
const char * arg
Definition jacosubdec.c:65
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
static int ff_slice_pos(int total, int jobnr, int nb_jobs)
Compute the boundary index for a slice when work of size total is split into nb_jobs slices.
Definition filters.h:763
#define FILTER_PIXFMTS_ARRAY(array)
Definition filters.h:244
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
Macro definitions for various function/variable attributes.
#define av_fallthrough
Definition attributes.h:67
#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
uint8_t w
Definition llvidencdsp.c:39
#define FFMIN(a, b)
Definition macros.h:49
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
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:3412
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_FLAG_ALPHA
The pixel format has an alpha channel.
Definition pixdesc.h:147
#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_FLAG_PLANAR
At least one pixel component is not in the first data plane.
Definition pixdesc.h:132
#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_BGR48
Definition pixfmt.h:536
#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_YUV422P12
Definition pixfmt.h:550
#define AV_PIX_FMT_GBRAP14
Definition pixfmt.h:570
#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_RGBA64
Definition pixfmt.h:535
#define AV_PIX_FMT_GBRP12
Definition pixfmt.h:565
#define AV_PIX_FMT_YUV420P9
Definition pixfmt.h:542
#define AV_PIX_FMT_RGB48
Definition pixfmt.h:531
#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_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition pixfmt.h:75
@ 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_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_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_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_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_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
@ 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_YUVA422P12
Definition pixfmt.h:599
#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_BGRA64
Definition pixfmt.h:540
#define AV_PIX_FMT_YUV440P10
Definition pixfmt.h:547
#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_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
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
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:517
AVOption.
Definition opt.h:428
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
int height[4]
Definition vf_negate.c:53
int linesize[4]
Definition vf_negate.c:51
int requested_components
Definition vf_negate.c:46
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:56
int width[4]
Definition vf_negate.c:52
uint8_t rgba_map[4]
Definition vf_negate.c:54
Used for passing data between threads.
Definition dsddec.c:71
AVFrame * out
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static void hsub(htype *dst, const htype *src, int bins)
Definition vf_median.c:74
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:124
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_negate.c:272
#define COMP_U
Definition vf_negate.c:34
#define COMP_Y
Definition vf_negate.c:33
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:110
static const AVOption negate_options[]
Definition vf_negate.c:65
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:147
#define COMP_G
Definition vf_negate.c:30
#define COMP_R
Definition vf_negate.c:29
static int config_input(AVFilterLink *inlink)
Definition vf_negate.c:190
#define COMP_A
Definition vf_negate.c:32
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:167
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition vf_negate.c:304
#define COMP_B
Definition vf_negate.c:31
#define COMP_V
Definition vf_negate.c:35
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition vf_negate.c:333
#define OFFSET(x)
Definition vf_negate.c:62
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89
static int slice_start(SliceContext *sc, VVCContext *s, VVCFrameContext *fc, const CodedBitstreamUnit *unit, const int is_first_slice)
Definition dec.c:844