FFmpeg
vf_neighbor.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013 Oka Motofumi (chikuzen.mo at gmail dot com)
3  * Copyright (c) 2015 Paul B Mahol
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "libavutil/imgutils.h"
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/pixdesc.h"
25 #include "libavutil/opt.h"
26 #include "avfilter.h"
27 #include "formats.h"
28 #include "internal.h"
29 #include "video.h"
30 
31 typedef struct ThreadData {
32  AVFrame *in, *out;
33 } ThreadData;
34 
35 typedef struct NContext {
36  const AVClass *class;
37  int planeheight[4];
38  int planewidth[4];
39  int nb_planes;
40  int threshold[4];
42 
43  int depth;
44  int max;
45  int bpc;
46 
47  void (*filter)(uint8_t *dst, const uint8_t *p1, int width,
48  int threshold, const uint8_t *coordinates[], int coord,
49  int maxc);
50 } NContext;
51 
53 {
54  static const enum AVPixelFormat pix_fmts[] = {
73  };
74 
76 }
77 
78 static void erosion(uint8_t *dst, const uint8_t *p1, int width,
79  int threshold, const uint8_t *coordinates[], int coord,
80  int maxc)
81 {
82  int x, i;
83 
84  for (x = 0; x < width; x++) {
85  int min = p1[x];
86  int limit = FFMAX(min - threshold, 0);
87 
88  for (i = 0; i < 8; i++) {
89  if (coord & (1 << i)) {
90  min = FFMIN(min, *(coordinates[i] + x));
91  }
92  min = FFMAX(min, limit);
93  }
94 
95  dst[x] = min;
96  }
97 }
98 
99 static void erosion16(uint8_t *dstp, const uint8_t *p1, int width,
100  int threshold, const uint8_t *coordinates[], int coord,
101  int maxc)
102 {
103  uint16_t *dst = (uint16_t *)dstp;
104  int x, i;
105 
106  for (x = 0; x < width; x++) {
107  int min = AV_RN16A(&p1[2 * x]);
108  int limit = FFMAX(min - threshold, 0);
109 
110  for (i = 0; i < 8; i++) {
111  if (coord & (1 << i)) {
112  min = FFMIN(min, AV_RN16A(coordinates[i] + x * 2));
113  }
114  min = FFMAX(min, limit);
115  }
116 
117  dst[x] = min;
118  }
119 }
120 
121 static void dilation(uint8_t *dst, const uint8_t *p1, int width,
122  int threshold, const uint8_t *coordinates[], int coord,
123  int maxc)
124 {
125  int x, i;
126 
127  for (x = 0; x < width; x++) {
128  int max = p1[x];
129  int limit = FFMIN(max + threshold, 255);
130 
131  for (i = 0; i < 8; i++) {
132  if (coord & (1 << i)) {
133  max = FFMAX(max, *(coordinates[i] + x));
134  }
135  max = FFMIN(max, limit);
136  }
137 
138  dst[x] = max;
139  }
140 }
141 
142 static void dilation16(uint8_t *dstp, const uint8_t *p1, int width,
143  int threshold, const uint8_t *coordinates[], int coord,
144  int maxc)
145 {
146  uint16_t *dst = (uint16_t *)dstp;
147  int x, i;
148 
149  for (x = 0; x < width; x++) {
150  int max = AV_RN16A(&p1[x * 2]);
151  int limit = FFMIN(max + threshold, maxc);
152 
153  for (i = 0; i < 8; i++) {
154  if (coord & (1 << i)) {
155  max = FFMAX(max, AV_RN16A(coordinates[i] + x * 2));
156  }
157  max = FFMIN(max, limit);
158  }
159 
160  dst[x] = max;
161  }
162 }
163 
164 static void deflate(uint8_t *dst, const uint8_t *p1, int width,
165  int threshold, const uint8_t *coordinates[], int coord,
166  int maxc)
167 {
168  int x, i;
169 
170  for (x = 0; x < width; x++) {
171  int sum = 0;
172  int limit = FFMAX(p1[x] - threshold, 0);
173 
174  for (i = 0; i < 8; sum += *(coordinates[i++] + x));
175 
176  dst[x] = FFMAX(FFMIN(sum / 8, p1[x]), limit);
177  }
178 }
179 
180 static void deflate16(uint8_t *dstp, const uint8_t *p1, int width,
181  int threshold, const uint8_t *coordinates[], int coord,
182  int maxc)
183 {
184  uint16_t *dst = (uint16_t *)dstp;
185  int x, i;
186 
187  for (x = 0; x < width; x++) {
188  int sum = 0;
189  int limit = FFMAX(AV_RN16A(&p1[2 * x]) - threshold, 0);
190 
191  for (i = 0; i < 8; sum += AV_RN16A(coordinates[i++] + x * 2));
192 
193  dst[x] = FFMAX(FFMIN(sum / 8, AV_RN16A(&p1[2 * x])), limit);
194  }
195 }
196 
197 static void inflate(uint8_t *dst, const uint8_t *p1, int width,
198  int threshold, const uint8_t *coordinates[], int coord,
199  int maxc)
200 {
201  int x, i;
202 
203  for (x = 0; x < width; x++) {
204  int sum = 0;
205  int limit = FFMIN(p1[x] + threshold, 255);
206 
207  for (i = 0; i < 8; sum += *(coordinates[i++] + x));
208 
209  dst[x] = FFMIN(FFMAX(sum / 8, p1[x]), limit);
210  }
211 }
212 
213 static void inflate16(uint8_t *dstp, const uint8_t *p1, int width,
214  int threshold, const uint8_t *coordinates[], int coord,
215  int maxc)
216 {
217  uint16_t *dst = (uint16_t *)dstp;
218  int x, i;
219 
220  for (x = 0; x < width; x++) {
221  int sum = 0;
222  int limit = FFMIN(AV_RN16A(&p1[2 * x]) + threshold, maxc);
223 
224  for (i = 0; i < 8; sum += AV_RN16A(coordinates[i++] + x * 2));
225 
226  dst[x] = FFMIN(FFMAX(sum / 8, AV_RN16A(&p1[x * 2])), limit);
227  }
228 }
229 
231 {
232  AVFilterContext *ctx = inlink->dst;
233  NContext *s = ctx->priv;
235 
236  s->depth = desc->comp[0].depth;
237  s->max = (1 << s->depth) - 1;
238  s->bpc = (s->depth + 7) / 8;
239 
240  s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
241  s->planewidth[0] = s->planewidth[3] = inlink->w;
242  s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
243  s->planeheight[0] = s->planeheight[3] = inlink->h;
244 
245  s->nb_planes = av_pix_fmt_count_planes(inlink->format);
246 
247  if (!strcmp(ctx->filter->name, "erosion"))
248  s->filter = s->depth > 8 ? erosion16 : erosion;
249  else if (!strcmp(ctx->filter->name, "dilation"))
250  s->filter = s->depth > 8 ? dilation16 : dilation;
251  else if (!strcmp(ctx->filter->name, "deflate"))
252  s->filter = s->depth > 8 ? deflate16 : deflate;
253  else if (!strcmp(ctx->filter->name, "inflate"))
254  s->filter = s->depth > 8 ? inflate16 : inflate;
255 
256  return 0;
257 }
258 
259 static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
260 {
261  NContext *s = ctx->priv;
262  ThreadData *td = arg;
263  AVFrame *out = td->out;
264  AVFrame *in = td->in;
265  int plane, y;
266 
267  for (plane = 0; plane < s->nb_planes; plane++) {
268  const int bpc = s->bpc;
269  const int threshold = s->threshold[plane];
270  const int stride = in->linesize[plane];
271  const int dstride = out->linesize[plane];
272  const int height = s->planeheight[plane];
273  const int width = s->planewidth[plane];
274  const int slice_start = (height * jobnr) / nb_jobs;
275  const int slice_end = (height * (jobnr+1)) / nb_jobs;
276  const uint8_t *src = (const uint8_t *)in->data[plane] + slice_start * stride;
277  uint8_t *dst = out->data[plane] + slice_start * dstride;
278 
279  if (!threshold) {
280  av_image_copy_plane(dst, dstride, src, stride, width * bpc, slice_end - slice_start);
281  continue;
282  }
283 
284  for (y = slice_start; y < slice_end; y++) {
285  const int nh = y > 0;
286  const int ph = y < height - 1;
287  const uint8_t *coordinates[] = { src - nh * stride, src + 1 * bpc - nh * stride, src + 2 * bpc - nh * stride,
288  src, src + 2 * bpc,
289  src + ph * stride, src + 1 * bpc + ph * stride, src + 2 * bpc + ph * stride};
290 
291  const uint8_t *coordinateslb[] = { src + 1 * bpc - nh * stride, src - nh * stride, src + 1 * bpc - nh * stride,
292  src + 1 * bpc, src + 1 * bpc,
293  src + 1 * bpc + ph * stride, src + ph * stride, src + 1 * bpc + ph * stride};
294 
295  const uint8_t *coordinatesrb[] = { src + (width - 2) * bpc - nh * stride, src + (width - 1) * bpc - nh * stride, src + (width - 2) * bpc - nh * stride,
296  src + (width - 2) * bpc, src + (width - 2) * bpc,
297  src + (width - 2) * bpc + ph * stride, src + (width - 1) * bpc + ph * stride, src + (width - 2) * bpc + ph * stride};
298 
299  s->filter(dst, src, 1, threshold, coordinateslb, s->coordinates, s->max);
300  if (width > 1) {
301  s->filter(dst + 1 * bpc, src + 1 * bpc, width - 2, threshold, coordinates, s->coordinates, s->max);
302  s->filter(dst + (width - 1) * bpc, src + (width - 1) * bpc, 1, threshold, coordinatesrb, s->coordinates, s->max);
303  }
304 
305  src += stride;
306  dst += dstride;
307  }
308  }
309 
310  return 0;
311 }
312 
314 {
315  AVFilterContext *ctx = inlink->dst;
316  AVFilterLink *outlink = ctx->outputs[0];
317  NContext *s = ctx->priv;
318  ThreadData td;
319  AVFrame *out;
320 
321  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
322  if (!out) {
323  av_frame_free(&in);
324  return AVERROR(ENOMEM);
325  }
327 
328  td.in = in;
329  td.out = out;
330  ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(s->planeheight[1], ff_filter_get_nb_threads(ctx)));
331 
332  av_frame_free(&in);
333  return ff_filter_frame(outlink, out);
334 }
335 
336 static const AVFilterPad neighbor_inputs[] = {
337  {
338  .name = "default",
339  .type = AVMEDIA_TYPE_VIDEO,
340  .filter_frame = filter_frame,
341  .config_props = config_input,
342  },
343  { NULL }
344 };
345 
346 static const AVFilterPad neighbor_outputs[] = {
347  {
348  .name = "default",
349  .type = AVMEDIA_TYPE_VIDEO,
350  },
351  { NULL }
352 };
353 
354 #define OFFSET(x) offsetof(NContext, x)
355 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
356 
357 #define DEFINE_NEIGHBOR_FILTER(name_, description_) \
358 AVFILTER_DEFINE_CLASS(name_); \
359  \
360 AVFilter ff_vf_##name_ = { \
361  .name = #name_, \
362  .description = NULL_IF_CONFIG_SMALL(description_), \
363  .priv_size = sizeof(NContext), \
364  .priv_class = &name_##_class, \
365  .query_formats = query_formats, \
366  .inputs = neighbor_inputs, \
367  .outputs = neighbor_outputs, \
368  .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC| \
369  AVFILTER_FLAG_SLICE_THREADS, \
370 }
371 
372 #if CONFIG_EROSION_FILTER
373 
374 static const AVOption erosion_options[] = {
375  { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
376  { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
377  { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[2]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
378  { "threshold3", "set threshold for 4th plane", OFFSET(threshold[3]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
379  { "coordinates", "set coordinates", OFFSET(coordinates), AV_OPT_TYPE_INT, {.i64=255}, 0, 255, FLAGS },
380  { NULL }
381 };
382 
383 DEFINE_NEIGHBOR_FILTER(erosion, "Apply erosion effect.");
384 
385 #endif /* CONFIG_EROSION_FILTER */
386 
387 #if CONFIG_DILATION_FILTER
388 
389 static const AVOption dilation_options[] = {
390  { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
391  { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
392  { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[2]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
393  { "threshold3", "set threshold for 4th plane", OFFSET(threshold[3]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
394  { "coordinates", "set coordinates", OFFSET(coordinates), AV_OPT_TYPE_INT, {.i64=255}, 0, 255, FLAGS },
395  { NULL }
396 };
397 
398 DEFINE_NEIGHBOR_FILTER(dilation, "Apply dilation effect.");
399 
400 #endif /* CONFIG_DILATION_FILTER */
401 
402 #if CONFIG_DEFLATE_FILTER
403 
404 static const AVOption deflate_options[] = {
405  { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
406  { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
407  { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[2]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
408  { "threshold3", "set threshold for 4th plane", OFFSET(threshold[3]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
409  { NULL }
410 };
411 
412 DEFINE_NEIGHBOR_FILTER(deflate, "Apply deflate effect.");
413 
414 #endif /* CONFIG_DEFLATE_FILTER */
415 
416 #if CONFIG_INFLATE_FILTER
417 
418 static const AVOption inflate_options[] = {
419  { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
420  { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
421  { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[2]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
422  { "threshold3", "set threshold for 4th plane", OFFSET(threshold[3]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
423  { NULL }
424 };
425 
426 DEFINE_NEIGHBOR_FILTER(inflate, "Apply inflate effect.");
427 
428 #endif /* CONFIG_INFLATE_FILTER */
DEFINE_NEIGHBOR_FILTER
#define DEFINE_NEIGHBOR_FILTER(name_, description_)
Definition: vf_neighbor.c:357
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:99
AV_PIX_FMT_YUVA422P16
#define AV_PIX_FMT_YUVA422P16
Definition: pixfmt.h:430
AV_PIX_FMT_GBRAP16
#define AV_PIX_FMT_GBRAP16
Definition: pixfmt.h:409
stride
int stride
Definition: mace.c:144
deflate16
static void deflate16(uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:180
td
#define td
Definition: regdef.h:70
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
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:283
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:1080
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2522
FLAGS
#define FLAGS
Definition: vf_neighbor.c:355
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_neighbor.c:313
filter_slice
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_neighbor.c:259
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
erosion
static void erosion(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:78
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:202
AV_PIX_FMT_YUVA422P9
#define AV_PIX_FMT_YUVA422P9
Definition: pixfmt.h:422
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:295
pixdesc.h
AV_PIX_FMT_YUVA420P16
#define AV_PIX_FMT_YUVA420P16
Definition: pixfmt.h:429
AV_PIX_FMT_YUVA420P10
#define AV_PIX_FMT_YUVA420P10
Definition: pixfmt.h:424
AVOption
AVOption.
Definition: opt.h:246
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:387
NContext::planeheight
int planeheight[4]
Definition: vf_neighbor.c:37
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
ThreadData::out
AVFrame * out
Definition: af_adeclick.c:488
video.h
AVFormatContext::internal
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1795
AV_PIX_FMT_YUVA422P10
#define AV_PIX_FMT_YUVA422P10
Definition: pixfmt.h:425
AV_PIX_FMT_GRAY9
#define AV_PIX_FMT_GRAY9
Definition: pixfmt.h:367
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:338
formats.h
NContext::coordinates
int coordinates
Definition: vf_neighbor.c:41
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2562
AV_PIX_FMT_YUVA420P9
#define AV_PIX_FMT_YUVA420P9
Definition: pixfmt.h:421
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_neighbor.c:230
dilation
static void dilation(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:121
AV_PIX_FMT_GBRP14
#define AV_PIX_FMT_GBRP14
Definition: pixfmt.h:405
dstp
BYTE * dstp
Definition: avisynth_c.h:908
AV_PIX_FMT_GBRAP
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:215
NContext::depth
int depth
Definition: vf_neighbor.c:43
AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:403
inflate
static void inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:197
AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUVA444P16
Definition: pixfmt.h:431
OFFSET
#define OFFSET(x)
Definition: vf_neighbor.c:354
plane
int plane
Definition: avisynth_c.h:384
AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:385
AV_PIX_FMT_GRAY16
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:371
src
#define src
Definition: vp8dsp.c:254
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:390
AV_PIX_FMT_YUVJ411P
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:258
NContext::nb_planes
int nb_planes
Definition: vf_neighbor.c:39
AV_PIX_FMT_YUV422P16
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:399
ff_set_common_formats
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:568
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:407
width
#define width
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:257
AV_PIX_FMT_GBRAP12
#define AV_PIX_FMT_GBRAP12
Definition: pixfmt.h:408
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:400
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
slice_end
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
Definition: mpeg12dec.c:2026
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:275
AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:384
AV_PIX_FMT_YUV420P16
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:398
ctx
AVFormatContext * ctx
Definition: movenc.c:48
AV_PIX_FMT_GRAY14
#define AV_PIX_FMT_GRAY14
Definition: pixfmt.h:370
NContext::planewidth
int planewidth[4]
Definition: vf_neighbor.c:38
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
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:66
AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GRAY10
Definition: pixfmt.h:368
if
if(ret)
Definition: filter_design.txt:179
AV_PIX_FMT_GBRP16
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:406
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
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:654
neighbor_inputs
static const AVFilterPad neighbor_inputs[]
Definition: vf_neighbor.c:336
NContext::max
int max
Definition: vf_neighbor.c:44
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
deflate
static void deflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:164
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:388
AV_PIX_FMT_GRAY8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:74
AV_PIX_FMT_GBRP9
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:402
inflate16
static void inflate16(uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:213
desc
const char * desc
Definition: nvenc.c:68
FFMAX
#define FFMAX(a, b)
Definition: common.h:94
AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:392
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:394
NContext
Definition: vf_neighbor.c:35
height
#define height
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
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:177
AV_PIX_FMT_YUVA444P10
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:426
NContext::bpc
int bpc
Definition: vf_neighbor.c:45
internal.h
in
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
Definition: audio_convert.c:326
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
NContext::filter
void(* filter)(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:47
AV_PIX_FMT_GBRP12
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:404
ff_filter_get_nb_threads
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:802
ThreadData
Used for passing data between threads.
Definition: af_adeclick.c:487
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
uint8_t
uint8_t
Definition: audio_convert.c:194
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:386
NContext::threshold
int threshold[4]
Definition: vf_neighbor.c:40
neighbor_outputs
static const AVFilterPad neighbor_outputs[]
Definition: vf_neighbor.c:346
AV_PIX_FMT_YUVA444P9
#define AV_PIX_FMT_YUVA444P9
Definition: pixfmt.h:423
AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:391
AV_PIX_FMT_YUV422P14
#define AV_PIX_FMT_YUV422P14
Definition: pixfmt.h:396
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_neighbor.c:52
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
avfilter.h
AV_RN16A
#define AV_RN16A(p)
Definition: intreadwrite.h:522
dilation16
static void dilation16(uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:142
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:338
AV_PIX_FMT_GBRP
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:168
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_afftdn.c:1082
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
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
imgutils.h
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_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:393
AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:397
AV_PIX_FMT_GRAY12
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:369
erosion16
static void erosion16(uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:99
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:176
AV_PIX_FMT_YUV420P14
#define AV_PIX_FMT_YUV420P14
Definition: pixfmt.h:395
min
float min
Definition: vorbis_enc_data.h:456