aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/audio_fifo.c
Commit message (Collapse)AuthorAgeFilesLines
* avutil/audio_fifo: Constify some pointeesAndreas Rheinhardt2023-09-121-4/+5
| | | | | | | Also constify AVAudioFifo* in the peek functions besides constifying intermediate pointers (void**->void * const *). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avutil/audio_fifo: Avoid avutil.h inclusionAndreas Rheinhardt2022-02-241-2/+5
| | | | | Reviewed-by: Martin Storsjö <martin@martin.st> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* lavu/audio_fifo: switch to new FIFO APIAnton Khirnov2022-02-071-27/+17
|
* Replace all occurences of av_mallocz_array() by av_calloc()Andreas Rheinhardt2021-09-201-1/+1
| | | | | | | They do the same. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* Merge commit '0456e684394dc5a7b98ab9ebb48396d743bf3730'Clément Bœsch2017-03-241-2/+2
|\ | | | | | | | | | | | | * commit '0456e684394dc5a7b98ab9ebb48396d743bf3730': audio_fifo: Drop write-only variable Merged-by: Clément Bœsch <u@pkh.me>
| * audio_fifo: Drop write-only variableDiego Biurrun2016-10-271-2/+2
| |
* | avutil/audio_fifo: Use av_fifo_freep() and remove redundant if()Michael Niedermayer2016-10-141-2/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | avfilter: add loop filtersPaul B Mahol2016-02-181-0/+24
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter: add showfreqs filterPaul B Mahol2015-08-191-0/+19
| |
* | avutil/audio_fifo: use av_freep() to avoid leaving stale pointers in memoryMichael Niedermayer2014-12-271-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avutil/audio_fifo: Use av_mallocz_array()Michael Niedermayer2014-05-051-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Reinstate proper FFmpeg license for all files.Thilo Borgmann2013-08-301-4/+4
|/
* Don't include common.h from avutil.hMartin Storsjö2012-08-151-0/+1
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* avutil: add audio fifo bufferJustin Ruggles2012-04-201-0/+193
The functions operate on the sample level rather than the byte level and work with all audio sample formats.