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-12-17h264: Refactor decode_frame_packing_arrangementVittorio Giovara
Directly set the fields when necessary.
2013-12-09h264: parse frame packing arrangement SEI messages and save relevant ↵Vittorio Giovara
stereo3d information
2013-09-24h264_sei: check SEI sizeMichael Niedermayer
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-09-24h264_sei: log unknown sei messagesVittorio Giovara
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-08-20avcodec: Remove some commented-out debug cruftDiego Biurrun
2013-08-02h264_sei: Return meaningful valuesVittorio Giovara
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-08-01h264_sei: K&R formatting cosmeticsVittorio Giovara
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-08-01h264_sei: Remove pointless old commentDiego Biurrun
2013-02-15h264: deMpegEncContextizeAnton Khirnov
Most of the changes are just trivial are just trivial replacements of fields from MpegEncContext with equivalent fields in H264Context. Everything in h264* other than h264.c are those trivial changes. The nontrivial parts are: 1) extracting a simplified version of the frame management code from mpegvideo.c. We don't need last/next_picture anymore, since h264 uses its own more complex system already and those were set only to appease the mpegvideo parts. 2) some tables that need to be allocated/freed in appropriate places. 3) hwaccels -- mostly trivial replacements. for dxva, the draw_horiz_band() call is moved from ff_dxva2_common_end_frame() to per-codec end_frame() callbacks, because it's now different for h264 and MpegEncContext-based decoders. 4) svq3 -- it does not use h264 complex reference system, so I just added some very simplistic frame management instead and dropped the use of ff_h264_frame_start(). Because of this I also had to move some initialization code to svq3. Additional fixes for chroma format and bit depth changes by Janne Grunau <janne-libav@jannau.net> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-03-05Replace computations of remaining bits with calls to get_bits_left().Alex Converse
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-22Ignore x264 build=0 as there is no such version, this restores previousMichael Niedermayer
behavior approximately. Originally committed as revision 22628 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-12Split SEI code off h264.c.Michael Niedermayer
Originally committed as revision 21168 to svn://svn.ffmpeg.org/ffmpeg/trunk