FFmpeg
vf_avgblur.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Paul B Mahol
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20  * SOFTWARE.
21  */
22 
23 #include "libavutil/avassert.h"
24 #include "libavutil/imgutils.h"
25 #include "libavutil/opt.h"
26 #include "libavutil/pixdesc.h"
27 #include "avfilter.h"
28 #include "formats.h"
29 #include "internal.h"
30 #include "video.h"
31 
32 typedef struct AverageBlurContext {
33  const AVClass *class;
34 
35  int radius;
36  int radiusV;
37  int planes;
38 
39  int depth;
40  int max;
41  int area;
42  int planewidth[4];
43  int planeheight[4];
44  void *buffer;
45  uint16_t lut[256 * 256 * 256];
46  int nb_planes;
47 
48  int (*filter[2])(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
50 
51 #define OFFSET(x) offsetof(AverageBlurContext, x)
52 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
53 
54 static const AVOption avgblur_options[] = {
55  { "sizeX", "set horizontal size", OFFSET(radius), AV_OPT_TYPE_INT, {.i64=1}, 1, 1024, FLAGS },
56  { "planes", "set planes to filter", OFFSET(planes), AV_OPT_TYPE_INT, {.i64=0xF}, 0, 0xF, FLAGS },
57  { "sizeY", "set vertical size", OFFSET(radiusV), AV_OPT_TYPE_INT, {.i64=0}, 0, 1024, FLAGS },
58  { NULL }
59 };
60 
61 AVFILTER_DEFINE_CLASS(avgblur);
62 
63 typedef struct ThreadData {
64  int height;
65  int width;
66  const void *ptr;
67  void *dptr;
69 } ThreadData;
70 
71 #define LUT_DIV(sum, area) (lut[(sum)])
72 #define SLOW_DIV(sum, area) ((sum) / (area))
73 
74 #define FILTER(name, type, btype, lutunused, areaunused, lutdiv) \
75 static int filter_##name(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) \
76 { \
77  AverageBlurContext *s = ctx->priv; \
78  ThreadData *td = arg; \
79  areaunused const int area = s->area; \
80  lutunused const uint16_t *lut = s->lut; \
81  const int size_w = s->radius; \
82  const int size_h = s->radiusV; \
83  btype *col_sum = (btype *)s->buffer + size_w; \
84  const int dlinesize = td->dlinesize / sizeof(type); \
85  const int linesize = td->linesize / sizeof(type); \
86  const int height = td->height; \
87  const int width = td->width; \
88  const type *src = td->ptr; \
89  type *dst = td->dptr; \
90  btype sum = 0; \
91  \
92  for (int x = -size_w; x < 0; x++) { \
93  sum = src[0] * size_h; \
94  for (int y = 0; y <= size_h; y++) \
95  sum += src[y * linesize]; \
96  av_assert2(sum >= 0); \
97  col_sum[x] = sum; \
98  } \
99  \
100  for (int x = 0; x < width; x++) { \
101  sum = src[x] * size_h; \
102  for (int y = 0; y <= size_h; y++) \
103  sum += src[x + y * linesize]; \
104  av_assert2(sum >= 0); \
105  col_sum[x] = sum; \
106  } \
107  \
108  for (int x = width; x < width + size_w; x++) { \
109  sum = src[width - 1] * size_h; \
110  for (int y = 0; y <= size_h; y++) \
111  sum += src[width - 1 + y * linesize]; \
112  av_assert2(sum >= 0); \
113  col_sum[x] = sum; \
114  } \
115  \
116  sum = 0; \
117  for (int x = -size_w; x <= size_w; x++) \
118  sum += col_sum[x]; \
119  av_assert2(sum >= 0); \
120  dst[0] = lutdiv(sum, area); \
121  \
122  for (int x = 1; x < width; x++) { \
123  sum = sum - col_sum[x - size_w - 1] + col_sum[x + size_w]; \
124  av_assert2(sum >= 0); \
125  dst[x] = lutdiv(sum, area); \
126  } \
127  \
128  src = td->ptr; \
129  src += linesize; \
130  dst += dlinesize; \
131  \
132  for (int y = 1; y < height; y++) { \
133  const int syp = FFMIN(size_h, height - y - 1) * linesize; \
134  const int syn = FFMIN(y, size_h + 1) * linesize; \
135  \
136  sum = 0; \
137  \
138  for (int x = -size_w; x < 0; x++) \
139  col_sum[x] += src[0 + syp] - src[0 - syn]; \
140  \
141  for (int x = 0; x < width; x++) \
142  col_sum[x] += src[x + syp] - src[x - syn]; \
143  \
144  for (int x = width; x < width + size_w; x++) \
145  col_sum[x] += src[width - 1 + syp] - src[width - 1 - syn]; \
146  \
147  for (int x = -size_w; x <= size_w; x++) \
148  sum += col_sum[x]; \
149  av_assert2(sum >= 0); \
150  dst[0] = lutdiv(sum, area); \
151  \
152  for (int x = 1; x < width; x++) { \
153  sum = sum - col_sum[x - size_w - 1] + col_sum[x + size_w]; \
154  av_assert2(sum >= 0); \
155  dst[x] = lutdiv(sum, area); \
156  } \
157  \
158  src += linesize; \
159  dst += dlinesize; \
160  } \
161  \
162  return 0; \
163 }
164 
165 FILTER(lut8, uint8_t, int32_t, , av_unused, LUT_DIV)
166 FILTER(lut16, uint16_t, int64_t, , av_unused, LUT_DIV)
167 
168 FILTER(slow8, uint8_t, int32_t, av_unused, , SLOW_DIV)
169 FILTER(slow16, uint16_t, int64_t, av_unused, , SLOW_DIV)
170 
171 static void build_lut(AVFilterContext *ctx, int max)
172 {
173  AverageBlurContext *s = ctx->priv;
174  const int area = (2 * s->radiusV + 1) * (2 * s->radius + 1);
175 
176  s->area = area;
177  if (max * area >= FF_ARRAY_ELEMS(s->lut))
178  return;
179 
180  for (int i = 0, j = 0, k = 0; i < max * area; i++, j++) {
181  if (j == area) {
182  k++;
183  j = 0;
184  }
185 
186  s->lut[i] = k;
187  }
188 }
189 
191 {
192  AVFilterContext *ctx = inlink->dst;
194  AverageBlurContext *s = ctx->priv;
195 
196  s->depth = desc->comp[0].depth;
197  s->max = 1 << s->depth;
198  s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
199  s->planewidth[0] = s->planewidth[3] = inlink->w;
200  s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
201  s->planeheight[0] = s->planeheight[3] = inlink->h;
202 
203  s->nb_planes = av_pix_fmt_count_planes(inlink->format);
204 
205  s->buffer = av_calloc(inlink->w + (1024 * 2 + 1), 4 * ((s->depth + 7) / 8));
206  if (!s->buffer)
207  return AVERROR(ENOMEM);
208 
209  if (s->radiusV <= 0)
210  s->radiusV = s->radius;
211 
212  s->filter[0] = s->depth <= 8 ? filter_lut8 : filter_lut16;
213  s->filter[1] = s->depth <= 8 ? filter_slow8 : filter_slow16;
214 
215  s->radius = FFMIN(s->planewidth[1] / 2, s->radius);
216  s->radiusV = FFMIN(s->planeheight[1] / 2, s->radiusV);
217 
218  build_lut(ctx, s->max);
219 
220  return 0;
221 }
222 
223 static void averageiir2d(AVFilterContext *ctx, AVFrame *in, AVFrame *out, int plane)
224 {
225  AverageBlurContext *s = ctx->priv;
226  const int width = s->planewidth[plane];
227  const int height = s->planeheight[plane];
228  const int slow = (s->max * s->area) >= FF_ARRAY_ELEMS(s->lut);
229  ThreadData td;
230 
231  td.width = width;
232  td.height = height;
233  td.ptr = in->data[plane];
234  td.linesize = in->linesize[plane];
235  td.dptr = out->data[plane];
236  td.dlinesize = out->linesize[plane];
237  s->filter[slow](ctx, &td, 0, 0);
238 }
239 
240 static const enum AVPixelFormat pix_fmts[] = {
260 };
261 
263 {
264  AVFilterContext *ctx = inlink->dst;
265  AverageBlurContext *s = ctx->priv;
266  AVFilterLink *outlink = ctx->outputs[0];
267  AVFrame *out;
268  int plane;
269 
270  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
271  if (!out) {
272  av_frame_free(&in);
273  return AVERROR(ENOMEM);
274  }
276 
277  for (plane = 0; plane < s->nb_planes; plane++) {
278  const int height = s->planeheight[plane];
279  const int width = s->planewidth[plane];
280 
281  if (!(s->planes & (1 << plane))) {
282  if (out != in)
283  av_image_copy_plane(out->data[plane], out->linesize[plane],
284  in->data[plane], in->linesize[plane],
285  width * ((s->depth + 7) / 8), height);
286  continue;
287  }
288 
289  averageiir2d(ctx, in, out, plane);
290  }
291 
292  av_frame_free(&in);
293  return ff_filter_frame(outlink, out);
294 }
295 
296 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
297  char *res, int res_len, int flags)
298 {
299  AverageBlurContext *s = ctx->priv;
300  const int area = s->area;
301  int ret;
302 
303  ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
304  if (ret < 0)
305  return ret;
306 
307  if (s->radiusV <= 0)
308  s->radiusV = s->radius;
309 
310  s->radius = FFMIN(s->planewidth[1] / 2, s->radius);
311  s->radiusV = FFMIN(s->planeheight[1] / 2, s->radiusV);
312 
313  if (area != (2 * s->radiusV + 1) * (2 * s->radius + 1))
314  build_lut(ctx, s->max);
315 
316  return 0;
317 }
318 
320 {
321  AverageBlurContext *s = ctx->priv;
322 
323  av_freep(&s->buffer);
324 }
325 
326 static const AVFilterPad avgblur_inputs[] = {
327  {
328  .name = "default",
329  .type = AVMEDIA_TYPE_VIDEO,
330  .config_props = config_input,
331  .filter_frame = filter_frame,
332  },
333 };
334 
335 static const AVFilterPad avgblur_outputs[] = {
336  {
337  .name = "default",
338  .type = AVMEDIA_TYPE_VIDEO,
339  },
340 };
341 
343  .name = "avgblur",
344  .description = NULL_IF_CONFIG_SMALL("Apply Average Blur filter."),
345  .priv_size = sizeof(AverageBlurContext),
346  .priv_class = &avgblur_class,
347  .uninit = uninit,
352  .process_command = process_command,
353 };
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
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
AverageBlurContext::radiusV
int radiusV
Definition: vf_avgblur.c:36
out
FILE * out
Definition: movenc.c:54
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1018
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2660
FILTER_PIXFMTS_ARRAY
#define FILTER_PIXFMTS_ARRAY(array)
Definition: internal.h:171
AverageBlurContext::area
int area
Definition: vf_avgblur.c:41
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_unused
#define av_unused
Definition: attributes.h:131
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
AV_PIX_FMT_YUVA422P9
#define AV_PIX_FMT_YUVA422P9
Definition: pixfmt.h:439
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:317
pixdesc.h
AV_PIX_FMT_YUVA420P16
#define AV_PIX_FMT_YUVA420P16
Definition: pixfmt.h:446
ThreadData::dptr
void * dptr
Definition: vf_avgblur.c:67
AV_PIX_FMT_YUVA420P10
#define AV_PIX_FMT_YUVA420P10
Definition: pixfmt.h:441
AVOption
AVOption.
Definition: opt.h:247
AverageBlurContext::max
int max
Definition: vf_avgblur.c:40
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:404
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
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_avgblur.c:319
video.h
AV_PIX_FMT_YUVA422P10
#define AV_PIX_FMT_YUVA422P10
Definition: pixfmt.h:442
ThreadData::width
int width
Definition: vf_avgblur.c:65
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
formats.h
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2700
AV_PIX_FMT_YUVA420P9
#define AV_PIX_FMT_YUVA420P9
Definition: pixfmt.h:438
AverageBlurContext::planeheight
int planeheight[4]
Definition: vf_avgblur.c:43
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
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
AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:402
FLAGS
#define FLAGS
Definition: vf_avgblur.c:52
AV_PIX_FMT_GRAY16
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:388
ff_vf_avgblur
const AVFilter ff_vf_avgblur
Definition: vf_avgblur.c:342
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
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:248
AverageBlurContext::radius
int radius
Definition: vf_avgblur.c:35
avassert.h
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:90
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
width
#define width
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
LUT_DIV
#define LUT_DIV(sum, area)
Definition: vf_avgblur.c:71
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
ThreadData::height
int height
Definition: vf_avgblur.c:64
ThreadData::linesize
int linesize
Definition: vf_avgblur.c:68
AV_PIX_FMT_YUVA444P12
#define AV_PIX_FMT_YUVA444P12
Definition: pixfmt.h:445
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
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_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
planes
static const struct @321 planes[]
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
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
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:537
avgblur_inputs
static const AVFilterPad avgblur_inputs[]
Definition: vf_avgblur.c:326
SLOW_DIV
#define SLOW_DIV(sum, area)
Definition: vf_avgblur.c:72
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
AverageBlurContext::lut
uint16_t lut[256 *256 *256]
Definition: vf_avgblur.c:45
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
AV_PIX_FMT_GBRP9
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:419
avgblur_options
static const AVOption avgblur_options[]
Definition: vf_avgblur.c:54
AverageBlurContext::depth
int depth
Definition: vf_avgblur.c:39
avgblur_outputs
static const AVFilterPad avgblur_outputs[]
Definition: vf_avgblur.c:335
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
AverageBlurContext::planewidth
int planewidth[4]
Definition: vf_avgblur.c:42
FILTER
#define FILTER(name, type, btype, lutunused, areaunused, lutdiv)
Definition: vf_avgblur.c:74
AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:409
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:411
AverageBlurContext::buffer
void * buffer
Definition: vf_avgblur.c:44
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
height
#define height
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
AV_PIX_FMT_YUVA444P10
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:443
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: vf_avgblur.c:240
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
build_lut
static void build_lut(AVFilterContext *ctx, int max)
Definition: vf_avgblur.c:171
OFFSET
#define OFFSET(x)
Definition: vf_avgblur.c:51
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
ThreadData::ptr
const void * ptr
Definition: vf_avgblur.c:66
AV_PIX_FMT_GBRP12
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:421
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
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:56
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Definition: mem.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_YUVA444P9
#define AV_PIX_FMT_YUVA444P9
Definition: pixfmt.h:440
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
averageiir2d
static void averageiir2d(AVFilterContext *ctx, AVFrame *in, AVFrame *out, int plane)
Definition: vf_avgblur.c:223
AverageBlurContext
Definition: vf_avgblur.c:32
ThreadData::dlinesize
int dlinesize
Definition: vf_avgblur.c:68
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AV_PIX_FMT_YUVA422P12
#define AV_PIX_FMT_YUVA422P12
Definition: pixfmt.h:444
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
avfilter.h
AverageBlurContext::filter
int(* filter[2])(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_avgblur.c:48
AverageBlurContext::nb_planes
int nb_planes
Definition: vf_avgblur.c:46
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
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_avgblur.c:262
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
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
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
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
int32_t
int32_t
Definition: audioconvert.c:56
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_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:410
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
int
int
Definition: ffmpeg_filter.c:153
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(avgblur)
AverageBlurContext::planes
int planes
Definition: vf_avgblur.c:37
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: vf_avgblur.c:296
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_avgblur.c:190
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