FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_maskedclamp.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Paul B Mahol
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "libavutil/imgutils.h"
22 #include "libavutil/pixdesc.h"
23 #include "libavutil/opt.h"
24 #include "avfilter.h"
25 #include "formats.h"
26 #include "internal.h"
27 #include "video.h"
28 #include "framesync.h"
29 
30 #define OFFSET(x) offsetof(MaskedClampContext, x)
31 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
32 
33 typedef struct MaskedClampContext {
34  const AVClass *class;
35 
36  int planes;
38  int overshoot;
39 
40  int width[4], height[4];
41  int nb_planes;
42  int depth;
44 
45  void (*maskedclamp)(const uint8_t *bsrc, const uint8_t *osrc,
46  const uint8_t *msrc, uint8_t *dst,
47  ptrdiff_t blinesize, ptrdiff_t darklinesize,
48  ptrdiff_t brightlinesize, ptrdiff_t destlinesize,
49  int w, int h, int undershoot, int overshoot);
51 
52 static const AVOption maskedclamp_options[] = {
53  { "undershoot", "set undershoot", OFFSET(undershoot), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, FLAGS },
54  { "overshoot", "set overshoot", OFFSET(overshoot), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, FLAGS },
55  { "planes", "set planes", OFFSET(planes), AV_OPT_TYPE_INT, {.i64=0xF}, 0, 0xF, FLAGS },
56  { NULL }
57 };
58 
59 AVFILTER_DEFINE_CLASS(maskedclamp);
60 
62 {
63  static const enum AVPixelFormat pix_fmts[] = {
82  };
83 
84  return ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
85 }
86 
87 static int process_frame(FFFrameSync *fs)
88 {
89  AVFilterContext *ctx = fs->parent;
91  AVFilterLink *outlink = ctx->outputs[0];
92  AVFrame *out, *base, *dark, *bright;
93  int ret;
94 
95  if ((ret = ff_framesync_get_frame(&s->fs, 0, &base, 0)) < 0 ||
96  (ret = ff_framesync_get_frame(&s->fs, 1, &dark, 0)) < 0 ||
97  (ret = ff_framesync_get_frame(&s->fs, 2, &bright, 0)) < 0)
98  return ret;
99 
100  if (ctx->is_disabled) {
101  out = av_frame_clone(base);
102  if (!out)
103  return AVERROR(ENOMEM);
104  } else {
105  int p;
106 
107  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
108  if (!out)
109  return AVERROR(ENOMEM);
110  av_frame_copy_props(out, base);
111 
112  for (p = 0; p < s->nb_planes; p++) {
113  if (!((1 << p) & s->planes)) {
114  av_image_copy_plane(out->data[p], out->linesize[p], base->data[p], base->linesize[p],
115  s->width[p], s->height[p]);
116  continue;
117  }
118 
119  s->maskedclamp(base->data[p], dark->data[p],
120  bright->data[p], out->data[p],
121  base->linesize[p], dark->linesize[p],
122  bright->linesize[p], out->linesize[p],
123  s->width[p], s->height[p],
124  s->undershoot, s->overshoot);
125  }
126  }
127  out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
128 
129  return ff_filter_frame(outlink, out);
130 }
131 
132 static void maskedclamp8(const uint8_t *bsrc, const uint8_t *darksrc,
133  const uint8_t *brightsrc, uint8_t *dst,
134  ptrdiff_t blinesize, ptrdiff_t darklinesize,
135  ptrdiff_t brightlinesize, ptrdiff_t dlinesize,
136  int w, int h,
137  int undershoot, int overshoot)
138 {
139  int x, y;
140 
141  for (y = 0; y < h; y++) {
142  for (x = 0; x < w; x++) {
143  if (bsrc[x] < darksrc[x] - undershoot)
144  dst[x] = darksrc[x] - undershoot;
145  else if (bsrc[x] > brightsrc[x] + overshoot)
146  dst[x] = brightsrc[x] + overshoot;
147  else
148  dst[x] = bsrc[x];
149  }
150 
151  dst += dlinesize;
152  bsrc += blinesize;
153  darksrc += darklinesize;
154  brightsrc += brightlinesize;
155  }
156 }
157 
158 static void maskedclamp16(const uint8_t *bbsrc, const uint8_t *oosrc,
159  const uint8_t *mmsrc, uint8_t *ddst,
160  ptrdiff_t blinesize, ptrdiff_t darklinesize,
161  ptrdiff_t brightlinesize, ptrdiff_t dlinesize,
162  int w, int h,
163  int undershoot, int overshoot)
164 {
165  const uint16_t *bsrc = (const uint16_t *)bbsrc;
166  const uint16_t *darksrc = (const uint16_t *)oosrc;
167  const uint16_t *brightsrc = (const uint16_t *)mmsrc;
168  uint16_t *dst = (uint16_t *)ddst;
169  int x, y;
170 
171  dlinesize /= 2;
172  blinesize /= 2;
173  darklinesize /= 2;
174  brightlinesize /= 2;
175 
176  for (y = 0; y < h; y++) {
177  for (x = 0; x < w; x++) {
178  if (bsrc[x] < darksrc[x] - undershoot)
179  dst[x] = darksrc[x] - undershoot;
180  else if (bsrc[x] > brightsrc[x] + overshoot)
181  dst[x] = brightsrc[x] + overshoot;
182  else
183  dst[x] = bsrc[x];
184  }
185 
186  dst += dlinesize;
187  bsrc += blinesize;
188  darksrc += darklinesize;
189  brightsrc += brightlinesize;
190  }
191 }
192 
193 static int config_input(AVFilterLink *inlink)
194 {
195  AVFilterContext *ctx = inlink->dst;
196  MaskedClampContext *s = ctx->priv;
198  int vsub, hsub;
199 
201 
202  hsub = desc->log2_chroma_w;
203  vsub = desc->log2_chroma_h;
204  s->height[1] = s->height[2] = AV_CEIL_RSHIFT(inlink->h, vsub);
205  s->height[0] = s->height[3] = inlink->h;
206  s->width[1] = s->width[2] = AV_CEIL_RSHIFT(inlink->w, hsub);
207  s->width[0] = s->width[3] = inlink->w;
208 
209  s->depth = desc->comp[0].depth;
210 
211  if (desc->comp[0].depth == 8)
213  else
215 
216  return 0;
217 }
218 
219 static int config_output(AVFilterLink *outlink)
220 {
221  AVFilterContext *ctx = outlink->src;
222  MaskedClampContext *s = ctx->priv;
223  AVFilterLink *base = ctx->inputs[0];
224  AVFilterLink *dark = ctx->inputs[1];
225  AVFilterLink *bright = ctx->inputs[2];
226  FFFrameSyncIn *in;
227  int ret;
228 
229  if (base->format != dark->format ||
230  base->format != bright->format) {
231  av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
232  return AVERROR(EINVAL);
233  }
234  if (base->w != dark->w ||
235  base->h != dark->h ||
238  base->w != bright->w ||
239  base->h != bright->h ||
240  base->sample_aspect_ratio.num != bright->sample_aspect_ratio.num ||
241  base->sample_aspect_ratio.den != bright->sample_aspect_ratio.den) {
242  av_log(ctx, AV_LOG_ERROR, "First input link %s parameters "
243  "(size %dx%d, SAR %d:%d) do not match the corresponding "
244  "second input link %s parameters (%dx%d, SAR %d:%d) "
245  "and/or third input link %s parameters (%dx%d, SAR %d:%d)\n",
246  ctx->input_pads[0].name, base->w, base->h,
247  base->sample_aspect_ratio.num,
248  base->sample_aspect_ratio.den,
249  ctx->input_pads[1].name, dark->w, dark->h,
250  dark->sample_aspect_ratio.num,
251  dark->sample_aspect_ratio.den,
252  ctx->input_pads[2].name, bright->w, bright->h,
253  bright->sample_aspect_ratio.num,
254  bright->sample_aspect_ratio.den);
255  return AVERROR(EINVAL);
256  }
257 
258  outlink->w = base->w;
259  outlink->h = base->h;
260  outlink->time_base = base->time_base;
261  outlink->sample_aspect_ratio = base->sample_aspect_ratio;
262  outlink->frame_rate = base->frame_rate;
263 
264  if ((ret = ff_framesync_init(&s->fs, ctx, 3)) < 0)
265  return ret;
266 
267  in = s->fs.in;
268  in[0].time_base = base->time_base;
269  in[1].time_base = dark->time_base;
270  in[2].time_base = bright->time_base;
271  in[0].sync = 1;
272  in[0].before = EXT_STOP;
273  in[0].after = EXT_INFINITY;
274  in[1].sync = 1;
275  in[1].before = EXT_STOP;
276  in[1].after = EXT_INFINITY;
277  in[2].sync = 1;
278  in[2].before = EXT_STOP;
279  in[2].after = EXT_INFINITY;
280  s->fs.opaque = s;
282 
283  return ff_framesync_configure(&s->fs);
284 }
285 
286 static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
287 {
288  MaskedClampContext *s = inlink->dst->priv;
289  return ff_framesync_filter_frame(&s->fs, inlink, buf);
290 }
291 
292 static int request_frame(AVFilterLink *outlink)
293 {
294  MaskedClampContext *s = outlink->src->priv;
295  return ff_framesync_request_frame(&s->fs, outlink);
296 }
297 
299 {
300  MaskedClampContext *s = ctx->priv;
301 
302  ff_framesync_uninit(&s->fs);
303 }
304 
305 static const AVFilterPad maskedclamp_inputs[] = {
306  {
307  .name = "base",
308  .type = AVMEDIA_TYPE_VIDEO,
309  .filter_frame = filter_frame,
310  .config_props = config_input,
311  },
312  {
313  .name = "dark",
314  .type = AVMEDIA_TYPE_VIDEO,
315  .filter_frame = filter_frame,
316  },
317  {
318  .name = "bright",
319  .type = AVMEDIA_TYPE_VIDEO,
320  .filter_frame = filter_frame,
321  },
322  { NULL }
323 };
324 
326  {
327  .name = "default",
328  .type = AVMEDIA_TYPE_VIDEO,
329  .config_props = config_output,
330  .request_frame = request_frame,
331  },
332  { NULL }
333 };
334 
336  .name = "maskedclamp",
337  .description = NULL_IF_CONFIG_SMALL("Clamp first stream with second stream and third stream."),
338  .priv_size = sizeof(MaskedClampContext),
339  .uninit = uninit,
341  .inputs = maskedclamp_inputs,
342  .outputs = maskedclamp_outputs,
343  .priv_class = &maskedclamp_class,
345 };
#define NULL
Definition: coverity.c:32
#define AV_PIX_FMT_YUVA422P16
Definition: pixfmt.h:378
const char * s
Definition: avisynth_c.h:768
#define AV_PIX_FMT_YUVA422P9
Definition: pixfmt.h:372
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2266
This structure describes decoded (raw) audio or video data.
Definition: frame.h:184
AVOption.
Definition: opt.h:245
#define AV_PIX_FMT_YUVA420P10
Definition: pixfmt.h:374
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:351
static const AVFilterPad maskedclamp_outputs[]
#define AV_PIX_FMT_YUVA422P10
Definition: pixfmt.h:375
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:67
misc image utilities
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2306
Main libavfilter public API header.
const char * desc
Definition: nvenc.c:101
static int config_output(AVFilterLink *outlink)
int(* on_event)(struct FFFrameSync *fs)
Callback called when a frame event is ready.
Definition: framesync.h:175
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:180
int num
Numerator.
Definition: rational.h:59
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:357
void(* maskedclamp)(const uint8_t *bsrc, const uint8_t *osrc, const uint8_t *msrc, uint8_t *dst, ptrdiff_t blinesize, ptrdiff_t darklinesize, ptrdiff_t brightlinesize, ptrdiff_t destlinesize, int w, int h, int undershoot, int overshoot)
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:345
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition: framesync.c:77
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
#define FLAGS
static void maskedclamp8(const uint8_t *bsrc, const uint8_t *darksrc, const uint8_t *brightsrc, uint8_t *dst, ptrdiff_t blinesize, ptrdiff_t darklinesize, ptrdiff_t brightlinesize, ptrdiff_t dlinesize, int w, int h, int undershoot, int overshoot)
int is_disabled
the enabled state from the last expression evaluation
Definition: avfilter.h:354
int64_t pts
Timestamp of the current event.
Definition: framesync.h:170
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:92
enum FFFrameSyncExtMode before
Extrapolation mode for timestamps before the first frame.
Definition: framesync.h:93
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
const char * name
Pad name.
Definition: internal.h:59
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:315
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1189
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:102
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:117
uint8_t
#define av_cold
Definition: attributes.h:82
AVOptions.
void * parent
Definition: framesync.h:155
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:268
FFFrameSyncIn * in
Pointer to array of inputs.
Definition: framesync.h:206
#define AV_PIX_FMT_YUVA420P9
Definition: pixfmt.h:371
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:356
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range...
Definition: pixfmt.h:101
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:75
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:354
static const AVFilterPad maskedclamp_inputs[]
enum FFFrameSyncExtMode after
Extrapolation mode for timestamps after the last frame.
Definition: framesync.h:98
Input stream structure.
Definition: framesync.h:83
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:346
#define AV_PIX_FMT_YUVA420P16
Definition: pixfmt.h:377
#define av_log(a,...)
#define OFFSET(x)
A filter pad used for either input or output.
Definition: internal.h:53
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
int ff_framesync_filter_frame(FFFrameSync *fs, AVFilterLink *inlink, AVFrame *in)
Accept a frame on a filter input.
Definition: framesync.c:300
AVFilterPad * input_pads
array of input pads
Definition: avfilter.h:314
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:188
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
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
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition: framesync.c:266
Frame sync structure.
Definition: framesync.h:153
static const AVOption maskedclamp_options[]
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
void * priv
private data for use by the filter
Definition: avfilter.h:322
#define AV_PIX_FMT_YUVA444P16
Definition: pixfmt.h:379
#define AV_PIX_FMT_GBRAP12
Definition: pixfmt.h:362
AVRational time_base
Time base for the incoming frames.
Definition: framesync.h:103
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:344
#define AV_PIX_FMT_GBRAP16
Definition: pixfmt.h:363
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:66
static int config_input(AVFilterLink *inlink)
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:339
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:360
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:325
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:74
int ff_framesync_request_frame(FFFrameSync *fs, AVFilterLink *outlink)
Request a frame on the filter output.
Definition: framesync.c:314
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
static av_cold void uninit(AVFilterContext *ctx)
AVFormatContext * ctx
Definition: movenc.c:48
AVRational time_base
Time base for the output events.
Definition: framesync.h:165
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:376
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:386
AVFilter ff_vf_maskedclamp
void * opaque
Opaque pointer, not used by the API.
Definition: framesync.h:180
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:340
#define AV_PIX_FMT_GBRP14
Definition: pixfmt.h:359
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:480
static void maskedclamp16(const uint8_t *bbsrc, const uint8_t *oosrc, const uint8_t *mmsrc, uint8_t *ddst, ptrdiff_t blinesize, ptrdiff_t darklinesize, ptrdiff_t brightlinesize, ptrdiff_t dlinesize, int w, int h, int undershoot, int overshoot)
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:352
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:376
#define AV_PIX_FMT_YUV420P14
Definition: pixfmt.h:349
Extend the frame to infinity.
Definition: framesync.h:77
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:215
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
void * buf
Definition: avisynth_c.h:690
int ff_framesync_init(FFFrameSync *fs, void *parent, unsigned nb_in)
Initialize a frame sync structure.
Definition: framesync.c:49
static int query_formats(AVFilterContext *ctx)
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:341
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:68
AVFILTER_DEFINE_CLASS(maskedclamp)
unsigned sync
Synchronization level: frames on input at the highest sync level will generate output frame events...
Definition: framesync.h:146
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:144
const char * name
Filter name.
Definition: avfilter.h:148
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:347
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:338
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition: avfilter.h:133
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:319
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
#define AV_PIX_FMT_YUV422P14
Definition: pixfmt.h:350
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:358
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:342
static int flags
Definition: cpu.c:47
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:348
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:198
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
Y , 8bpp.
Definition: pixfmt.h:70
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:229
#define AV_PIX_FMT_YUVA444P9
Definition: pixfmt.h:373
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:76
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:69
int den
Denominator.
Definition: rational.h:60
Completely stop all streams with this one.
Definition: framesync.h:67
static int process_frame(FFFrameSync *fs)
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:272
An instance of a filter.
Definition: avfilter.h:307
FILE * out
Definition: movenc.c:54
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:100
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
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
Definition: framesync.c:229
int depth
Number of bits in the component.
Definition: pixdesc.h:58
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:353
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:589
static int request_frame(AVFilterLink *outlink)
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58