FFmpeg
Loading...
Searching...
No Matches
avf_showfreqs.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 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 <float.h>
22#include <math.h>
23
24#include "libavutil/mem.h"
25#include "libavutil/tx.h"
26#include "libavutil/avassert.h"
27#include "libavutil/avstring.h"
30#include "libavutil/opt.h"
32#include "audio.h"
33#include "filters.h"
34#include "formats.h"
35#include "video.h"
36#include "avfilter.h"
37#include "window_func.h"
38
44
78
79#define OFFSET(x) offsetof(ShowFreqsContext, x)
80#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
81
82static const AVOption showfreqs_options[] = {
83 { "size", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "1024x512"}, 0, 0, FLAGS },
84 { "s", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "1024x512"}, 0, 0, FLAGS },
85 { "rate", "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, FLAGS },
86 { "r", "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, FLAGS },
87 { "mode", "set display mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64=BAR}, 0, NB_MODES-1, FLAGS, .unit = "mode" },
88 { "line", "show lines", 0, AV_OPT_TYPE_CONST, {.i64=LINE}, 0, 0, FLAGS, .unit = "mode" },
89 { "bar", "show bars", 0, AV_OPT_TYPE_CONST, {.i64=BAR}, 0, 0, FLAGS, .unit = "mode" },
90 { "dot", "show dots", 0, AV_OPT_TYPE_CONST, {.i64=DOT}, 0, 0, FLAGS, .unit = "mode" },
91 { "ascale", "set amplitude scale", OFFSET(ascale), AV_OPT_TYPE_INT, {.i64=AS_LOG}, 0, NB_ASCALES-1, FLAGS, .unit = "ascale" },
92 { "lin", "linear", 0, AV_OPT_TYPE_CONST, {.i64=AS_LINEAR}, 0, 0, FLAGS, .unit = "ascale" },
93 { "sqrt", "square root", 0, AV_OPT_TYPE_CONST, {.i64=AS_SQRT}, 0, 0, FLAGS, .unit = "ascale" },
94 { "cbrt", "cubic root", 0, AV_OPT_TYPE_CONST, {.i64=AS_CBRT}, 0, 0, FLAGS, .unit = "ascale" },
95 { "log", "logarithmic", 0, AV_OPT_TYPE_CONST, {.i64=AS_LOG}, 0, 0, FLAGS, .unit = "ascale" },
96 { "fscale", "set frequency scale", OFFSET(fscale), AV_OPT_TYPE_INT, {.i64=FS_LINEAR}, 0, NB_FSCALES-1, FLAGS, .unit = "fscale" },
97 { "lin", "linear", 0, AV_OPT_TYPE_CONST, {.i64=FS_LINEAR}, 0, 0, FLAGS, .unit = "fscale" },
98 { "log", "logarithmic", 0, AV_OPT_TYPE_CONST, {.i64=FS_LOG}, 0, 0, FLAGS, .unit = "fscale" },
99 { "rlog", "reverse logarithmic", 0, AV_OPT_TYPE_CONST, {.i64=FS_RLOG}, 0, 0, FLAGS, .unit = "fscale" },
100 { "win_size", "set window size", OFFSET(fft_size), AV_OPT_TYPE_INT, {.i64=2048}, 16, 65536, FLAGS },
101 WIN_FUNC_OPTION("win_func", OFFSET(win_func), FLAGS, WFUNC_HANNING),
102 { "overlap", "set window overlap", OFFSET(overlap), AV_OPT_TYPE_FLOAT, {.dbl=1.}, 0., 1., FLAGS },
103 { "averaging", "set time averaging", OFFSET(avg), AV_OPT_TYPE_INT, {.i64=1}, 0, INT32_MAX, FLAGS },
104 { "colors", "set channels colors", OFFSET(colors), AV_OPT_TYPE_STRING, {.str = "red|green|blue|yellow|orange|lime|pink|magenta|brown" }, 0, 0, FLAGS },
105 { "cmode", "set channel mode", OFFSET(cmode), AV_OPT_TYPE_INT, {.i64=COMBINED}, 0, NB_CMODES-1, FLAGS, .unit = "cmode" },
106 { "combined", "show all channels in same window", 0, AV_OPT_TYPE_CONST, {.i64=COMBINED}, 0, 0, FLAGS, .unit = "cmode" },
107 { "separate", "show each channel in own window", 0, AV_OPT_TYPE_CONST, {.i64=SEPARATE}, 0, 0, FLAGS, .unit = "cmode" },
108 { "minamp", "set minimum amplitude", OFFSET(minamp), AV_OPT_TYPE_FLOAT, {.dbl=1e-6}, FLT_MIN, 1e-6, FLAGS },
109 { "data", "set data mode", OFFSET(data_mode), AV_OPT_TYPE_INT, {.i64=MAGNITUDE}, 0, NB_DATA-1, FLAGS, .unit = "data" },
110 { "magnitude", "show magnitude", 0, AV_OPT_TYPE_CONST, {.i64=MAGNITUDE}, 0, 0, FLAGS, .unit = "data" },
111 { "phase", "show phase", 0, AV_OPT_TYPE_CONST, {.i64=PHASE}, 0, 0, FLAGS, .unit = "data" },
112 { "delay", "show group delay",0, AV_OPT_TYPE_CONST, {.i64=DELAY}, 0, 0, FLAGS, .unit = "data" },
113 { "channels", "set channels to draw", OFFSET(ch_layout_str), AV_OPT_TYPE_STRING, {.str="all"}, 0, 0, FLAGS },
114 { NULL }
115};
116
118
120 AVFilterFormatsConfig **cfg_in,
121 AVFilterFormatsConfig **cfg_out)
122{
125 static const enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_RGBA, AV_PIX_FMT_NONE };
126 int ret;
127
128 /* set input audio formats */
130 if ((ret = ff_formats_ref(formats, &cfg_in[0]->formats)) < 0)
131 return ret;
132
133 /* set output video format */
135 if ((ret = ff_formats_ref(formats, &cfg_out[0]->formats)) < 0)
136 return ret;
137
138 return 0;
139}
140
141static int config_output(AVFilterLink *outlink)
142{
143 FilterLink *l = ff_filter_link(outlink);
144 AVFilterContext *ctx = outlink->src;
145 AVFilterLink *inlink = ctx->inputs[0];
146 ShowFreqsContext *s = ctx->priv;
147 float overlap, scale = 1.f;
148 int i, ret;
149
150 s->old_pts = AV_NOPTS_VALUE;
151 s->nb_freq = s->fft_size / 2;
152 s->win_size = s->fft_size;
153 av_tx_uninit(&s->fft);
154 ret = av_tx_init(&s->fft, &s->tx_fn, AV_TX_FLOAT_FFT, 0, s->fft_size, &scale, 0);
155 if (ret < 0) {
156 av_log(ctx, AV_LOG_ERROR, "Unable to create FFT context. "
157 "The window size might be too high.\n");
158 return ret;
159 }
160
161 /* FFT buffers: x2 for each (display) channel buffer.
162 * Note: we use free and malloc instead of a realloc-like function to
163 * make sure the buffer is aligned in memory for the FFT functions. */
164 for (i = 0; i < s->nb_channels; i++) {
165 av_freep(&s->fft_input[i]);
166 av_freep(&s->fft_data[i]);
167 av_freep(&s->avg_data[i]);
168 }
169 av_freep(&s->bypass);
170 av_freep(&s->fft_input);
171 av_freep(&s->fft_data);
172 av_freep(&s->avg_data);
173 s->nb_channels = inlink->ch_layout.nb_channels;
174
175 s->bypass = av_calloc(s->nb_channels, sizeof(*s->bypass));
176 if (!s->bypass)
177 return AVERROR(ENOMEM);
178 s->fft_input = av_calloc(s->nb_channels, sizeof(*s->fft_input));
179 if (!s->fft_input)
180 return AVERROR(ENOMEM);
181 s->fft_data = av_calloc(s->nb_channels, sizeof(*s->fft_data));
182 if (!s->fft_data)
183 return AVERROR(ENOMEM);
184 s->avg_data = av_calloc(s->nb_channels, sizeof(*s->avg_data));
185 if (!s->avg_data)
186 return AVERROR(ENOMEM);
187 for (i = 0; i < s->nb_channels; i++) {
188 s->fft_input[i] = av_calloc(FFALIGN(s->win_size, 512), sizeof(**s->fft_input));
189 s->fft_data[i] = av_calloc(FFALIGN(s->win_size, 512), sizeof(**s->fft_data));
190 s->avg_data[i] = av_calloc(s->nb_freq, sizeof(**s->avg_data));
191 if (!s->fft_data[i] || !s->avg_data[i] || !s->fft_input[i])
192 return AVERROR(ENOMEM);
193 }
194
195 /* pre-calc windowing function */
196 s->window_func_lut = av_realloc_f(s->window_func_lut, s->win_size,
197 sizeof(*s->window_func_lut));
198 if (!s->window_func_lut)
199 return AVERROR(ENOMEM);
200 generate_window_func(s->window_func_lut, s->win_size, s->win_func, &overlap);
201 if (s->overlap == 1.)
202 s->overlap = overlap;
203 s->hop_size = (1. - s->overlap) * s->win_size;
204 if (s->hop_size < 1) {
205 av_log(ctx, AV_LOG_ERROR, "overlap %f too big\n", s->overlap);
206 return AVERROR(EINVAL);
207 }
208
209 for (s->scale = 0, i = 0; i < s->win_size; i++) {
210 s->scale += s->window_func_lut[i] * s->window_func_lut[i];
211 }
212
213 s->window = ff_get_audio_buffer(inlink, s->win_size * 2);
214 if (!s->window)
215 return AVERROR(ENOMEM);
216
217 l->frame_rate = s->frame_rate;
218 outlink->time_base = av_inv_q(l->frame_rate);
219 outlink->sample_aspect_ratio = (AVRational){1,1};
220 outlink->w = s->w;
221 outlink->h = s->h;
222
223 ret = av_channel_layout_copy(&s->ch_layout, &inlink->ch_layout);
224 if (ret < 0)
225 return ret;
226 s->nb_draw_channels = s->nb_channels;
227
228 if (strcmp(s->ch_layout_str, "all")) {
229 int nb_draw_channels = 0;
231 s->ch_layout_str);
232
233 for (int ch = 0; ch < s->nb_channels; ch++) {
235
236 s->bypass[ch] = av_channel_layout_index_from_channel(&s->ch_layout, channel) < 0;
237 nb_draw_channels += s->bypass[ch] == 0;
238 }
239
240 s->nb_draw_channels = nb_draw_channels;
241 }
242
243 return 0;
244}
245
246static inline void draw_dot(AVFrame *out, int x, int y, uint8_t fg[4])
247{
248
249 uint32_t color = AV_RL32(out->data[0] + y * out->linesize[0] + x * 4);
250
251 if ((color & 0xffffff) != 0)
252 AV_WL32(out->data[0] + y * out->linesize[0] + x * 4, AV_RL32(fg) | color);
253 else
254 AV_WL32(out->data[0] + y * out->linesize[0] + x * 4, AV_RL32(fg));
255}
256
257static int get_sx(ShowFreqsContext *s, int f)
258{
259 switch (s->fscale) {
260 case FS_LINEAR:
261 return (s->w/(float)s->nb_freq)*f;
262 case FS_LOG:
263 return s->w-pow(s->w, (s->nb_freq-f-1)/(s->nb_freq-1.));
264 case FS_RLOG:
265 return pow(s->w, f/(s->nb_freq-1.));
266 }
267
268 return 0;
269}
270
271static float get_bsize(ShowFreqsContext *s, int f)
272{
273 switch (s->fscale) {
274 case FS_LINEAR:
275 return s->w/(float)s->nb_freq;
276 case FS_LOG:
277 return pow(s->w, (s->nb_freq-f-1)/(s->nb_freq-1.))-
278 pow(s->w, (s->nb_freq-f-2)/(s->nb_freq-1.));
279 case FS_RLOG:
280 return pow(s->w, (f+1)/(s->nb_freq-1.))-
281 pow(s->w, f /(s->nb_freq-1.));
282 }
283
284 return 1.;
285}
286
287static inline void plot_freq(ShowFreqsContext *s, int ch,
288 double a, int f, uint8_t fg[4], int *prev_y,
289 AVFrame *out, AVFilterLink *outlink)
290{
291 FilterLink *outl = ff_filter_link(outlink);
292 const int w = s->w;
293 const float min = s->minamp;
294 const float avg = s->avg_data[ch][f];
295 const float bsize = get_bsize(s, f);
296 const int sx = get_sx(s, f);
297 int end = outlink->h;
298 int x, y, i;
299
300 switch(s->ascale) {
301 case AS_SQRT:
302 a = 1.0 - sqrt(a);
303 break;
304 case AS_CBRT:
305 a = 1.0 - cbrt(a);
306 break;
307 case AS_LOG:
308 a = log(av_clipd(a, min, 1)) / log(min);
309 break;
310 case AS_LINEAR:
311 a = 1.0 - a;
312 break;
313 }
314
315 switch (s->cmode) {
316 case COMBINED:
317 y = a * outlink->h - 1;
318 break;
319 case SEPARATE:
320 end = (outlink->h / s->nb_draw_channels) * (ch + 1);
321 y = (outlink->h / s->nb_draw_channels) * ch + a * (outlink->h / s->nb_draw_channels) - 1;
322 break;
323 default:
324 av_assert0(0);
325 }
326 if (y < 0)
327 return;
328
329 switch (s->avg) {
330 case 0:
331 y = s->avg_data[ch][f] = !outl->frame_count_in ? y : FFMIN(0, y);
332 break;
333 case 1:
334 break;
335 default:
336 s->avg_data[ch][f] = avg + y * (y - avg) / (FFMIN(outl->frame_count_in + 1, s->avg) * (float)y);
337 y = av_clip(s->avg_data[ch][f], 0, outlink->h - 1);
338 break;
339 }
340
341 switch(s->mode) {
342 case LINE:
343 if (*prev_y == -1) {
344 *prev_y = y;
345 }
346 if (y <= *prev_y) {
347 for (x = sx + 1; x < sx + bsize && x < w; x++)
348 draw_dot(out, x, y, fg);
349 for (i = y; i <= *prev_y; i++)
350 draw_dot(out, sx, i, fg);
351 } else {
352 for (i = *prev_y; i <= y; i++)
353 draw_dot(out, sx, i, fg);
354 for (x = sx + 1; x < sx + bsize && x < w; x++)
355 draw_dot(out, x, i - 1, fg);
356 }
357 *prev_y = y;
358 break;
359 case BAR:
360 for (x = sx; x < sx + bsize && x < w; x++)
361 for (i = y; i < end; i++)
362 draw_dot(out, x, i, fg);
363 break;
364 case DOT:
365 for (x = sx; x < sx + bsize && x < w; x++)
366 draw_dot(out, x, y, fg);
367 break;
368 }
369}
370
371static int plot_freqs(AVFilterLink *inlink, int64_t pts)
372{
373 AVFilterContext *ctx = inlink->dst;
374 AVFilterLink *outlink = ctx->outputs[0];
375 ShowFreqsContext *s = ctx->priv;
376 AVFrame *in = s->window;
377 const int win_size = s->win_size;
378 char *colors, *color, *saveptr = NULL;
379 AVFrame *out;
380 int ch, n;
381
382 /* fill FFT input with the number of samples available */
383 for (ch = 0; ch < s->nb_channels; ch++) {
384 const float *p = (float *)in->extended_data[ch];
385
386 if (s->bypass[ch])
387 continue;
388
389 for (n = 0; n < win_size; n++) {
390 s->fft_input[ch][n].re = p[n] * s->window_func_lut[n];
391 s->fft_input[ch][n].im = 0;
392 }
393 }
394
395 /* run FFT on each samples set */
396 for (ch = 0; ch < s->nb_channels; ch++) {
397 if (s->bypass[ch])
398 continue;
399
400 s->tx_fn(s->fft, s->fft_data[ch], s->fft_input[ch], sizeof(AVComplexFloat));
401 }
402
403 s->pts = av_rescale_q(pts, inlink->time_base, outlink->time_base);
404 if (s->old_pts >= s->pts)
405 return 0;
406 s->old_pts = s->pts;
407
408#define RE(x, ch) s->fft_data[ch][x].re
409#define IM(x, ch) s->fft_data[ch][x].im
410#define M(a, b) (sqrt((a) * (a) + (b) * (b)))
411#define P(a, b) (atan2((b), (a)))
412
413 colors = av_strdup(s->colors);
414 if (!colors)
415 return AVERROR(ENOMEM);
416
417 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
418 if (!out) {
419 av_free(colors);
420 return AVERROR(ENOMEM);
421 }
422
423 for (n = 0; n < outlink->h; n++)
424 memset(out->data[0] + out->linesize[0] * n, 0, outlink->w * 4);
425
426 for (ch = 0; ch < s->nb_channels; ch++) {
427 uint8_t fg[4] = { 0xff, 0xff, 0xff, 0xff };
428 int prev_y = -1, f;
429 double a;
430
431 color = av_strtok(ch == 0 ? colors : NULL, " |", &saveptr);
432 if (color)
433 av_parse_color(fg, color, -1, ctx);
434
435 if (s->bypass[ch])
436 continue;
437
438 switch (s->data_mode) {
439 case MAGNITUDE:
440 for (f = 0; f < s->nb_freq; f++) {
441 a = av_clipd(M(RE(f, ch), IM(f, ch)) / s->scale, 0, 1);
442
443 plot_freq(s, ch, a, f, fg, &prev_y, out, outlink);
444 }
445 break;
446 case PHASE:
447 for (f = 0; f < s->nb_freq; f++) {
448 a = av_clipd((M_PI + P(RE(f, ch), IM(f, ch))) / (2. * M_PI), 0, 1);
449
450 plot_freq(s, ch, a, f, fg, &prev_y, out, outlink);
451 }
452 break;
453 case DELAY:
454 for (f = 0; f < s->nb_freq; f++) {
455 a = av_clipd((M_PI - P(IM(f, ch) * RE(f-1, ch) - IM(f-1, ch) * RE(f, ch),
456 RE(f, ch) * RE(f-1, ch) + IM(f, ch) * IM(f-1, ch))) / (2. * M_PI), 0, 1);
457
458 plot_freq(s, ch, a, f, fg, &prev_y, out, outlink);
459 }
460 break;
461 }
462 }
463
464 av_free(colors);
465 out->pts = s->pts;
466 out->duration = 1;
467 out->sample_aspect_ratio = (AVRational){1,1};
468 return ff_filter_frame(outlink, out);
469}
470
471static int filter_frame(AVFilterLink *inlink, AVFrame *in)
472{
473 AVFilterContext *ctx = inlink->dst;
474 ShowFreqsContext *s = ctx->priv;
475 const int offset = s->win_size - s->hop_size;
476 int64_t pts = in->pts;
477
478 for (int ch = 0; ch < in->ch_layout.nb_channels; ch++) {
479 float *dst = (float *)s->window->extended_data[ch];
480
481 memmove(dst, &dst[s->hop_size], offset * sizeof(float));
482 memcpy(&dst[offset], in->extended_data[ch], in->nb_samples * sizeof(float));
483 memset(&dst[offset + in->nb_samples], 0, (s->hop_size - in->nb_samples) * sizeof(float));
484 }
485
486 av_frame_free(&in);
487
488 return plot_freqs(inlink, pts);
489}
490
492{
493 AVFilterLink *inlink = ctx->inputs[0];
494 AVFilterLink *outlink = ctx->outputs[0];
495 ShowFreqsContext *s = ctx->priv;
496 AVFrame *in;
497 int ret;
498
499 FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink);
500
501 ret = ff_inlink_consume_samples(inlink, s->hop_size, s->hop_size, &in);
502 if (ret < 0)
503 return ret;
504
505 if (ret > 0)
506 ret = filter_frame(inlink, in);
507 if (ret < 0)
508 return ret;
509
510 if (ff_inlink_queued_samples(inlink) >= s->hop_size) {
512 return 0;
513 }
514
515 FF_FILTER_FORWARD_STATUS(inlink, outlink);
516 FF_FILTER_FORWARD_WANTED(outlink, inlink);
517
518 return FFERROR_NOT_READY;
519}
520
522{
523 ShowFreqsContext *s = ctx->priv;
524 int i;
525
526 av_channel_layout_uninit(&s->ch_layout);
527 av_tx_uninit(&s->fft);
528 for (i = 0; i < s->nb_channels; i++) {
529 if (s->fft_input)
530 av_freep(&s->fft_input[i]);
531 if (s->fft_data)
532 av_freep(&s->fft_data[i]);
533 if (s->avg_data)
534 av_freep(&s->avg_data[i]);
535 }
536 av_freep(&s->bypass);
537 av_freep(&s->fft_input);
538 av_freep(&s->fft_data);
539 av_freep(&s->avg_data);
540 av_freep(&s->window_func_lut);
541 av_frame_free(&s->window);
542}
543
545 {
546 .name = "default",
547 .type = AVMEDIA_TYPE_VIDEO,
548 .config_props = config_output,
549 },
550};
551
553 .p.name = "showfreqs",
554 .p.description = NULL_IF_CONFIG_SMALL("Convert input audio to a frequencies video output."),
555 .p.priv_class = &showfreqs_class,
556 .uninit = uninit,
557 .priv_size = sizeof(ShowFreqsContext),
562};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static enum AVSampleFormat sample_fmts[]
Definition adpcmenc.c:933
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition aeval.c:246
#define DELAY(name, type, fill)
Definition af_adelay.c:68
@ NB_MODES
Definition af_afftdn.c:48
const FFFilter ff_avf_showfreqs
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
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition audio.c:74
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
AmplitudeScale
@ NB_ASCALES
DisplayMode
@ SEPARATE
@ DOT
@ LINE
FrequencyScale
Definition avf_showcwt.c:37
static float get_bsize(ShowFreqsContext *s, int f)
static int get_sx(ShowFreqsContext *s, int f)
ChannelMode
@ COMBINED
@ NB_CMODES
static const AVFilterPad showfreqs_outputs[]
DataMode
@ NB_DATA
#define IM(x, ch)
@ AS_LOG
@ AS_CBRT
@ AS_SQRT
@ AS_LINEAR
@ BAR
@ FS_LOG
@ FS_LINEAR
@ NB_FSCALES
@ FS_RLOG
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
#define RE(x, ch)
static void draw_dot(AVFrame *out, int x, int y, uint8_t fg[4])
static int plot_freqs(AVFilterLink *inlink, int64_t pts)
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
static int activate(AVFilterContext *ctx)
#define P(a, b)
static av_cold void uninit(AVFilterContext *ctx)
static const AVOption showfreqs_options[]
#define OFFSET(x)
static int config_output(AVFilterLink *outlink)
#define M(a, b)
static void plot_freq(ShowFreqsContext *s, int ch, double a, int f, uint8_t fg[4], int *prev_y, AVFrame *out, AVFilterLink *outlink)
#define MAGNITUDE(y, ch)
#define PHASE(y, ch)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_inlink_consume_samples(AVFilterLink *link, unsigned min, unsigned max, AVFrame **rframe)
Take samples from the link's FIFO and update the link's stats.
Definition avfilter.c:1540
void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
Mark a filter ready and schedule it for activation.
Definition avfilter.c:229
int ff_inlink_queued_samples(AVFilterLink *link)
Definition avfilter.c:1495
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define f(width, name)
Definition cbs_vp8.c:236
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
#define FLAGS
Definition cmdutils.c:598
#define avg(a, b, c, d)
#define av_clipd
Definition common.h:148
#define av_clip
Definition common.h:100
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
#define min(a, b)
channel
Use these values when setting the channel map with ebur128_set_channel().
Definition ebur128.h:39
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add ref as a new reference to formats.
Definition formats.c:756
av_warn_unused_result AVFilterFormats * ff_make_sample_format_list(const enum AVSampleFormat *fmts)
Create a list of supported sample formats.
av_warn_unused_result AVFilterFormats * ff_make_pixel_format_list(const enum AVPixelFormat *fmts)
Create a list of supported pixel formats.
@ AV_OPT_TYPE_IMAGE_SIZE
Underlying C type is two consecutive integers.
Definition opt.h:302
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_VIDEO_RATE
Underlying C type is AVRational.
Definition opt.h:314
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
Definition opt.h:270
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
int av_channel_layout_from_string(AVChannelLayout *channel_layout, const char *str)
Initialize a channel layout from a given string description.
int av_channel_layout_index_from_channel(const AVChannelLayout *channel_layout, enum AVChannel channel)
Get the index of a given channel in a channel layout.
enum AVChannel av_channel_layout_channel_from_index(const AVChannelLayout *channel_layout, unsigned int idx)
Get the channel with the given index in a channel layout.
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
AVChannel
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
#define AVERROR(e)
Definition error.h:45
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition rational.h:159
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
AVSampleFormat
Audio sample formats.
Definition samplefmt.h:55
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition samplefmt.h:66
@ AV_SAMPLE_FMT_NONE
Definition samplefmt.h:56
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
Definition avstring.c:179
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
int a
static void scale(int *out, const int *in, const int w, const int h, const int shift)
Definition intra.c:278
#define AV_WL32(p, v)
#define AV_RL32(p)
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
unsigned offset
Definition libaomenc.c:763
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FF_FILTER_FORWARD_WANTED(outlink, inlink)
Forward the frame_wanted_out flag from an output link to an input link.
Definition filters.h:694
#define FF_FILTER_FORWARD_STATUS(inlink, outlink)
Acknowledge the status on an input link and forward it to an output link.
Definition filters.h:666
#define FFERROR_NOT_READY
Filters implementation helper functions and internal structures.
Definition filters.h:34
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
Definition filters.h:639
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define FILTER_QUERY_FUNC2(func)
Definition filters.h:241
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static enum AVPixelFormat pix_fmts[]
Definition libkvazaar.c:296
uint8_t w
Definition llvidencdsp.c:39
#define FFMIN(a, b)
Definition macros.h:49
#define FFALIGN(x, a)
Definition macros.h:78
#define M_PI
Definition mathematics.h:67
void * av_calloc(size_t nmemb, size_t size)
Definition mem.c:264
Memory handling functions.
#define av_strdup(s)
Definition ops_static.c:55
AVOptions.
int av_parse_color(uint8_t *rgba_color, const char *color_string, int slen, void *log_ctx)
Put the RGBA values that correspond to color_string in rgba_color.
Definition parseutils.c:359
misc parsing utilities
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition pixfmt.h:100
formats
Definition signature.h:47
An AVChannelLayout holds information about the channel layout of audio data.
int nb_channels
Number of channels in this layout.
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
Lists of formats / etc.
Definition avfilter.h:120
A list of supported formats for one end of a filter link.
Definition formats.h:64
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int nb_samples
number of audio samples (per channel) described by this frame
Definition frame.h:552
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition frame.h:574
AVChannelLayout ch_layout
Channel layout of the audio data.
Definition frame.h:815
uint8_t ** extended_data
pointers to the data planes/channels.
Definition frame.h:533
AVOption.
Definition opt.h:428
Rational number (pair of numerator and denominator).
Definition rational.h:58
AVTXContext * fft
AVComplexFloat ** fft_data
AVRational frame_rate
float * window_func_lut
AVComplexFloat ** fft_input
AVChannelLayout ch_layout
Definition swscale.c:71
#define cbrt
Definition tablegen.h:35
#define av_free(p)
#define av_realloc_f(p, o, n)
#define av_freep(p)
#define av_log(a,...)
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
static int64_t pts
av_cold void av_tx_uninit(AVTXContext **ctx)
Frees a context and sets *ctx to NULL, does nothing when *ctx == NULL.
Definition tx.c:295
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 (i)MDCTs with an odd length are currently...
Definition tx.c:903
@ AV_TX_FLOAT_FFT
Standard complex to complex FFT with sample data type of AVComplexFloat, AVComplexDouble or AVComplex...
Definition tx.h:47
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:151
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89
#define WIN_FUNC_OPTION(win_func_opt_name, win_func_offset, flag, default_window_func)
Definition window_func.h:37
static void generate_window_func(float *lut, int N, int win_func, float *overlap)
Definition window_func.h:63
@ WFUNC_HANNING
Definition window_func.h:29