Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-04avfilter: pass outlink to ff_get_audio_buffer()Paul B Mahol
This is more correct. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-12-23lavfi/af_aemphasis: remove unnecessary complex number usageGanesh Ajjanagadde
complex is not available on all platforms. Furthermore, it is trivial to rewrite complex number expressions to real arithmetic, and in fact sometimes advantageous for performance reasons: by wrapping as a complex, one forces a particular Cartesian representation that is not necessarily optimal for the purpose. Configure dependencies also removed, and aemphasis is now available across all platforms. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
2015-12-11avfilter/af_aemphasis: more declarations abovePaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-12-04avfilter: add audio emphasis filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>