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
2017-04-03Merge commit '81a3c42abe17e757fe890607f67201a240648993'Clément Bœsch
* commit '81a3c42abe17e757fe890607f67201a240648993': Drop some bogus Doxygen documentation. See 9365dfcbf665b83b2e60c5ec5e2abf1f0a49e2c3 Merged-by: Clément Bœsch <u@pkh.me>
2016-11-21Drop some bogus Doxygen documentation.Diego Biurrun
2016-02-24Merge commit '29c2d06d67724e994980045afa055c6c34611b30'Derek Buitenhuis
* commit '29c2d06d67724e994980045afa055c6c34611b30': cosmetics: Drop empty comment lines Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-02-18cosmetics: Drop empty comment linesDiego Biurrun
2016-02-01all: Make header guard names consistentTimothy Gu
2015-02-02vorbis: parse out setup headers as wellBen Boeckel
Prevents an 'Invalid packet' message. Currently mid-stream setup packets are ignored. Theoretically, they could, based on the specification, be used to reinitialize the stream if parameters change, but I don't expect that to be common (and no one seems to have asked for it). Signed-off-by: Ben Boeckel <mathstuf@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-25vorbis_parser: Include stdint.h in the header, to make it work standaloneMartin Storsjö
This fixes "make checkheaders". Signed-off-by: Martin Storsjö <martin@martin.st>
2014-11-08Fix make checkheaders for libavcodec/vorbis_parser.h.Carl Eugen Hoyos
2014-11-06avcodec/export av_vorbis_parse_frame_flags()Michael Niedermayer
The other functions where changed in the previous merge Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-06Merge commit '5e80fb7ff226f136dbcf3fed00a2966bf8e9bd70'Michael Niedermayer
* commit '5e80fb7ff226f136dbcf3fed00a2966bf8e9bd70': lavc: add a public API for parsing vorbis packets. Conflicts: doc/APIchanges libavcodec/Makefile libavcodec/version.h libavcodec/vorbis_parser.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-06Merge commit '6896f95b2483e52e717e2c75a4fd24fcb0e14b67'Michael Niedermayer
* commit '6896f95b2483e52e717e2c75a4fd24fcb0e14b67': vorbis_parser: add an AV prefix to VorbisParseContext Conflicts: libavcodec/vorbis_parser.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-06Merge commit '8747926'Michael Niedermayer
* commit '8747926': vorbis_parser: use a dedicated AVClass for logging Conflicts: libavcodec/vorbis_parser.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-06lavc: add a public API for parsing vorbis packets.Anton Khirnov
It is required by (at least) the ogg demuxer. Mark the current semi-public apriv API for removal.
2014-11-06vorbis_parser: add an AV prefix to VorbisParseContextAnton Khirnov
This is done in preparation for making it public.
2014-11-06vorbis_parser: use a dedicated AVClass for loggingAnton Khirnov
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.
2013-11-13vorbis: handle special packets in the middle of a streamBen Boeckel
This allows for updating metadata from new metadata packets in the middle of a stream (e.g., MPD streams). There still needs to be a signal that there *is* new metadata, but this is at least gets the data into a data structure. Signed-off-by: Ben Boeckel <mathstuf@gmail.com> Reviewed-by: wm4 <nfxjfg@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-30Reinstate proper FFmpeg license for all files.Thilo Borgmann
2012-03-04avcodec: add a Vorbis parser to get packet durationJustin Ruggles
This also allows for removing some of the Vorbis-related hacks.