Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-10mpeg4dec: use unsigned type for startcode in ff_mpeg4_decode_picture_headerMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-08-01mpeg4videodec: remove dead code that would have detected erroneous encodingDustin Brody
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-21mpeg4: add Mpeg4 Profiles names.Thierry Foucu
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-07-21mpeg4: decode Level Profile for MPEG4 Part 2.Thierry Foucu
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
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-06-02Remove unused variablesMans Rullgard
2011-06-02H264/MPEG frame-level multi-threading.Alexander Strange
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-05-02Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-13mpeg4video: ignore broken GOP headersAnatoly Nenashev
Some MPEG4 cameras produce files with empty GOP headers. This patch makes the decoder ignore such broken headers and proceed with the following I-frame. Without this change, the following start code is missed resulting in the entire I-frame being skipped. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-08logging: downgrade recoverable errors to warningsStefan Kost
In all 3 cases, the decoding continues and thus a warning would be sufficient. Helps application that catch them with own log handers to handle them accordingly. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-23Remove redundant checks against MIN_CACHE_BITSMans Rullgard
With the removal of the libmpeg2 bitstream reader, MIN_CACHE_BITS is always >= 25, so tests against smaller values can be removed. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-04mpeg4videodec: reset time_base.num to 0 when detecting time_base.den=0Aurelien Jacobs
to avoid leaving time_base in a broken/inconsistent state fix issue2471 Originally committed as revision 26207 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-08Add new decoder property max_lowres and do not init decoder if requested ↵Carl Eugen Hoyos
value is higher. Originally committed as revision 24098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-30Replace @returns by @return.Benoit Fouet
Originally committed as revision 22729 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-08Change xvid/divx/lavc build variables to be consistent to x264_build.Michael Niedermayer
Originally committed as revision 21682 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Rename most non static h263 tables so their name contains h263.Michael Niedermayer
Originally committed as revision 21098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Rename mpeg4 intra vlc tables so they contain "mpeg4", this improves readabilityMichael Niedermayer
of msmpeg4 code (one now knows where that table comes from). Originally committed as revision 21097 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Rename DCtab_*, its a global variable and it helps understanding if mpeg4Michael Niedermayer
is in its name. Originally committed as revision 21096 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Split the mpeg4 encoder and decoder off h263.cMichael Niedermayer
Originally committed as revision 21079 to svn://svn.ffmpeg.org/ffmpeg/trunk