aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/opusenc_utils.h
Commit message (Collapse)AuthorAgeFilesLines
* lavc/opus*: move to opus/ subdirAnton Khirnov2024-09-021-90/+0
|
* avcodec/opus: Move Silk declarations to a new header, opus_silk.hAndreas Rheinhardt2022-10-051-0/+3
| | | | | Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avcodec/opusenc_utils: add missing preprocessor guardsJames Almer2017-09-231-0/+5
| | | | | | Fixes fate-source. Signed-off-by: James Almer <jamrial@gmail.com>
* opusenc: implement a psychoacoustic systemRostislav Pehlivanov2017-09-231-0/+82
This commit implements a psychoacoustic system for the native Opus encoder. Its unlike any other psychoacoustic system known since its capable of using a lookahead to make better choices on how to treat the current frame and how many bits to allocate for it (and future frames). Also, whilst the main bulk of the analysis function has to run in a single thread, the per-frame anaylsis functions does not modify the main psychoacoustic context, so in the future it will be fairly trivial to run those as slice threads. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>