FFmpeg
af_aresample.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  * Copyright (c) 2011 Mina Nagy Zaki
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 /**
23  * @file
24  * resampling audio filter
25  */
26 
27 #include "libavutil/avstring.h"
29 #include "libavutil/downmix_info.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/samplefmt.h"
32 #include "libavutil/avassert.h"
34 #include "avfilter.h"
35 #include "audio.h"
36 #include "filters.h"
37 #include "formats.h"
38 
39 typedef struct AResampleContext {
40  const AVClass *class;
42  double ratio;
43  struct SwrContext *swr;
45  int more_data;
46  int eof;
48 
50 {
51  AResampleContext *aresample = ctx->priv;
52 
53  aresample->next_pts = AV_NOPTS_VALUE;
54  aresample->swr = swr_alloc();
55  if (!aresample->swr)
56  return AVERROR(ENOMEM);
57 
58  return 0;
59 }
60 
62 {
63  AResampleContext *aresample = ctx->priv;
64  swr_free(&aresample->swr);
65 }
66 
67 static int query_formats(const AVFilterContext *ctx,
68  AVFilterFormatsConfig **cfg_in,
69  AVFilterFormatsConfig **cfg_out)
70 {
71  const AResampleContext *aresample = ctx->priv;
72  enum AVSampleFormat out_format;
73  AVChannelLayout out_layout = { 0 };
74  int64_t out_rate;
75 
76  AVFilterFormats *in_formats, *out_formats;
77  AVFilterFormats *in_samplerates, *out_samplerates;
78  AVFilterChannelLayouts *in_layouts, *out_layouts;
79  int ret;
80 
81  if (aresample->sample_rate_arg > 0)
82  av_opt_set_int(aresample->swr, "osr", aresample->sample_rate_arg, 0);
83  av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format);
84  av_opt_get_int(aresample->swr, "osr", 0, &out_rate);
85 
86  in_formats = ff_all_formats(AVMEDIA_TYPE_AUDIO);
87  if ((ret = ff_formats_ref(in_formats, &cfg_in[0]->formats)) < 0)
88  return ret;
89 
90  in_samplerates = ff_all_samplerates();
91  if ((ret = ff_formats_ref(in_samplerates, &cfg_in[0]->samplerates)) < 0)
92  return ret;
93 
94  in_layouts = ff_all_channel_counts();
95  if ((ret = ff_channel_layouts_ref(in_layouts, &cfg_in[0]->channel_layouts)) < 0)
96  return ret;
97 
98  if(out_rate > 0) {
99  int ratelist[] = { out_rate, -1 };
100  out_samplerates = ff_make_format_list(ratelist);
101  } else {
102  out_samplerates = ff_all_samplerates();
103  }
104 
105  if ((ret = ff_formats_ref(out_samplerates, &cfg_out[0]->samplerates)) < 0)
106  return ret;
107 
108  if(out_format != AV_SAMPLE_FMT_NONE) {
109  int formatlist[] = { out_format, -1 };
110  out_formats = ff_make_format_list(formatlist);
111  } else
112  out_formats = ff_all_formats(AVMEDIA_TYPE_AUDIO);
113  if ((ret = ff_formats_ref(out_formats, &cfg_out[0]->formats)) < 0)
114  return ret;
115 
116  av_opt_get_chlayout(aresample->swr, "ochl", 0, &out_layout);
117  if (av_channel_layout_check(&out_layout)) {
118  const AVChannelLayout layout_list[] = { out_layout, { 0 } };
119  out_layouts = ff_make_channel_layout_list(layout_list);
120  } else
121  out_layouts = ff_all_channel_counts();
122  av_channel_layout_uninit(&out_layout);
123 
124  return ff_channel_layouts_ref(out_layouts, &cfg_out[0]->channel_layouts);
125 }
126 
127 #define SWR_CH_MAX 64
128 
129 static int config_output(AVFilterLink *outlink)
130 {
131  int ret;
132  AVFilterContext *ctx = outlink->src;
133  AVFilterLink *inlink = ctx->inputs[0];
134  AResampleContext *aresample = ctx->priv;
135  AVChannelLayout out_layout = { 0 };
136  int64_t out_rate;
137  const AVFrameSideData *sd;
138  enum AVSampleFormat out_format;
139  char inchl_buf[128], outchl_buf[128];
140 
141  ret = swr_alloc_set_opts2(&aresample->swr,
142  &outlink->ch_layout, outlink->format, outlink->sample_rate,
143  &inlink->ch_layout, inlink->format, inlink->sample_rate,
144  0, ctx);
145  if (ret < 0)
146  return ret;
147 
148  sd = av_frame_side_data_get(inlink->side_data, inlink->nb_side_data,
150  if (sd) {
151  const AVDownmixInfo *di = (AVDownmixInfo *)sd->data;
153  double center_mix_level, surround_mix_level;
154 
155  switch (di->preferred_downmix_type) {
158  center_mix_level = di->center_mix_level_ltrt;
159  surround_mix_level = di->surround_mix_level_ltrt;
160  break;
163  center_mix_level = di->center_mix_level_ltrt;
164  surround_mix_level = di->surround_mix_level_ltrt;
165  break;
166  default:
167  center_mix_level = di->center_mix_level;
168  surround_mix_level = di->surround_mix_level;
169  break;
170  }
171 
172  av_log(ctx, AV_LOG_VERBOSE, "Mix levels: center %f - "
173  "surround %f - lfe %f.\n",
174  center_mix_level, surround_mix_level, di->lfe_mix_level);
175 
176  av_opt_set_double(aresample->swr, "clev", center_mix_level, 0);
177  av_opt_set_double(aresample->swr, "slev", surround_mix_level, 0);
178  av_opt_set_double(aresample->swr, "lfe_mix_level", di->lfe_mix_level, 0);
179  av_opt_set_int(aresample->swr, "matrix_encoding", matrix_encoding, 0);
180 
181  if (av_channel_layout_compare(&outlink->ch_layout, &out_layout))
182  av_frame_side_data_remove(&outlink->side_data, &outlink->nb_side_data,
184  }
185 
186  ret = swr_init(aresample->swr);
187  if (ret < 0)
188  return ret;
189 
190  av_opt_get_int(aresample->swr, "osr", 0, &out_rate);
191  av_opt_get_chlayout(aresample->swr, "ochl", 0, &out_layout);
192  av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format);
193  outlink->time_base = (AVRational) {1, out_rate};
194 
195  av_assert0(outlink->sample_rate == out_rate);
196  av_assert0(!av_channel_layout_compare(&outlink->ch_layout, &out_layout));
197  av_assert0(outlink->format == out_format);
198 
199  av_channel_layout_uninit(&out_layout);
200 
201  aresample->ratio = (double)outlink->sample_rate / inlink->sample_rate;
202 
203  av_channel_layout_describe(&inlink ->ch_layout, inchl_buf, sizeof(inchl_buf));
204  av_channel_layout_describe(&outlink->ch_layout, outchl_buf, sizeof(outchl_buf));
205 
206  av_log(ctx, AV_LOG_VERBOSE, "ch:%d chl:%s fmt:%s r:%dHz -> ch:%d chl:%s fmt:%s r:%dHz\n",
207  inlink ->ch_layout.nb_channels, inchl_buf, av_get_sample_fmt_name(inlink->format), inlink->sample_rate,
208  outlink->ch_layout.nb_channels, outchl_buf, av_get_sample_fmt_name(outlink->format), outlink->sample_rate);
209  return 0;
210 }
211 
212 static int filter_frame(AVFilterLink *inlink, AVFrame *insamplesref)
213 {
214  AVFilterContext *ctx = inlink->dst;
215  AResampleContext *aresample = ctx->priv;
216  const int n_in = insamplesref->nb_samples;
217  int64_t delay;
218  int n_out = n_in * aresample->ratio + 32;
219  AVFilterLink *const outlink = inlink->dst->outputs[0];
220  AVFrame *outsamplesref;
221  int ret;
222 
223  delay = swr_get_delay(aresample->swr, outlink->sample_rate);
224  if (delay > 0)
225  n_out += FFMIN(delay, FFMAX(4096, n_out));
226 
227  outsamplesref = ff_get_audio_buffer(outlink, n_out);
228 
229  if(!outsamplesref) {
230  av_frame_free(&insamplesref);
231  return AVERROR(ENOMEM);
232  }
233 
234  av_frame_copy_props(outsamplesref, insamplesref);
235  outsamplesref->format = outlink->format;
236  ret = av_channel_layout_copy(&outsamplesref->ch_layout, &outlink->ch_layout);
237  if (ret < 0) {
238  av_frame_free(&outsamplesref);
239  av_frame_free(&insamplesref);
240  return ret;
241  }
242  outsamplesref->sample_rate = outlink->sample_rate;
243 
244  if (av_channel_layout_compare(&outsamplesref->ch_layout, &insamplesref->ch_layout))
245  av_frame_side_data_remove_by_props(&outsamplesref->side_data, &outsamplesref->nb_side_data,
247 
248  if(insamplesref->pts != AV_NOPTS_VALUE) {
249  int64_t inpts = av_rescale(insamplesref->pts, inlink->time_base.num * (int64_t)outlink->sample_rate * inlink->sample_rate, inlink->time_base.den);
250  int64_t outpts= swr_next_pts(aresample->swr, inpts);
251  aresample->next_pts =
252  outsamplesref->pts = ROUNDED_DIV(outpts, inlink->sample_rate);
253  } else {
254  outsamplesref->pts = AV_NOPTS_VALUE;
255  }
256  n_out = swr_convert(aresample->swr, outsamplesref->extended_data, n_out,
257  (void *)insamplesref->extended_data, n_in);
258  if (n_out <= 0) {
259  av_frame_free(&outsamplesref);
260  av_frame_free(&insamplesref);
262  return 0;
263  }
264 
265  aresample->more_data = outsamplesref->nb_samples == n_out; // Indicate that there is probably more data in our buffers
266 
267  outsamplesref->nb_samples = n_out;
268 
269  ret = ff_filter_frame(outlink, outsamplesref);
270  av_frame_free(&insamplesref);
271  return ret;
272 }
273 
274 static int flush_frame(AVFilterLink *outlink, int final, AVFrame **outsamplesref_ret)
275 {
276  AVFilterContext *ctx = outlink->src;
277  AResampleContext *aresample = ctx->priv;
278  AVFilterLink *const inlink = outlink->src->inputs[0];
279  AVFrame *outsamplesref;
280  int n_out = 4096;
281  int64_t pts;
282 
283  outsamplesref = ff_get_audio_buffer(outlink, n_out);
284  *outsamplesref_ret = outsamplesref;
285  if (!outsamplesref)
286  return AVERROR(ENOMEM);
287 
288  pts = swr_next_pts(aresample->swr, INT64_MIN);
289  pts = ROUNDED_DIV(pts, inlink->sample_rate);
290 
291  n_out = swr_convert(aresample->swr, outsamplesref->extended_data, n_out, final ? NULL : (void*)outsamplesref->extended_data, 0);
292  if (n_out <= 0) {
293  av_frame_free(&outsamplesref);
294  return (n_out == 0) ? AVERROR_EOF : n_out;
295  }
296 
297  outsamplesref->sample_rate = outlink->sample_rate;
298  outsamplesref->nb_samples = n_out;
299 
300  outsamplesref->pts = pts;
301 
302  return 0;
303 }
304 
305 static int request_frame(AVFilterLink *outlink)
306 {
307  AVFilterContext *ctx = outlink->src;
308  AVFilterLink *inlink = ctx->inputs[0];
309  AResampleContext *aresample = ctx->priv;
310  int ret = 0, status;
311  int64_t pts;
312 
313  // First try to get data from the internal buffers
314  if (aresample->more_data) {
315  AVFrame *outsamplesref;
316 
317  if (flush_frame(outlink, 0, &outsamplesref) >= 0) {
318  return ff_filter_frame(outlink, outsamplesref);
319  }
320  }
321  aresample->more_data = 0;
322 
323  if (!aresample->eof && ff_inlink_acknowledge_status(inlink, &status, &pts))
324  aresample->eof = 1;
325 
326  // Second request more data from the input
327  if (!aresample->eof)
329 
330  // Third if we hit the end flush
331  if (aresample->eof) {
332  AVFrame *outsamplesref;
333 
334  if ((ret = flush_frame(outlink, 1, &outsamplesref)) < 0) {
335  if (ret == AVERROR_EOF) {
336  ff_outlink_set_status(outlink, AVERROR_EOF, aresample->next_pts);
337  return 0;
338  }
339  return ret;
340  }
341 
342  return ff_filter_frame(outlink, outsamplesref);
343  }
344 
345  ff_filter_set_ready(ctx, 100);
346  return 0;
347 }
348 
350 {
351  AResampleContext *aresample = ctx->priv;
352  AVFilterLink *inlink = ctx->inputs[0];
353  AVFilterLink *outlink = ctx->outputs[0];
354 
356 
357  if (!aresample->eof && ff_inlink_queued_frames(inlink)) {
358  AVFrame *frame = NULL;
359  int ret;
360 
362  if (ret < 0)
363  return ret;
364  if (ret > 0)
365  return filter_frame(inlink, frame);
366  }
367 
368  return request_frame(outlink);
369 }
370 
371 static const AVClass *resample_child_class_iterate(void **iter)
372 {
373  const AVClass *c = *iter ? NULL : swr_get_class();
374  *iter = (void*)(uintptr_t)c;
375  return c;
376 }
377 
378 static void *resample_child_next(void *obj, void *prev)
379 {
380  AResampleContext *s = obj;
381  return prev ? NULL : s->swr;
382 }
383 
384 #define OFFSET(x) offsetof(AResampleContext, x)
385 #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
386 
387 static const AVOption options[] = {
388  {"sample_rate", NULL, OFFSET(sample_rate_arg), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, FLAGS },
389  {NULL}
390 };
391 
392 static const AVClass aresample_class = {
393  .class_name = "aresample",
394  .item_name = av_default_item_name,
395  .option = options,
396  .version = LIBAVUTIL_VERSION_INT,
397  .child_class_iterate = resample_child_class_iterate,
399 };
400 
401 static const AVFilterPad aresample_outputs[] = {
402  {
403  .name = "default",
404  .config_props = config_output,
405  .type = AVMEDIA_TYPE_AUDIO,
406  },
407 };
408 
410  .p.name = "aresample",
411  .p.description = NULL_IF_CONFIG_SMALL("Resample audio data."),
412  .p.priv_class = &aresample_class,
413  .preinit = preinit,
414  .activate = activate,
415  .uninit = uninit,
416  .priv_size = sizeof(AResampleContext),
420 };
formats
formats
Definition: signature.h:47
ff_get_audio_buffer
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition: audio.c:98
AVFilterChannelLayouts
A list of supported channel layouts.
Definition: formats.h:85
SwrContext::outpts
int64_t outpts
output PTS
Definition: swresample_internal.h:158
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:435
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1078
ff_channel_layouts_ref
int ff_channel_layouts_ref(AVFilterChannelLayouts *f, AVFilterChannelLayouts **ref)
Add *ref as a new reference to f.
Definition: formats.c:673
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
AVFrame::nb_side_data
int nb_side_data
Definition: frame.h:644
int64_t
long long int64_t
Definition: coverity.c:34
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
FLAGS
#define FLAGS
Definition: af_aresample.c:385
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:163
ff_all_channel_counts
AVFilterChannelLayouts * ff_all_channel_counts(void)
Construct an AVFilterChannelLayouts coding for any channel layout, with known or unknown disposition.
Definition: formats.c:621
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: filters.h:262
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:410
AVFrame::pts
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:522
av_opt_set_double
int av_opt_set_double(void *obj, const char *name, double val, int search_flags)
Definition: opt.c:885
AVOption
AVOption.
Definition: opt.h:429
ff_af_aresample
const FFFilter ff_af_aresample
Definition: af_aresample.c:409
config_output
static int config_output(AVFilterLink *outlink)
Definition: af_aresample.c:129
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:225
preinit
static av_cold int preinit(AVFilterContext *ctx)
Definition: af_aresample.c:49
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:203
SwrContext::matrix_encoding
int matrix_encoding
matrixed stereo encoding
Definition: swresample_internal.h:113
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
FF_FILTER_FORWARD_STATUS_BACK
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
Definition: filters.h:637
AVDownmixInfo::surround_mix_level_ltrt
double surround_mix_level_ltrt
Absolute scale factor representing the nominal level of the surround channels during an Lt/Rt compati...
Definition: downmix_info.h:86
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
formats.h
ff_inlink_consume_frame
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
Definition: avfilter.c:1507
activate
static int activate(AVFilterContext *ctx)
Definition: af_aresample.c:349
samplefmt.h
AVFrame::ch_layout
AVChannelLayout ch_layout
Channel layout of the audio data.
Definition: frame.h:819
AVDownmixInfo
This structure describes optional metadata relevant to a downmix procedure.
Definition: downmix_info.h:58
pts
static int64_t pts
Definition: transcode_aac.c:644
ff_all_formats
AVFilterFormats * ff_all_formats(enum AVMediaType type)
Return a list of all formats supported by FFmpeg for the given media type.
Definition: formats.c:535
swr_next_pts
int64_t swr_next_pts(struct SwrContext *s, int64_t pts)
Convert the next timestamp from input to output timestamps are in 1/(in_sample_rate * out_sample_rate...
Definition: swresample.c:924
AVFilterPad
A filter pad used for either input or output.
Definition: filters.h:38
swr_convert
int attribute_align_arg swr_convert(struct SwrContext *s, uint8_t *const *out_arg, int out_count, const uint8_t *const *in_arg, int in_count)
Convert audio.
Definition: swresample.c:719
swr_get_delay
int64_t swr_get_delay(struct SwrContext *s, int64_t base)
Gets the delay the next input sample will experience relative to the next output sample.
Definition: swresample.c:874
options
static const AVOption options[]
Definition: af_aresample.c:387
avassert.h
resample_child_next
static void * resample_child_next(void *obj, void *prev)
Definition: af_aresample.c:378
av_cold
#define av_cold
Definition: attributes.h:90
AV_MATRIX_ENCODING_DOLBY
@ AV_MATRIX_ENCODING_DOLBY
Definition: channel_layout.h:262
swr_init
av_cold int swr_init(struct SwrContext *s)
Initialize context after user parameters have been set.
Definition: swresample.c:140
FFFilter
Definition: filters.h:265
av_channel_layout_describe
int av_channel_layout_describe(const AVChannelLayout *channel_layout, char *buf, size_t buf_size)
Get a human-readable string describing the channel layout properties.
Definition: channel_layout.c:653
ff_outlink_set_status
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
Definition: filters.h:627
ff_inlink_request_frame
void ff_inlink_request_frame(AVFilterLink *link)
Mark that a frame is wanted on the link.
Definition: avfilter.c:1610
s
#define s(width, name)
Definition: cbs_vp9.c:198
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
ff_formats_ref
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add *ref as a new reference to formats.
Definition: formats.c:678
swr_alloc
av_cold struct SwrContext * swr_alloc(void)
Allocate SwrContext.
Definition: options.c:148
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:40
filters.h
resample_child_class_iterate
static const AVClass * resample_child_class_iterate(void **iter)
Definition: af_aresample.c:371
ctx
AVFormatContext * ctx
Definition: movenc.c:49
av_get_sample_fmt_name
const char * av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
Return the name of sample_fmt, or NULL if sample_fmt is not recognized.
Definition: samplefmt.c:51
SwrContext
The libswresample context.
Definition: swresample_internal.h:95
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: filters.h:263
AVMatrixEncoding
AVMatrixEncoding
Definition: channel_layout.h:260
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:75
NULL
#define NULL
Definition: coverity.c:32
AVDownmixInfo::surround_mix_level
double surround_mix_level
Absolute scale factor representing the nominal level of the surround channels during a regular downmi...
Definition: downmix_info.h:80
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:726
AResampleContext::sample_rate_arg
int sample_rate_arg
Definition: af_aresample.c:41
swr_get_class
const AVClass * swr_get_class(void)
Get the AVClass for SwrContext.
Definition: options.c:143
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
av_frame_side_data_remove
void av_frame_side_data_remove(AVFrameSideData ***sd, int *nb_sd, enum AVFrameSideDataType type)
Remove and free all side data instances of the given type from an array.
Definition: frame.c:957
AVFilterContext::inputs
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:265
ROUNDED_DIV
#define ROUNDED_DIV(a, b)
Definition: common.h:58
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
options
Definition: swscale.c:42
av_opt_get_sample_fmt
int av_opt_get_sample_fmt(void *obj, const char *name, int search_flags, enum AVSampleFormat *out_fmt)
Definition: opt.c:1362
ff_audio_default_filterpad
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition: audio.c:34
double
double
Definition: af_crystalizer.c:132
av_opt_get_int
int av_opt_get_int(void *obj, const char *name, int search_flags, int64_t *out_val)
Definition: opt.c:1273
ff_inlink_acknowledge_status
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Definition: avfilter.c:1454
swresample.h
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
AVFilterFormatsConfig
Lists of formats / etc.
Definition: avfilter.h:109
av_opt_set_int
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:880
ff_inlink_queued_frames
size_t ff_inlink_queued_frames(AVFilterLink *link)
Get the number of frames available on the link.
Definition: avfilter.c:1470
query_formats
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition: af_aresample.c:67
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_aresample.c:61
swr_alloc_set_opts2
int swr_alloc_set_opts2(struct SwrContext **ps, const AVChannelLayout *out_ch_layout, enum AVSampleFormat out_sample_fmt, int out_sample_rate, const AVChannelLayout *in_ch_layout, enum AVSampleFormat in_sample_fmt, int in_sample_rate, int log_offset, void *log_ctx)
Allocate SwrContext if needed and set/reset common parameters.
Definition: swresample.c:40
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:94
AVChannelLayout
An AVChannelLayout holds information about the channel layout of audio data.
Definition: channel_layout.h:319
AVClass::child_next
void *(* child_next)(void *obj, void *prev)
Return next AVOptions-enabled child or NULL.
Definition: log.h:149
AVFrame::sample_rate
int sample_rate
Sample rate of the audio data.
Definition: frame.h:609
AV_MATRIX_ENCODING_NONE
@ AV_MATRIX_ENCODING_NONE
Definition: channel_layout.h:261
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:56
AResampleContext::ratio
double ratio
Definition: af_aresample.c:42
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
AResampleContext::eof
int eof
Definition: af_aresample.c:46
aresample_outputs
static const AVFilterPad aresample_outputs[]
Definition: af_aresample.c:401
swr_free
av_cold void swr_free(SwrContext **ss)
Free the given SwrContext and set the pointer to NULL.
Definition: swresample.c:121
AVFrameSideData::data
uint8_t * data
Definition: frame.h:267
AVDownmixInfo::center_mix_level_ltrt
double center_mix_level_ltrt
Absolute scale factor representing the nominal level of the center channel during an Lt/Rt compatible...
Definition: downmix_info.h:74
AVFrame::format
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
Definition: frame.h:497
FF_FILTER_FORWARD_WANTED
FF_FILTER_FORWARD_WANTED(outlink, inlink)
AResampleContext
Definition: af_aresample.c:39
av_frame_side_data_remove_by_props
void av_frame_side_data_remove_by_props(AVFrameSideData ***sd, int *nb_sd, int props)
Remove and free all side data instances that match any of the given side data properties.
Definition: frame.c:963
AVDownmixInfo::lfe_mix_level
double lfe_mix_level
Absolute scale factor representing the level at which the LFE data is mixed into L/R channels during ...
Definition: downmix_info.h:92
av_channel_layout_compare
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
Definition: channel_layout.c:809
AResampleContext::swr
struct SwrContext * swr
Definition: af_aresample.c:43
flush_frame
static int flush_frame(AVFilterLink *outlink, int final, AVFrame **outsamplesref_ret)
Definition: af_aresample.c:274
aresample_class
static const AVClass aresample_class
Definition: af_aresample.c:392
AVFrame::nb_samples
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:490
AVDownmixInfo::center_mix_level
double center_mix_level
Absolute scale factor representing the nominal level of the center channel during a regular downmix.
Definition: downmix_info.h:68
AV_SIDE_DATA_PROP_CHANNEL_DEPENDENT
@ AV_SIDE_DATA_PROP_CHANNEL_DEPENDENT
Side data depends on the channel layout.
Definition: frame.h:306
downmix_info.h
AVFrame::extended_data
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:471
OFFSET
#define OFFSET(x)
Definition: af_aresample.c:384
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:55
FILTER_QUERY_FUNC2
#define FILTER_QUERY_FUNC2(func)
Definition: filters.h:239
AVDownmixInfo::preferred_downmix_type
enum AVDownmixType preferred_downmix_type
Type of downmix preferred by the mastering engineer.
Definition: downmix_info.h:62
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *insamplesref)
Definition: af_aresample.c:212
AVFrame::side_data
AVFrameSideData ** side_data
Definition: frame.h:643
AVFilterPad::name
const char * name
Pad name.
Definition: filters.h:44
av_rescale
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
AResampleContext::next_pts
int64_t next_pts
Definition: af_aresample.c:44
ret
ret
Definition: filter_design.txt:187
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:80
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
av_channel_layout_check
int av_channel_layout_check(const AVChannelLayout *channel_layout)
Check whether a channel layout is valid, i.e.
Definition: channel_layout.c:783
ff_all_samplerates
AVFilterFormats * ff_all_samplerates(void)
Definition: formats.c:606
status
ov_status_e status
Definition: dnn_backend_openvino.c:100
channel_layout.h
AV_DOWNMIX_TYPE_DPLII
@ AV_DOWNMIX_TYPE_DPLII
Lt/Rt 2-channel downmix, Dolby Pro Logic II compatible.
Definition: downmix_info.h:48
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
avfilter.h
av_channel_layout_uninit
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
Definition: channel_layout.c:442
av_opt_get_chlayout
int av_opt_get_chlayout(void *obj, const char *name, int search_flags, AVChannelLayout *cl)
Definition: opt.c:1367
AVFilterContext
An instance of a filter.
Definition: avfilter.h:257
av_channel_layout_copy
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
Definition: channel_layout.c:449
FFFilter::p
AVFilter p
The public AVFilter.
Definition: filters.h:269
audio.h
AVFrameSideData
Structure to hold side data for an AVFrame.
Definition: frame.h:265
channel_layouts
static const uint16_t channel_layouts[7]
Definition: dca_lbr.c:112
ff_make_channel_layout_list
AVFilterChannelLayouts * ff_make_channel_layout_list(const AVChannelLayout *fmts)
Definition: formats.c:444
av_frame_side_data_get
static const AVFrameSideData * av_frame_side_data_get(AVFrameSideData *const *sd, const int nb_sd, enum AVFrameSideDataType type)
Wrapper around av_frame_side_data_get_c() to workaround the limitation that for any type T the conver...
Definition: frame.h:1193
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
request_frame
static int request_frame(AVFilterLink *outlink)
Definition: af_aresample.c:305
AResampleContext::more_data
int more_data
Definition: af_aresample.c:45
avstring.h
AV_DOWNMIX_TYPE_LTRT
@ AV_DOWNMIX_TYPE_LTRT
Lt/Rt 2-channel downmix, Dolby Surround compatible.
Definition: downmix_info.h:47
AV_FRAME_DATA_DOWNMIX_INFO
@ AV_FRAME_DATA_DOWNMIX_INFO
Metadata relevant to a downmix procedure.
Definition: frame.h:73
AV_MATRIX_ENCODING_DPLII
@ AV_MATRIX_ENCODING_DPLII
Definition: channel_layout.h:263
ff_filter_set_ready
void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
Mark a filter ready and schedule it for activation.
Definition: avfilter.c:240