FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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/pixdesc.h"
24 #include "libavutil/opt.h"
25 #include "avfilter.h"
26 #include "formats.h"
27 #include "internal.h"
28 #include "video.h"
29 
30 typedef struct NContext {
31  const AVClass *class;
32  int planeheight[4];
33  int planewidth[4];
34  int nb_planes;
35  int threshold[4];
38 
39  void (*filter)(uint8_t *dst, const uint8_t *p1, int width,
40  int threshold, const uint8_t *coordinates[], int coord);
41 } NContext;
42 
44 {
45  static const enum AVPixelFormat pix_fmts[] = {
50  };
51 
52  return ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
53 }
54 
56 {
57  NContext *s = ctx->priv;
58 
59  av_freep(&s->buffer);
60 }
61 
62 static inline void line_copy8(uint8_t *line, const uint8_t *srcp, int width, int mergin)
63 {
64  int i;
65 
66  memcpy(line, srcp, width);
67 
68  for (i = mergin; i > 0; i--) {
69  line[-i] = line[i];
70  line[width - 1 + i] = line[width - 1 - i];
71  }
72 }
73 
74 static void erosion(uint8_t *dst, const uint8_t *p1, int width,
75  int threshold, const uint8_t *coordinates[], int coord)
76 {
77  int x, i;
78 
79  for (x = 0; x < width; x++) {
80  int min = p1[x];
81  int limit = FFMAX(min - threshold, 0);
82 
83  for (i = 0; i < 8; i++) {
84  if (coord & (1 << i)) {
85  min = FFMIN(min, *(coordinates[i] + x));
86  }
87  min = FFMAX(min, limit);
88  }
89 
90  dst[x] = min;
91  }
92 }
93 
94 static void dilation(uint8_t *dst, const uint8_t *p1, int width,
95  int threshold, const uint8_t *coordinates[], int coord)
96 {
97  int x, i;
98 
99  for (x = 0; x < width; x++) {
100  int max = p1[x];
101  int limit = FFMIN(max + threshold, 255);
102 
103  for (i = 0; i < 8; i++) {
104  if (coord & (1 << i)) {
105  max = FFMAX(max, *(coordinates[i] + x));
106  }
107  max = FFMIN(max, limit);
108  }
109 
110  dst[x] = max;
111  }
112 }
113 
114 static void deflate(uint8_t *dst, const uint8_t *p1, int width,
115  int threshold, const uint8_t *coordinates[], int coord)
116 {
117  int x, i;
118 
119  for (x = 0; x < width; x++) {
120  int sum = 0;
121  int limit = FFMAX(p1[x] - threshold, 0);
122 
123  for (i = 0; i < 8; sum += *(coordinates[i++] + x));
124 
125  dst[x] = FFMAX(FFMIN(sum / 8, p1[x]), limit);
126  }
127 }
128 
129 static void inflate(uint8_t *dst, const uint8_t *p1, int width,
130  int threshold, const uint8_t *coordinates[], int coord)
131 {
132  int x, i;
133 
134  for (x = 0; x < width; x++) {
135  int sum = 0;
136  int limit = FFMIN(p1[x] + threshold, 255);
137 
138  for (i = 0; i < 8; sum += *(coordinates[i++] + x));
139 
140  dst[x] = FFMIN(FFMAX(sum / 8, p1[x]), limit);
141  }
142 }
143 
144 static int config_input(AVFilterLink *inlink)
145 {
146  AVFilterContext *ctx = inlink->dst;
147  NContext *s = ctx->priv;
148  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
149  int ret;
150 
151  if ((ret = av_image_fill_linesizes(s->planewidth, inlink->format, inlink->w)) < 0)
152  return ret;
153 
154  s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
155  s->planeheight[0] = s->planeheight[3] = inlink->h;
156 
158  s->buffer = av_malloc(3 * (s->planewidth[0] + 32));
159  if (!s->buffer)
160  return AVERROR(ENOMEM);
161 
162  if (!strcmp(ctx->filter->name, "erosion"))
163  s->filter = erosion;
164  else if (!strcmp(ctx->filter->name, "dilation"))
165  s->filter = dilation;
166  else if (!strcmp(ctx->filter->name, "deflate"))
167  s->filter = deflate;
168  else if (!strcmp(ctx->filter->name, "inflate"))
169  s->filter = inflate;
170 
171  return 0;
172 }
173 
174 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
175 {
176  AVFilterContext *ctx = inlink->dst;
177  AVFilterLink *outlink = ctx->outputs[0];
178  NContext *s = ctx->priv;
179  AVFrame *out;
180  int plane, y;
181 
182  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
183  if (!out) {
184  av_frame_free(&in);
185  return AVERROR(ENOMEM);
186  }
187  av_frame_copy_props(out, in);
188 
189  for (plane = 0; plane < s->nb_planes; plane++) {
190  const int threshold = s->threshold[plane];
191 
192  if (threshold) {
193  const uint8_t *src = in->data[plane];
194  uint8_t *dst = out->data[plane];
195  int stride = in->linesize[plane];
196  int height = s->planeheight[plane];
197  int width = s->planewidth[plane];
198  uint8_t *p0 = s->buffer + 16;
199  uint8_t *p1 = p0 + s->planewidth[0];
200  uint8_t *p2 = p1 + s->planewidth[0];
201  uint8_t *orig = p0, *end = p2;
202 
203  line_copy8(p0, src + stride, width, 1);
204  line_copy8(p1, src, width, 1);
205 
206  for (y = 0; y < height; y++) {
207  const uint8_t *coordinates[] = { p0 - 1, p0, p0 + 1,
208  p1 - 1, p1 + 1,
209  p2 - 1, p2, p2 + 1};
210  src += stride * (y < height - 1 ? 1 : -1);
211  line_copy8(p2, src, width, 1);
212 
213  s->filter(dst, p1, width, threshold, coordinates, s->coordinates);
214 
215  p0 = p1;
216  p1 = p2;
217  p2 = (p2 == end) ? orig: p2 + s->planewidth[0];
218  dst += out->linesize[plane];
219  }
220  } else {
221  av_image_copy_plane(out->data[plane], out->linesize[plane],
222  in->data[plane], in->linesize[plane],
223  s->planewidth[plane], s->planeheight[plane]);
224  }
225  }
226 
227  av_frame_free(&in);
228  return ff_filter_frame(outlink, out);
229 }
230 
231 static const AVFilterPad neighbor_inputs[] = {
232  {
233  .name = "default",
234  .type = AVMEDIA_TYPE_VIDEO,
235  .filter_frame = filter_frame,
236  .config_props = config_input,
237  },
238  { NULL }
239 };
240 
241 static const AVFilterPad neighbor_outputs[] = {
242  {
243  .name = "default",
244  .type = AVMEDIA_TYPE_VIDEO,
245  },
246  { NULL }
247 };
248 
249 #define OFFSET(x) offsetof(NContext, x)
250 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
251 
252 #define DEFINE_NEIGHBOR_FILTER(name_, description_) \
253 AVFILTER_DEFINE_CLASS(name_); \
254  \
255 AVFilter ff_vf_##name_ = { \
256  .name = #name_, \
257  .description = NULL_IF_CONFIG_SMALL(description_), \
258  .priv_size = sizeof(NContext), \
259  .priv_class = &name_##_class, \
260  .uninit = uninit, \
261  .query_formats = query_formats, \
262  .inputs = neighbor_inputs, \
263  .outputs = neighbor_outputs, \
264  .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, \
265 }
266 
267 #if CONFIG_EROSION_FILTER
268 
269 static const AVOption erosion_options[] = {
270  { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
271  { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
272  { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[2]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
273  { "threshold3", "set threshold for 4th plane", OFFSET(threshold[3]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
274  { "coordinates", "set coordinates", OFFSET(coordinates), AV_OPT_TYPE_INT, {.i64=255}, 0, 255, FLAGS },
275  { NULL }
276 };
277 
278 DEFINE_NEIGHBOR_FILTER(erosion, "Apply erosion effect.");
279 
280 #endif /* CONFIG_EROSION_FILTER */
281 
282 #if CONFIG_DILATION_FILTER
283 
284 static const AVOption dilation_options[] = {
285  { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
286  { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
287  { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[2]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
288  { "threshold3", "set threshold for 4th plane", OFFSET(threshold[3]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
289  { "coordinates", "set coordinates", OFFSET(coordinates), AV_OPT_TYPE_INT, {.i64=255}, 0, 255, FLAGS },
290  { NULL }
291 };
292 
293 DEFINE_NEIGHBOR_FILTER(dilation, "Apply dilation effect.");
294 
295 #endif /* CONFIG_DILATION_FILTER */
296 
297 #if CONFIG_DEFLATE_FILTER
298 
299 static const AVOption deflate_options[] = {
300  { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
301  { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
302  { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[2]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
303  { "threshold3", "set threshold for 4th plane", OFFSET(threshold[3]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
304  { NULL }
305 };
306 
307 DEFINE_NEIGHBOR_FILTER(deflate, "Apply deflate effect.");
308 
309 #endif /* CONFIG_DEFLATE_FILTER */
310 
311 #if CONFIG_INFLATE_FILTER
312 
313 static const AVOption inflate_options[] = {
314  { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
315  { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
316  { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[2]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
317  { "threshold3", "set threshold for 4th plane", OFFSET(threshold[3]), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, FLAGS },
318  { NULL }
319 };
320 
321 DEFINE_NEIGHBOR_FILTER(inflate, "Apply inflate effect.");
322 
323 #endif /* CONFIG_INFLATE_FILTER */
int plane
Definition: avisynth_c.h:291
static void dilation(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord)
Definition: vf_neighbor.c:94
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
int planewidth[4]
Definition: vf_neighbor.c:33
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2157
This structure describes decoded (raw) audio or video data.
Definition: frame.h:181
AVOption.
Definition: opt.h:245
AVFormatContext * ctx
Definition: movenc-test.c:48
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:68
misc image utilities
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2197
Main libavfilter public API header.
static void line_copy8(uint8_t *line, const uint8_t *srcp, int width, int mergin)
Definition: vf_neighbor.c:62
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:181
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:76
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
BYTE int const BYTE * srcp
Definition: avisynth_c.h:676
const char * name
Pad name.
Definition: internal.h:59
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1163
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:103
uint8_t
#define av_cold
Definition: attributes.h:82
#define av_malloc(s)
AVOptions.
int threshold[4]
Definition: vf_neighbor.c:35
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
static void deflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord)
Definition: vf_neighbor.c:114
static void inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord)
Definition: vf_neighbor.c:129
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range...
Definition: pixfmt.h:102
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:76
static const AVFilterPad neighbor_outputs[]
Definition: vf_neighbor.c:241
#define FLAGS
Definition: vf_neighbor.c:250
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_neighbor.c:174
A filter pad used for either input or output.
Definition: internal.h:53
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:188
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
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:101
int nb_planes
Definition: vf_neighbor.c:34
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:154
void(* filter)(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord)
Definition: vf_neighbor.c:39
void * priv
private data for use by the filter
Definition: avfilter.h:319
#define OFFSET(x)
Definition: vf_neighbor.c:249
uint8_t * buffer
Definition: vf_neighbor.c:37
Definition: graph2dot.c:48
#define FFMAX(a, b)
Definition: common.h:94
int coordinates
Definition: vf_neighbor.c:36
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:67
#define FFMIN(a, b)
Definition: common.h:96
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:75
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_neighbor.c:55
#define src
Definition: vp9dsp.c:530
FILE * out
Definition: movenc-test.c:54
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:209
static int query_formats(AVFilterContext *ctx)
Definition: vf_neighbor.c:43
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:189
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
BYTE int const BYTE int int int height
Definition: avisynth_c.h:676
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:69
Describe the class of an AVClass context structure.
Definition: log.h:67
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:88
static void erosion(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord)
Definition: vf_neighbor.c:74
const char * name
Filter name.
Definition: avfilter.h:145
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:316
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:192
static int config_input(AVFilterLink *inlink)
Definition: vf_neighbor.c:144
GLint GLenum GLboolean GLsizei stride
Definition: opengl_enc.c:105
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
Y , 8bpp.
Definition: pixfmt.h:71
int planeheight[4]
Definition: vf_neighbor.c:32
static const AVFilterPad neighbor_inputs[]
Definition: vf_neighbor.c:231
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:229
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:77
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:70
#define DEFINE_NEIGHBOR_FILTER(name_, description_)
Definition: vf_neighbor.c:252
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:266
An instance of a filter.
Definition: avfilter.h:304
#define av_freep(p)
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:101
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:287
internal API functions
float min
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:307
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:565
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
static int width