FFmpeg  4.3
asrc_afirsrc.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 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 License
8  * 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
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with FFmpeg; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "libavutil/eval.h"
22 #include "libavutil/opt.h"
23 #include "libavutil/tx.h"
24 #include "audio.h"
25 #include "avfilter.h"
26 #include "internal.h"
27 #include "window_func.h"
28 
29 typedef struct AudioFIRSourceContext {
30  const AVClass *class;
31 
34  char *phase_str;
35  int nb_taps;
38  int win_func;
39 
41  float *freq;
42  float *magnitude;
43  float *phase;
44  int freq_size;
47  int nb_freq;
49  int nb_phase;
50 
51  float *taps;
52  float *win;
53  int64_t pts;
54 
58 
59 #define OFFSET(x) offsetof(AudioFIRSourceContext, x)
60 #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
61 
62 static const AVOption afirsrc_options[] = {
63  { "taps", "set number of taps", OFFSET(nb_taps), AV_OPT_TYPE_INT, {.i64=1025}, 9, UINT16_MAX, FLAGS },
64  { "t", "set number of taps", OFFSET(nb_taps), AV_OPT_TYPE_INT, {.i64=1025}, 9, UINT16_MAX, FLAGS },
65  { "frequency", "set frequency points", OFFSET(freq_points_str), AV_OPT_TYPE_STRING, {.str="0 1"}, 0, 0, FLAGS },
66  { "f", "set frequency points", OFFSET(freq_points_str), AV_OPT_TYPE_STRING, {.str="0 1"}, 0, 0, FLAGS },
67  { "magnitude", "set magnitude values", OFFSET(magnitude_str), AV_OPT_TYPE_STRING, {.str="1 1"}, 0, 0, FLAGS },
68  { "m", "set magnitude values", OFFSET(magnitude_str), AV_OPT_TYPE_STRING, {.str="1 1"}, 0, 0, FLAGS },
69  { "phase", "set phase values", OFFSET(phase_str), AV_OPT_TYPE_STRING, {.str="0 0"}, 0, 0, FLAGS },
70  { "p", "set phase values", OFFSET(phase_str), AV_OPT_TYPE_STRING, {.str="0 0"}, 0, 0, FLAGS },
71  { "sample_rate", "set sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64=44100}, 1, INT_MAX, FLAGS },
72  { "r", "set sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64=44100}, 1, INT_MAX, FLAGS },
73  { "nb_samples", "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64 = 1024}, 1, INT_MAX, FLAGS },
74  { "n", "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64 = 1024}, 1, INT_MAX, FLAGS },
75  { "win_func", "set window function", OFFSET(win_func), AV_OPT_TYPE_INT, {.i64=WFUNC_BLACKMAN}, 0, NB_WFUNC-1, FLAGS, "win_func" },
76  { "w", "set window function", OFFSET(win_func), AV_OPT_TYPE_INT, {.i64=WFUNC_BLACKMAN}, 0, NB_WFUNC-1, FLAGS, "win_func" },
77  { "rect", "Rectangular", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_RECT}, 0, 0, FLAGS, "win_func" },
78  { "bartlett", "Bartlett", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BARTLETT}, 0, 0, FLAGS, "win_func" },
79  { "hanning", "Hanning", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_HANNING}, 0, 0, FLAGS, "win_func" },
80  { "hamming", "Hamming", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_HAMMING}, 0, 0, FLAGS, "win_func" },
81  { "blackman", "Blackman", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BLACKMAN}, 0, 0, FLAGS, "win_func" },
82  { "welch", "Welch", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_WELCH}, 0, 0, FLAGS, "win_func" },
83  { "flattop", "Flat-top", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_FLATTOP}, 0, 0, FLAGS, "win_func" },
84  { "bharris", "Blackman-Harris", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BHARRIS}, 0, 0, FLAGS, "win_func" },
85  { "bnuttall", "Blackman-Nuttall", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BNUTTALL}, 0, 0, FLAGS, "win_func" },
86  { "bhann", "Bartlett-Hann", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BHANN}, 0, 0, FLAGS, "win_func" },
87  { "sine", "Sine", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_SINE}, 0, 0, FLAGS, "win_func" },
88  { "nuttall", "Nuttall", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_NUTTALL}, 0, 0, FLAGS, "win_func" },
89  { "lanczos", "Lanczos", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_LANCZOS}, 0, 0, FLAGS, "win_func" },
90  { "gauss", "Gauss", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_GAUSS}, 0, 0, FLAGS, "win_func" },
91  { "tukey", "Tukey", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_TUKEY}, 0, 0, FLAGS, "win_func" },
92  { "dolph", "Dolph-Chebyshev", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_DOLPH}, 0, 0, FLAGS, "win_func" },
93  { "cauchy", "Cauchy", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_CAUCHY}, 0, 0, FLAGS, "win_func" },
94  { "parzen", "Parzen", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_PARZEN}, 0, 0, FLAGS, "win_func" },
95  { "poisson", "Poisson", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_POISSON}, 0, 0, FLAGS, "win_func" },
96  { "bohman" , "Bohman", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BOHMAN}, 0, 0, FLAGS, "win_func" },
97  {NULL}
98 };
99 
100 AVFILTER_DEFINE_CLASS(afirsrc);
101 
103 {
104  AudioFIRSourceContext *s = ctx->priv;
105 
106  if (!(s->nb_taps & 1)) {
107  av_log(s, AV_LOG_WARNING, "Number of taps %d must be odd length.\n", s->nb_taps);
108  s->nb_taps |= 1;
109  }
110 
111  return 0;
112 }
113 
115 {
116  AudioFIRSourceContext *s = ctx->priv;
117 
118  av_freep(&s->win);
119  av_freep(&s->taps);
120  av_freep(&s->freq);
121  av_freep(&s->magnitude);
122  av_freep(&s->phase);
123  av_freep(&s->complexf);
124  av_tx_uninit(&s->tx_ctx);
125 }
126 
128 {
129  AudioFIRSourceContext *s = ctx->priv;
130  static const int64_t chlayouts[] = { AV_CH_LAYOUT_MONO, -1 };
131  int sample_rates[] = { s->sample_rate, -1 };
132  static const enum AVSampleFormat sample_fmts[] = {
135  };
136 
139  int ret;
140 
142  if (!formats)
143  return AVERROR(ENOMEM);
145  if (ret < 0)
146  return ret;
147 
149  if (!layouts)
150  return AVERROR(ENOMEM);
152  if (ret < 0)
153  return ret;
154 
156  if (!formats)
157  return AVERROR(ENOMEM);
159 }
160 
161 static int parse_string(char *str, float **items, int *nb_items, int *items_size)
162 {
163  float *new_items;
164  char *tail;
165 
166  new_items = av_fast_realloc(NULL, items_size, 1 * sizeof(float));
167  if (!new_items)
168  return AVERROR(ENOMEM);
169  *items = new_items;
170 
171  tail = str;
172  if (!tail)
173  return AVERROR(EINVAL);
174 
175  do {
176  (*items)[(*nb_items)++] = av_strtod(tail, &tail);
177  new_items = av_fast_realloc(*items, items_size, (*nb_items + 1) * sizeof(float));
178  if (!new_items)
179  return AVERROR(ENOMEM);
180  *items = new_items;
181  if (tail && *tail)
182  tail++;
183  } while (tail && *tail);
184 
185  return 0;
186 }
187 
188 static void lininterp(AVComplexFloat *complexf,
189  const float *freq,
190  const float *magnitude,
191  const float *phase,
192  int m, int minterp)
193 {
194  for (int i = 0; i < minterp; i++) {
195  for (int j = 1; j < m; j++) {
196  const float x = i / (float)minterp;
197 
198  if (x <= freq[j]) {
199  const float mg = (x - freq[j-1]) / (freq[j] - freq[j-1]) * (magnitude[j] - magnitude[j-1]) + magnitude[j-1];
200  const float ph = (x - freq[j-1]) / (freq[j] - freq[j-1]) * (phase[j] - phase[j-1]) + phase[j-1];
201 
202  complexf[i].re = mg * cosf(ph);
203  complexf[i].im = mg * sinf(ph);
204  break;
205  }
206  }
207  }
208 }
209 
210 static av_cold int config_output(AVFilterLink *outlink)
211 {
212  AVFilterContext *ctx = outlink->src;
213  AudioFIRSourceContext *s = ctx->priv;
214  float overlap, scale = 1.f, compensation;
215  int fft_size, middle, ret;
216 
217  s->nb_freq = s->nb_magnitude = s->nb_phase = 0;
218 
219  ret = parse_string(s->freq_points_str, &s->freq, &s->nb_freq, &s->freq_size);
220  if (ret < 0)
221  return ret;
222 
223  ret = parse_string(s->magnitude_str, &s->magnitude, &s->nb_magnitude, &s->magnitude_size);
224  if (ret < 0)
225  return ret;
226 
227  ret = parse_string(s->phase_str, &s->phase, &s->nb_phase, &s->phase_size);
228  if (ret < 0)
229  return ret;
230 
231  if (s->nb_freq != s->nb_magnitude && s->nb_freq != s->nb_phase && s->nb_freq >= 2) {
232  av_log(ctx, AV_LOG_ERROR, "Number of frequencies, magnitudes and phases must be same and >= 2.\n");
233  return AVERROR(EINVAL);
234  }
235 
236  for (int i = 0; i < s->nb_freq; i++) {
237  if (i == 0 && s->freq[i] != 0.f) {
238  av_log(ctx, AV_LOG_ERROR, "First frequency must be 0.\n");
239  return AVERROR(EINVAL);
240  }
241 
242  if (i == s->nb_freq - 1 && s->freq[i] != 1.f) {
243  av_log(ctx, AV_LOG_ERROR, "Last frequency must be 1.\n");
244  return AVERROR(EINVAL);
245  }
246 
247  if (i && s->freq[i] < s->freq[i-1]) {
248  av_log(ctx, AV_LOG_ERROR, "Frequencies must be in increasing order.\n");
249  return AVERROR(EINVAL);
250  }
251  }
252 
253  fft_size = 1 << (av_log2(s->nb_taps) + 1);
254  s->complexf = av_calloc(fft_size * 2, sizeof(*s->complexf));
255  if (!s->complexf)
256  return AVERROR(ENOMEM);
257 
258  ret = av_tx_init(&s->tx_ctx, &s->tx_fn, AV_TX_FLOAT_FFT, 1, fft_size, &scale, 0);
259  if (ret < 0)
260  return ret;
261 
262  s->taps = av_calloc(s->nb_taps, sizeof(*s->taps));
263  if (!s->taps)
264  return AVERROR(ENOMEM);
265 
266  s->win = av_calloc(s->nb_taps, sizeof(*s->win));
267  if (!s->win)
268  return AVERROR(ENOMEM);
269 
270  generate_window_func(s->win, s->nb_taps, s->win_func, &overlap);
271 
272  lininterp(s->complexf, s->freq, s->magnitude, s->phase, s->nb_freq, fft_size / 2);
273 
274  s->tx_fn(s->tx_ctx, s->complexf + fft_size, s->complexf, sizeof(float));
275 
276  compensation = 2.f / fft_size;
277  middle = s->nb_taps / 2;
278 
279  for (int i = 0; i <= middle; i++) {
280  s->taps[ i] = s->complexf[fft_size + middle - i].re * compensation * s->win[i];
281  s->taps[middle + i] = s->complexf[fft_size + i].re * compensation * s->win[middle + i];
282  }
283 
284  s->pts = 0;
285 
286  return 0;
287 }
288 
289 static int request_frame(AVFilterLink *outlink)
290 {
291  AVFilterContext *ctx = outlink->src;
292  AudioFIRSourceContext *s = ctx->priv;
293  AVFrame *frame;
294  int nb_samples;
295 
296  nb_samples = FFMIN(s->nb_samples, s->nb_taps - s->pts);
297  if (!nb_samples)
298  return AVERROR_EOF;
299 
300  if (!(frame = ff_get_audio_buffer(outlink, nb_samples)))
301  return AVERROR(ENOMEM);
302 
303  memcpy(frame->data[0], s->taps + s->pts, nb_samples * sizeof(float));
304 
305  frame->pts = s->pts;
306  s->pts += nb_samples;
307  return ff_filter_frame(outlink, frame);
308 }
309 
310 static const AVFilterPad afirsrc_outputs[] = {
311  {
312  .name = "default",
313  .type = AVMEDIA_TYPE_AUDIO,
314  .request_frame = request_frame,
315  .config_props = config_output,
316  },
317  { NULL }
318 };
319 
321  .name = "afirsrc",
322  .description = NULL_IF_CONFIG_SMALL("Generate a FIR coefficients audio stream."),
323  .query_formats = query_formats,
324  .init = init,
325  .uninit = uninit,
326  .priv_size = sizeof(AudioFIRSourceContext),
327  .inputs = NULL,
329  .priv_class = &afirsrc_class,
330 };
formats
formats
Definition: signature.h:48
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:86
AVFilterChannelLayouts
A list of supported channel layouts.
Definition: formats.h:85
AudioFIRSourceContext::phase_str
char * phase_str
Definition: asrc_afirsrc.c:34
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
lininterp
static void lininterp(AVComplexFloat *complexf, const float *freq, const float *magnitude, const float *phase, int m, int minterp)
Definition: asrc_afirsrc.c:188
AudioFIRSourceContext::nb_samples
int nb_samples
Definition: asrc_afirsrc.c:37
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
afirsrc_options
static const AVOption afirsrc_options[]
Definition: asrc_afirsrc.c:62
ff_make_format_list
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
AudioFIRSourceContext
Definition: asrc_afirsrc.c:29
ff_set_common_channel_layouts
int ff_set_common_channel_layouts(AVFilterContext *ctx, AVFilterChannelLayouts *layouts)
A helper for query_formats() which sets all links to the same list of channel layouts/sample rates.
Definition: formats.c:581
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1075
sample_fmts
static enum AVSampleFormat sample_fmts[]
Definition: adpcmenc.c:716
layouts
enum MovChannelLayoutTag * layouts
Definition: mov_chan.c:434
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:55
AudioFIRSourceContext::freq_points_str
char * freq_points_str
Definition: asrc_afirsrc.c:32
AV_CH_LAYOUT_MONO
#define AV_CH_LAYOUT_MONO
Definition: channel_layout.h:85
AVTXContext
Definition: tx_priv.h:105
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:300
AudioFIRSourceContext::nb_freq
int nb_freq
Definition: asrc_afirsrc.c:47
AVOption
AVOption.
Definition: opt.h:246
AudioFIRSourceContext::phase
float * phase
Definition: asrc_afirsrc.c:43
AVComplexFloat
Definition: tx.h:27
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: asrc_afirsrc.c:114
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:148
WFUNC_FLATTOP
@ WFUNC_FLATTOP
Definition: window_func.h:29
sample_rate
sample_rate
Definition: ffmpeg_filter.c:192
av_tx_init
av_cold int av_tx_init(AVTXContext **ctx, av_tx_fn *tx, enum AVTXType type, int inv, int len, const void *scale, uint64_t flags)
Initialize a transform context with the given configuration Currently power of two lengths from 2 to ...
Definition: tx.c:123
AudioFIRSourceContext::complexf
AVComplexFloat * complexf
Definition: asrc_afirsrc.c:40
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
WFUNC_BLACKMAN
@ WFUNC_BLACKMAN
Definition: af_firequalizer.c:36
AVComplexFloat::im
float im
Definition: tx.h:28
WFUNC_PARZEN
@ WFUNC_PARZEN
Definition: window_func.h:32
AudioFIRSourceContext::nb_taps
int nb_taps
Definition: asrc_afirsrc.c:35
cosf
#define cosf(x)
Definition: libm.h:78
OFFSET
#define OFFSET(x)
Definition: asrc_afirsrc.c:59
x
FFmpeg Automated Testing Environment ************************************Introduction Using FATE from your FFmpeg source directory Submitting the results to the FFmpeg result aggregation server Uploading new samples to the fate suite FATE makefile targets and variables Makefile targets Makefile variables Examples Introduction **************FATE is an extended regression suite on the client side and a means for results aggregation and presentation on the server side The first part of this document explains how you can use FATE from your FFmpeg source directory to test your ffmpeg binary The second part describes how you can run FATE to submit the results to FFmpeg’s FATE server In any way you can have a look at the publicly viewable FATE results by visiting this as it can be seen if some test on some platform broke with their recent contribution This usually happens on the platforms the developers could not test on The second part of this document describes how you can run FATE to submit your results to FFmpeg’s FATE server If you want to submit your results be sure to check that your combination of OS and compiler is not already listed on the above mentioned website In the third part you can find a comprehensive listing of FATE makefile targets and variables Using FATE from your FFmpeg source directory **********************************************If you want to run FATE on your machine you need to have the samples in place You can get the samples via the build target fate rsync Use this command from the top level source this will cause FATE to fail NOTE To use a custom wrapper to run the pass ‘ target exec’ to ‘configure’ or set the TARGET_EXEC Make variable Submitting the results to the FFmpeg result aggregation server ****************************************************************To submit your results to the server you should run fate through the shell script ‘tests fate sh’ from the FFmpeg sources This script needs to be invoked with a configuration file as its first argument tests fate sh path to fate_config A configuration file template with comments describing the individual configuration variables can be found at ‘doc fate_config sh template’ Create a configuration that suits your based on the configuration template The ‘slot’ configuration variable can be any string that is not yet but it is suggested that you name it adhering to the following pattern ‘ARCH OS COMPILER COMPILER VERSION’ The configuration file itself will be sourced in a shell therefore all shell features may be used This enables you to setup the environment as you need it for your build For your first test runs the ‘fate_recv’ variable should be empty or commented out This will run everything as normal except that it will omit the submission of the results to the server The following files should be present in $workdir as specified in the configuration it may help to try out the ‘ssh’ command with one or more ‘ v’ options You should get detailed output concerning your SSH configuration and the authentication process The only thing left is to automate the execution of the fate sh script and the synchronisation of the samples directory Uploading new samples to the fate suite *****************************************If you need a sample uploaded send a mail to samples request This is for developers who have an account on the fate suite server If you upload new please make sure they are as small as space on each network bandwidth and so on benefit from smaller test cases Also keep in mind older checkouts use existing sample that means in practice generally do not remove or overwrite files as it likely would break older checkouts or releases Also all needed samples for a commit should be ideally before the push If you need an account for frequently uploading samples or you wish to help others by doing that send a mail to ffmpeg devel rsync vauL Duo x
Definition: fate.txt:150
WFUNC_BHANN
@ WFUNC_BHANN
Definition: window_func.h:31
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
request_frame
static int request_frame(AVFilterLink *outlink)
Definition: asrc_afirsrc.c:289
AudioFIRSourceContext::magnitude
float * magnitude
Definition: asrc_afirsrc.c:42
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
WFUNC_DOLPH
@ WFUNC_DOLPH
Definition: window_func.h:32
av_cold
#define av_cold
Definition: attributes.h:90
ff_set_common_formats
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:600
av_tx_fn
void(* av_tx_fn)(AVTXContext *s, void *out, void *in, ptrdiff_t stride)
Function pointer to a function to perform the transform.
Definition: tx.h:92
WFUNC_NUTTALL
@ WFUNC_NUTTALL
Definition: af_firequalizer.c:39
av_fast_realloc
void * av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
Reallocate the given buffer if it is not large enough, otherwise do nothing.
Definition: mem.c:478
s
#define s(width, name)
Definition: cbs_vp9.c:257
parse_string
static int parse_string(char *str, float **items, int *nb_items, int *items_size)
Definition: asrc_afirsrc.c:161
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
ff_asrc_afirsrc
AVFilter ff_asrc_afirsrc
Definition: asrc_afirsrc.c:320
WFUNC_LANCZOS
@ WFUNC_LANCZOS
Definition: window_func.h:31
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
AV_TX_FLOAT_FFT
@ AV_TX_FLOAT_FFT
Standard complex to complex FFT with sample data type AVComplexFloat.
Definition: tx.h:45
WFUNC_RECT
@ WFUNC_RECT
Definition: window_func.h:28
ctx
AVFormatContext * ctx
Definition: movenc.c:48
WFUNC_BHARRIS
@ WFUNC_BHARRIS
Definition: af_firequalizer.c:41
mg
#define mg
Definition: vf_colormatrix.c:106
AudioFIRSourceContext::nb_phase
int nb_phase
Definition: asrc_afirsrc.c:49
AudioFIRSourceContext::win_func
int win_func
Definition: asrc_afirsrc.c:38
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
NULL
#define NULL
Definition: coverity.c:32
WFUNC_HAMMING
@ WFUNC_HAMMING
Definition: af_firequalizer.c:35
AudioFIRSourceContext::nb_magnitude
int nb_magnitude
Definition: asrc_afirsrc.c:48
generate_window_func
static void generate_window_func(float *lut, int N, int win_func, float *overlap)
Definition: window_func.h:36
WFUNC_HANNING
@ WFUNC_HANNING
Definition: window_func.h:28
WFUNC_BARTLETT
@ WFUNC_BARTLETT
Definition: window_func.h:29
sinf
#define sinf(x)
Definition: libm.h:419
inputs
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 inputs
Definition: filter_design.txt:243
WFUNC_BOHMAN
@ WFUNC_BOHMAN
Definition: window_func.h:33
eval.h
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:186
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:59
AVComplexFloat::re
float re
Definition: tx.h:28
AudioFIRSourceContext::sample_rate
int sample_rate
Definition: asrc_afirsrc.c:36
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(afirsrc)
WFUNC_TUKEY
@ WFUNC_TUKEY
Definition: af_firequalizer.c:42
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
AudioFIRSourceContext::magnitude_str
char * magnitude_str
Definition: asrc_afirsrc.c:33
AudioFIRSourceContext::pts
int64_t pts
Definition: asrc_afirsrc.c:53
av_log2
#define av_log2
Definition: intmath.h:83
av_tx_uninit
av_cold void av_tx_uninit(AVTXContext **ctx)
Frees a context and sets ctx to NULL, does nothing when ctx == NULL.
Definition: tx.c:110
sample_rates
sample_rates
Definition: ffmpeg_filter.c:192
internal.h
avfilter_make_format64_list
AVFilterChannelLayouts * avfilter_make_format64_list(const int64_t *fmts)
Definition: formats.c:303
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:269
AudioFIRSourceContext::freq_size
int freq_size
Definition: asrc_afirsrc.c:44
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:58
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
query_formats
static av_cold int query_formats(AVFilterContext *ctx)
Definition: asrc_afirsrc.c:127
AVFilter
Filter definition.
Definition: avfilter.h:144
AudioFIRSourceContext::win
float * win
Definition: asrc_afirsrc.c:52
ret
ret
Definition: filter_design.txt:187
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_strtod
double av_strtod(const char *numstr, char **tail)
Parse the string in numstr and return its value as a double.
Definition: eval.c:106
AudioFIRSourceContext::tx_fn
av_tx_fn tx_fn
Definition: asrc_afirsrc.c:56
window_func.h
NB_WFUNC
@ NB_WFUNC
Definition: af_firequalizer.c:43
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Non-inlined equivalent of av_mallocz_array().
Definition: mem.c:245
WFUNC_SINE
@ WFUNC_SINE
Definition: window_func.h:30
WFUNC_CAUCHY
@ WFUNC_CAUCHY
Definition: window_func.h:32
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
avfilter.h
AudioFIRSourceContext::taps
float * taps
Definition: asrc_afirsrc.c:51
AudioFIRSourceContext::magnitude_size
int magnitude_size
Definition: asrc_afirsrc.c:45
AVFilterContext
An instance of a filter.
Definition: avfilter.h:338
WFUNC_GAUSS
@ WFUNC_GAUSS
Definition: window_func.h:31
WFUNC_BNUTTALL
@ WFUNC_BNUTTALL
Definition: af_firequalizer.c:40
audio.h
WFUNC_POISSON
@ WFUNC_POISSON
Definition: window_func.h:32
AudioFIRSourceContext::tx_ctx
AVTXContext * tx_ctx
Definition: asrc_afirsrc.c:55
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
convert_header.str
string str
Definition: convert_header.py:20
FLAGS
#define FLAGS
Definition: asrc_afirsrc.c:60
AudioFIRSourceContext::phase_size
int phase_size
Definition: asrc_afirsrc.c:46
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
ff_set_common_samplerates
int ff_set_common_samplerates(AVFilterContext *ctx, AVFilterFormats *samplerates)
Definition: formats.c:588
init
static av_cold int init(AVFilterContext *ctx)
Definition: asrc_afirsrc.c:102
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:227
afirsrc_outputs
static const AVFilterPad afirsrc_outputs[]
Definition: asrc_afirsrc.c:310
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
AV_SAMPLE_FMT_FLT
@ AV_SAMPLE_FMT_FLT
float
Definition: samplefmt.h:63
WFUNC_WELCH
@ WFUNC_WELCH
Definition: window_func.h:29
config_output
static av_cold int config_output(AVFilterLink *outlink)
Definition: asrc_afirsrc.c:210
tx.h
AudioFIRSourceContext::freq
float * freq
Definition: asrc_afirsrc.c:41