FFmpeg  4.4.8
vf_unsharp.c
Go to the documentation of this file.
1 /*
2  * Original copyright (c) 2002 Remi Guyomarch <rguyom@pobox.com>
3  * Port copyright (c) 2010 Daniel G. Taylor <dan@programmer-art.org>
4  * Relicensed to the LGPL with permission from Remi Guyomarch.
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * blur / sharpen filter, ported to FFmpeg from MPlayer
26  * libmpcodecs/unsharp.c.
27  *
28  * This code is based on:
29  *
30  * An Efficient algorithm for Gaussian blur using finite-state machines
31  * Frederick M. Waltz and John W. V. Miller
32  *
33  * SPIE Conf. on Machine Vision Systems for Inspection and Metrology VII
34  * Originally published Boston, Nov 98
35  *
36  * http://www.engin.umd.umich.edu/~jwvm/ece581/21_GBlur.pdf
37  */
38 
39 #include "avfilter.h"
40 #include "filters.h"
41 #include "formats.h"
42 #include "internal.h"
43 #include "video.h"
44 #include "libavutil/common.h"
45 #include "libavutil/imgutils.h"
46 #include "libavutil/mem.h"
47 #include "libavutil/opt.h"
48 #include "libavutil/pixdesc.h"
49 #include "unsharp.h"
50 
51 typedef struct TheadData {
53  uint8_t *dst;
54  const uint8_t *src;
57  int width;
58  int height;
59 } ThreadData;
60 
61 #define DEF_UNSHARP_SLICE_FUNC(name, nbits) \
62 static int name##_##nbits(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) \
63 { \
64  ThreadData *td = arg; \
65  UnsharpFilterParam *fp = td->fp; \
66  UnsharpContext *s = ctx->priv; \
67  uint32_t **sc = fp->sc; \
68  uint32_t *sr = fp->sr; \
69  const uint##nbits##_t *src2 = NULL; \
70  const int amount = fp->amount; \
71  const int steps_x = fp->steps_x; \
72  const int steps_y = fp->steps_y; \
73  const int scalebits = fp->scalebits; \
74  const int32_t halfscale = fp->halfscale; \
75  \
76  uint##nbits##_t *dst = (uint##nbits##_t*)td->dst; \
77  const uint##nbits##_t *src = (const uint##nbits##_t *)td->src; \
78  int dst_stride = td->dst_stride; \
79  int src_stride = td->src_stride; \
80  const int width = td->width; \
81  const int height = td->height; \
82  const int sc_offset = jobnr * 2 * steps_y; \
83  const int sr_offset = jobnr * (MAX_MATRIX_SIZE - 1); \
84  const int slice_start = ff_slice_pos(height, jobnr, nb_jobs); \
85  const int slice_end = ff_slice_pos(height, jobnr + 1, nb_jobs); \
86  \
87  int32_t res; \
88  int x, y, z; \
89  uint32_t tmp1, tmp2; \
90  \
91  if (!amount) { \
92  av_image_copy_plane(td->dst + slice_start * dst_stride, dst_stride, \
93  td->src + slice_start * src_stride, src_stride, \
94  width * s->bps, slice_end - slice_start); \
95  return 0; \
96  } \
97  \
98  for (y = 0; y < 2 * steps_y; y++) \
99  memset(sc[sc_offset + y], 0, sizeof(sc[y][0]) * (width + 2 * steps_x)); \
100  \
101  dst_stride = dst_stride / s->bps; \
102  src_stride = src_stride / s->bps; \
103  /* if this is not the first tile, we start from (slice_start - steps_y) */ \
104  /* so we can get smooth result at slice boundary */ \
105  if (slice_start > steps_y) { \
106  src += (slice_start - steps_y) * src_stride; \
107  dst += (slice_start - steps_y) * dst_stride; \
108  } \
109  \
110  for (y = -steps_y + slice_start; y < steps_y + slice_end; y++) { \
111  if (y < height) \
112  src2 = src; \
113  \
114  memset(sr + sr_offset, 0, sizeof(sr[0]) * (2 * steps_x - 1)); \
115  for (x = -steps_x; x < width + steps_x; x++) { \
116  tmp1 = x <= 0 ? src2[0] : x >= width ? src2[width-1] : src2[x]; \
117  for (z = 0; z < steps_x * 2; z += 2) { \
118  tmp2 = sr[sr_offset + z + 0] + tmp1; sr[sr_offset + z + 0] = tmp1; \
119  tmp1 = sr[sr_offset + z + 1] + tmp2; sr[sr_offset + z + 1] = tmp2; \
120  } \
121  for (z = 0; z < steps_y * 2; z += 2) { \
122  tmp2 = sc[sc_offset + z + 0][x + steps_x] + tmp1; \
123  sc[sc_offset + z + 0][x + steps_x] = tmp1; \
124  tmp1 = sc[sc_offset + z + 1][x + steps_x] + tmp2; \
125  sc[sc_offset + z + 1][x + steps_x] = tmp2; \
126  } \
127  if (x >= steps_x && y >= (steps_y + slice_start)) { \
128  const uint##nbits##_t *srx = src - steps_y * src_stride + x - steps_x; \
129  uint##nbits##_t *dsx = dst - steps_y * dst_stride + x - steps_x; \
130  \
131  res = (int32_t)*srx + ((((int32_t) * srx - \
132  (int32_t)((tmp1 + halfscale) >> scalebits)) * amount) >> (8+nbits)); \
133  *dsx = av_clip_uint##nbits(res); \
134  } \
135  } \
136  if (y >= 0) { \
137  dst += dst_stride; \
138  src += src_stride; \
139  } \
140  } \
141  return 0; \
142 }
143 DEF_UNSHARP_SLICE_FUNC(unsharp_slice, 16)
144 DEF_UNSHARP_SLICE_FUNC(unsharp_slice, 8)
145 
147 {
148  AVFilterLink *inlink = ctx->inputs[0];
149  UnsharpContext *s = ctx->priv;
150  int i, plane_w[3], plane_h[3];
152  ThreadData td;
153 
154  plane_w[0] = inlink->w;
155  plane_w[1] = plane_w[2] = AV_CEIL_RSHIFT(inlink->w, s->hsub);
156  plane_h[0] = inlink->h;
157  plane_h[1] = plane_h[2] = AV_CEIL_RSHIFT(inlink->h, s->vsub);
158  fp[0] = &s->luma;
159  fp[1] = fp[2] = &s->chroma;
160  for (i = 0; i < 3; i++) {
161  td.fp = fp[i];
162  td.dst = out->data[i];
163  td.src = in->data[i];
164  td.width = plane_w[i];
165  td.height = plane_h[i];
166  td.dst_stride = out->linesize[i];
167  td.src_stride = in->linesize[i];
168  ctx->internal->execute(ctx, s->unsharp_slice, &td, NULL, FFMIN(plane_h[i], s->nb_threads));
169  }
170  return 0;
171 }
172 
173 static void set_filter_param(UnsharpFilterParam *fp, int msize_x, int msize_y, float amount)
174 {
175  fp->msize_x = msize_x;
176  fp->msize_y = msize_y;
177  fp->amount = amount * 65536.0;
178 
179  fp->steps_x = msize_x / 2;
180  fp->steps_y = msize_y / 2;
181  fp->scalebits = (fp->steps_x + fp->steps_y) * 2;
182  fp->halfscale = 1 << (fp->scalebits - 1);
183 }
184 
186 {
187  UnsharpContext *s = ctx->priv;
188 
189  set_filter_param(&s->luma, s->lmsize_x, s->lmsize_y, s->lamount);
190  set_filter_param(&s->chroma, s->cmsize_x, s->cmsize_y, s->camount);
191 
192  if (s->luma.scalebits >= 26 || s->chroma.scalebits >= 26) {
193  av_log(ctx, AV_LOG_ERROR, "luma or chroma matrix size too big\n");
194  return AVERROR(EINVAL);
195  }
196  s->apply_unsharp = apply_unsharp_c;
197  return 0;
198 }
199 
201 {
202  static const enum AVPixelFormat pix_fmts[] = {
210  };
211 
213  if (!fmts_list)
214  return AVERROR(ENOMEM);
215  return ff_set_common_formats(ctx, fmts_list);
216 }
217 
218 static int init_filter_param(AVFilterContext *ctx, UnsharpFilterParam *fp, const char *effect_type, int width)
219 {
220  int z;
221  UnsharpContext *s = ctx->priv;
222  const char *effect = fp->amount == 0 ? "none" : fp->amount < 0 ? "blur" : "sharpen";
223 
224  if (!(fp->msize_x & fp->msize_y & 1)) {
226  "Invalid even size for %s matrix size %dx%d\n",
227  effect_type, fp->msize_x, fp->msize_y);
228  return AVERROR(EINVAL);
229  }
230 
231  av_log(ctx, AV_LOG_VERBOSE, "effect:%s type:%s msize_x:%d msize_y:%d amount:%0.2f\n",
232  effect, effect_type, fp->msize_x, fp->msize_y, fp->amount / 65535.0);
233 
234  fp->sr = av_malloc_array((MAX_MATRIX_SIZE - 1) * s->nb_threads, sizeof(uint32_t));
235  fp->sc = av_mallocz_array(2 * fp->steps_y * s->nb_threads, sizeof(uint32_t *));
236  if (!fp->sr || !fp->sc)
237  return AVERROR(ENOMEM);
238 
239  for (z = 0; z < 2 * fp->steps_y * s->nb_threads; z++)
240  if (!(fp->sc[z] = av_malloc_array(width + 2 * fp->steps_x,
241  sizeof(*(fp->sc[z])))))
242  return AVERROR(ENOMEM);
243 
244  return 0;
245 }
246 
247 static int config_input(AVFilterLink *inlink)
248 {
249  UnsharpContext *s = inlink->dst->priv;
251  int ret;
252 
253  s->hsub = desc->log2_chroma_w;
254  s->vsub = desc->log2_chroma_h;
255  s->bitdepth = desc->comp[0].depth;
256  s->bps = s->bitdepth > 8 ? 2 : 1;
257  s->unsharp_slice = s->bitdepth > 8 ? unsharp_slice_16 : unsharp_slice_8;
258 
259  // ensure (height / nb_threads) > 4 * steps_y,
260  // so that we don't have too much overlap between two threads
261  s->nb_threads = FFMIN(ff_filter_get_nb_threads(inlink->dst),
262  inlink->h / (4 * s->luma.steps_y));
263 
264  ret = init_filter_param(inlink->dst, &s->luma, "luma", inlink->w);
265  if (ret < 0)
266  return ret;
267  ret = init_filter_param(inlink->dst, &s->chroma, "chroma", AV_CEIL_RSHIFT(inlink->w, s->hsub));
268  if (ret < 0)
269  return ret;
270 
271  return 0;
272 }
273 
274 static void free_filter_param(UnsharpFilterParam *fp, int nb_threads)
275 {
276  int z;
277 
278  if (fp->sc) {
279  for (z = 0; z < 2 * fp->steps_y * nb_threads; z++)
280  av_freep(&fp->sc[z]);
281  av_freep(&fp->sc);
282  }
283  av_freep(&fp->sr);
284 }
285 
287 {
288  UnsharpContext *s = ctx->priv;
289 
290  free_filter_param(&s->luma, s->nb_threads);
291  free_filter_param(&s->chroma, s->nb_threads);
292 }
293 
294 static int filter_frame(AVFilterLink *link, AVFrame *in)
295 {
296  UnsharpContext *s = link->dst->priv;
297  AVFilterLink *outlink = link->dst->outputs[0];
298  AVFrame *out;
299  int ret = 0;
300 
301  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
302  if (!out) {
303  av_frame_free(&in);
304  return AVERROR(ENOMEM);
305  }
307 
308  ret = s->apply_unsharp(link->dst, in, out);
309 
310  av_frame_free(&in);
311 
312  if (ret < 0) {
313  av_frame_free(&out);
314  return ret;
315  }
316  return ff_filter_frame(outlink, out);
317 }
318 
319 #define OFFSET(x) offsetof(UnsharpContext, x)
320 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
321 #define MIN_SIZE 3
322 #define MAX_SIZE 23
323 static const AVOption unsharp_options[] = {
324  { "luma_msize_x", "set luma matrix horizontal size", OFFSET(lmsize_x), AV_OPT_TYPE_INT, { .i64 = 5 }, MIN_SIZE, MAX_SIZE, FLAGS },
325  { "lx", "set luma matrix horizontal size", OFFSET(lmsize_x), AV_OPT_TYPE_INT, { .i64 = 5 }, MIN_SIZE, MAX_SIZE, FLAGS },
326  { "luma_msize_y", "set luma matrix vertical size", OFFSET(lmsize_y), AV_OPT_TYPE_INT, { .i64 = 5 }, MIN_SIZE, MAX_SIZE, FLAGS },
327  { "ly", "set luma matrix vertical size", OFFSET(lmsize_y), AV_OPT_TYPE_INT, { .i64 = 5 }, MIN_SIZE, MAX_SIZE, FLAGS },
328  { "luma_amount", "set luma effect strength", OFFSET(lamount), AV_OPT_TYPE_FLOAT, { .dbl = 1 }, -2, 5, FLAGS },
329  { "la", "set luma effect strength", OFFSET(lamount), AV_OPT_TYPE_FLOAT, { .dbl = 1 }, -2, 5, FLAGS },
330  { "chroma_msize_x", "set chroma matrix horizontal size", OFFSET(cmsize_x), AV_OPT_TYPE_INT, { .i64 = 5 }, MIN_SIZE, MAX_SIZE, FLAGS },
331  { "cx", "set chroma matrix horizontal size", OFFSET(cmsize_x), AV_OPT_TYPE_INT, { .i64 = 5 }, MIN_SIZE, MAX_SIZE, FLAGS },
332  { "chroma_msize_y", "set chroma matrix vertical size", OFFSET(cmsize_y), AV_OPT_TYPE_INT, { .i64 = 5 }, MIN_SIZE, MAX_SIZE, FLAGS },
333  { "cy", "set chroma matrix vertical size", OFFSET(cmsize_y), AV_OPT_TYPE_INT, { .i64 = 5 }, MIN_SIZE, MAX_SIZE, FLAGS },
334  { "chroma_amount", "set chroma effect strength", OFFSET(camount), AV_OPT_TYPE_FLOAT, { .dbl = 0 }, -2, 5, FLAGS },
335  { "ca", "set chroma effect strength", OFFSET(camount), AV_OPT_TYPE_FLOAT, { .dbl = 0 }, -2, 5, FLAGS },
336  { "opencl", "ignored", OFFSET(opencl), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, FLAGS },
337  { NULL }
338 };
339 
341 
343  {
344  .name = "default",
345  .type = AVMEDIA_TYPE_VIDEO,
346  .filter_frame = filter_frame,
347  .config_props = config_input,
348  },
349  { NULL }
350 };
351 
353  {
354  .name = "default",
355  .type = AVMEDIA_TYPE_VIDEO,
356  },
357  { NULL }
358 };
359 
361  .name = "unsharp",
362  .description = NULL_IF_CONFIG_SMALL("Sharpen or blur the input video."),
363  .priv_size = sizeof(UnsharpContext),
364  .priv_class = &unsharp_class,
365  .init = init,
366  .uninit = uninit,
371 };
static const AVFilterPad inputs[]
Definition: af_acontrast.c:193
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
#define av_cold
Definition: attributes.h:88
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
uint8_t
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1096
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:802
Main libavfilter public API header.
#define flags(name, subs,...)
Definition: cbs_av1.c:572
#define s(width, name)
Definition: cbs_vp9.c:257
common internal and external API header
#define FFMIN(a, b)
Definition: common.h:105
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
#define NULL
Definition: coverity.c:32
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:587
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:286
@ AV_OPT_TYPE_INT
Definition: opt.h:225
@ AV_OPT_TYPE_FLOAT
Definition: opt.h:228
@ AV_OPT_TYPE_BOOL
Definition: opt.h:242
#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:126
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:117
#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:203
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:658
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:210
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:194
void * av_mallocz_array(size_t nmemb, size_t size)
Allocate a memory block for an array with av_mallocz().
Definition: mem.c:190
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
misc image utilities
int i
Definition: input.c:407
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:309
const char * desc
Definition: libsvtav1.c:79
Memory handling functions.
AVOptions.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2573
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:410
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:406
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:398
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:399
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:405
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:397
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:403
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:404
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:400
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:396
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
@ 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_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:99
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:70
@ 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
@ 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_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:73
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:71
@ 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_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
@ 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
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:411
#define AV_PIX_FMT_YUV440P10
Definition: pixfmt.h:401
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:412
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:402
#define td
Definition: regdef.h:70
#define fp
Definition: regdef.h:44
An instance of a filter.
Definition: avfilter.h:341
void * priv
private data for use by the filter
Definition: avfilter.h:356
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:353
A list of supported formats for one end of a filter link.
Definition: formats.h:65
A filter pad used for either input or output.
Definition: internal.h:54
const char * name
Pad name.
Definition: internal.h:60
Filter definition.
Definition: avfilter.h:145
const char * name
Filter name.
Definition: avfilter.h:149
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1699
This structure describes decoded (raw) audio or video data.
Definition: frame.h:318
AVOption.
Definition: opt.h:248
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
Used for passing data between threads.
Definition: dsddec.c:67
int src_stride
Definition: vf_unsharp.c:56
UnsharpFilterParam * fp
Definition: vf_unsharp.c:52
int dst_stride
Definition: vf_unsharp.c:55
#define av_malloc_array(a, b)
#define av_freep(p)
#define av_log(a,...)
#define src
Definition: vp8dsp.c:255
FILE * out
Definition: movenc.c:54
AVFormatContext * ctx
Definition: movenc.c:48
#define height
#define width
#define MAX_MATRIX_SIZE
Definition: unsharp.h:29
static int apply_unsharp_c(AVFilterContext *ctx, AVFrame *in, AVFrame *out)
Definition: vf_unsharp.c:146
#define MAX_SIZE
Definition: vf_unsharp.c:322
#define MIN_SIZE
Definition: vf_unsharp.c:321
static void free_filter_param(UnsharpFilterParam *fp, int nb_threads)
Definition: vf_unsharp.c:274
static void set_filter_param(UnsharpFilterParam *fp, int msize_x, int msize_y, float amount)
Definition: vf_unsharp.c:173
static int filter_frame(AVFilterLink *link, AVFrame *in)
Definition: vf_unsharp.c:294
static int query_formats(AVFilterContext *ctx)
Definition: vf_unsharp.c:200
static const AVFilterPad avfilter_vf_unsharp_inputs[]
Definition: vf_unsharp.c:342
static int config_input(AVFilterLink *inlink)
Definition: vf_unsharp.c:247
#define FLAGS
Definition: vf_unsharp.c:320
static int init_filter_param(AVFilterContext *ctx, UnsharpFilterParam *fp, const char *effect_type, int width)
Definition: vf_unsharp.c:218
static const AVFilterPad avfilter_vf_unsharp_outputs[]
Definition: vf_unsharp.c:352
AVFILTER_DEFINE_CLASS(unsharp)
AVFilter ff_vf_unsharp
Definition: vf_unsharp.c:360
static av_cold int init(AVFilterContext *ctx)
Definition: vf_unsharp.c:185
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_unsharp.c:286
#define DEF_UNSHARP_SLICE_FUNC(name, nbits)
Definition: vf_unsharp.c:61
#define OFFSET(x)
Definition: vf_unsharp.c:319
static const AVOption unsharp_options[]
Definition: vf_unsharp.c:323
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:104