summaryrefslogtreecommitdiff
path: root/libavcodec/vorbis_parser.h
Commit message (Collapse)AuthorAge
* cosmetics: Drop empty comment linesDiego Biurrun2016-02-18
|
* vorbis_parser: Include stdint.h in the header, to make it work standaloneMartin Storsjö2014-11-25
| | | | | | This fixes "make checkheaders". Signed-off-by: Martin Storsjö <martin@martin.st>
* lavc: add a public API for parsing vorbis packets.Anton Khirnov2014-11-06
| | | | | | It is required by (at least) the ogg demuxer. Mark the current semi-public apriv API for removal.
* vorbis_parser: add an AV prefix to VorbisParseContextAnton Khirnov2014-11-06
| | | | This is done in preparation for making it public.
* vorbis_parser: use a dedicated AVClass for loggingAnton Khirnov2014-11-06
| | | | | | Currently, the API takes an external AVCodecContext, which is used only for extradata and logging. This change will allow to it to work without an AVCodecContext in the following commits.
* avcodec: add a Vorbis parser to get packet durationJustin Ruggles2012-03-03
This also allows for removing some of the Vorbis-related hacks.