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-08-20avcodec: Remove some commented-out debug cruftDiego Biurrun
2013-03-21h264: add a parameter to the CHROMA444 macro.Anton Khirnov
This way it does not look like a constant.
2013-03-21h264: add a parameter to the CHROMA422 macro.Anton Khirnov
This way it does not look like a constant.
2013-03-21h264: add a parameter to the CABAC macro.Anton Khirnov
This way it does not look like a constant.
2013-03-21h264: add a parameter to the FRAME_MBAFF macro.Anton Khirnov
This way it does not look like a constant.
2013-03-21h264: add a parameter to the MB_FIELD macro.Anton Khirnov
This way it does not look like a constant.
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
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-05-10h264: K&R formatting cosmetics for header files (part II/II)Diego Biurrun
2011-12-13doxygen: misc consistency, spelling and wording fixesDiego Biurrun
2011-10-21h264: 4:2:2 intra decoding supportBaptiste Coudurier
Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-10-09h264: fix signed overflows in x*0x01010101 expressionsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-14h264: move fill_decode_neighbors()/fill_decode_caches() to h264_mvpred.hDiego Biurrun
This fixes a bunch of unused function warnings.
2011-07-12h264: move decode_mb_skip() from h264.h to h.264_mvpred.hDiego Biurrun
This resolves a circular dependency between the headers.
2011-07-11Eliminate FF_COMMON_FRAME macro.Diego Biurrun
FF_COMMON_FRAME holds the contents of the AVFrame structure and is also copied to struct Picture. Replace by an embedded AVFrame structure in struct Picture.
2011-07-09H.264: merge fill_rectangle into P-SKIP MV prediction, to match B-SKIPJason Garrett-Glaser
2011-07-09H.264: faster P-SKIP decodingJason Garrett-Glaser
Inline the relevant parts of fill_decode_caches into P-SKIP mv prediction to avoid calling the whole thing.
2011-07-09H.264: av_always_inline some more functionsJason Garrett-Glaser
These weren't getting inlined all the time in all gcc versions.
2011-07-03h264: remove assert() immediately following return statementMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
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-02-26Simplify code in mv_pred.Michael Niedermayer
Not benchmarked as this is petty much just code removial. Originally committed as revision 22066 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-26Get rid of mb2b8_xy and b8_stride, change arrays organized based on b8_stride toMichael Niedermayer
ones based on mb_stride in h264. about 20 cpu cycles faster overall per MB Originally committed as revision 22065 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-18H264: use alias-safe macrosMåns Rullgård
This eliminates all aliasing violation warnings in h264 code. No measurable speed difference with gcc-4.4.3 on i7. Originally committed as revision 21881 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-19Remove 2 checks from fetch_diagonal_mv() that apparently serve no purpose.Michael Niedermayer
Originally committed as revision 21314 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-19Move a few things into a deeper if() in fetch_diagonal_mv().Michael Niedermayer
Originally committed as revision 21313 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-19Remove code that handles the case of a MB pair to our right being available.Michael Niedermayer
Thats not possible except maybe in FMO which noone uses anyway. iam also not sure if this wasnt missing a part_width. Originally committed as revision 21312 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-15Add forgotton multiple inclusion guards to h264_mvpred.h.Michael Niedermayer
Originally committed as revision 21220 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-13Split motion vector prediction off h264.c/h.Michael Niedermayer
Originally committed as revision 21174 to svn://svn.ffmpeg.org/ffmpeg/trunk