summaryrefslogtreecommitdiff
path: root/libavfilter/vaf_spectrumsynth.c
Commit message (Collapse)AuthorAge
* lavfi: regroup formats lists in a single structure.Nicolas George2020-09-08
| | | | | | | | | | | | | | | It will allow to refernce it as a whole without clunky macros. Most of the changes have been automatically made with sed: sed -i ' s/-> *in_formats/->incfg.formats/g; s/-> *out_formats/->outcfg.formats/g; s/-> *in_channel_layouts/->incfg.channel_layouts/g; s/-> *out_channel_layouts/->outcfg.channel_layouts/g; s/-> *in_samplerates/->incfg.samplerates/g; s/-> *out_samplerates/->outcfg.samplerates/g; ' src/libavfilter/*(.)
* lavfi/vaf_spectrumsynth: switch to activate.Nicolas George2020-08-20
| | | | | | | Preserve the original workings, that does not use frames timestamps and therefore is very fragile. Allow to remove needs_fifo.
* lavfi: make window_func an inline functionRostislav Pehlivanov2017-09-23
| | | | | | | Eliminate lavc->lavfi dependency. The function isn't big and doesn't deserve its own file. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* avfilter/vaf_spectrumsynth: check return codePaul B Mahol2016-08-16
|
* all: move ff_exp10, ff_exp10f, ff_fast_powf to lavu/ffmath.hGanesh Ajjanagadde2016-03-22
| | | | | | | | | | | The idea is to use ffmath.h for internal implementations of math functions. Currently, it is used for variants of libm functions, but is by no means limited to such things. Note that this is not exported; use lavu/mathematics for such purposes. Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: Ganesh Ajjanagadde <gajjanag@gmail.com>
* avfilter/vaf_spectrumsynth: assert that variables are initialized by switch()Michael Niedermayer2016-02-11
| | | | | | | | Silences: CID1351387 Silences: CID1351388 Silences: CID1351389 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/vaf_spectrumsynth: Move "break" upMichael Niedermayer2016-02-07
| | | | | | | Fixes CID1351347 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/vaf_spectrumsynth: Fix mixed declaration and statmentMichael Niedermayer2016-01-15
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter: add spectrumsynth filterPaul B Mahol2016-01-14
Signed-off-by: Paul B Mahol <onemda@gmail.com>