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
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-04-04bmv: check for len being valid in bmv_decode_frame().Anton Khirnov
It can be 0 or -1 for invalid files, which may result in invalid memory access. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-02-12bmvaudio: decode directly to the user-provided AVFrameJustin Ruggles
2013-01-06bmv: return meaningful error codes.Anton Khirnov
2012-12-05lavc: fix decode_frame() third parameter semantics for video decodersAnton Khirnov
It's got_frame, not data size
2012-12-05lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov
It will be useful in the upcoming transition to refcounted AVFrames.
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-11-01bmvaudio: set channel layout at init() rather than validating itJustin Ruggles
2012-10-19bmv: get a new frame on every decode_frame(), so we can use direct renderingKostya Shishkov
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-06-03bmv: add stricter checks for invalid decoded lengthKostya Shishkov
This makes decoder handle random data passed as BMV frame data.
2012-01-02bmv audio: implement new audio decoding APIJustin Ruggles
2011-11-08BMV demuxer and decoderKostya Shishkov
Signed-off-by: Martin Storsjö <martin@martin.st>