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-11-29mpeg4videoenc: don't set MpegEncContext.resync_markerAnton Khirnov
It is only used in one place immediately after it is set.
2013-11-29mpeg4videoenc: write 0 instead of vol_sprite_usageAnton Khirnov
That field is never set for encoding.
2013-11-21mpeg4videoenc: restore macro parenthesesVittorio Giovara
These were erroneously removed in 8769113accf1f3b78634dec60b37f7354ed6d88d.
2013-11-19mpeg4videoenc: K&R formatting cosmeticsVittorio Giovara
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-05-04avcodec: Add av_cold attributes to init functions missing themDiego Biurrun
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-01-23Drop DCTELEM typedefDiego Biurrun
It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2012-12-21miscellaneous typo fixesDiego Biurrun
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-09-09Rename ff_put_string to avpriv_put_stringMartin Storsjö
This allows using it from libavformat as well. This will be used by the RTP/JPEG depacketizer. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-05avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union memberMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-04-06cosmetics: Align codec declarationsMartin Storsjö
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-29mpegvideo_enc: add cbp_rd flag to mpv_flags.Anton Khirnov
Deprecate CODEC_FLAG_CBP_RD.
2012-02-29lavc: add -mpv_flags to mpegvideo_enc-based encoders.Anton Khirnov
Deprecate CODEC_FLAG2_SKIP_RD in favor of the corresponding mpv_flags flag.
2012-02-19mpegvideo_enc: switch to encode2().Anton Khirnov
2012-02-16mpegvideo: Add ff_ prefix to nonstatic functionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16mpeg4: Add ff_ prefixes to nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16vlc/rl: Add ff_ prefix to the nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16h263: Add ff_ prefix to nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-12-13doxygen: misc consistency, spelling and wording fixesDiego Biurrun
2011-10-23lavc: move get_b_cbp() from h263.h to mpeg4videoenc.cAnton Khirnov
It's not used anywhere else.
2011-10-23mpegvideo: remove some unused variables from MpegEncContext.Anton Khirnov
2011-10-20lavc: use avpriv_ prefix for ff_copy_bits and align_put_bits.Anton Khirnov
They are used in lavf.
2011-10-12AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov
2011-08-31mpeg12enc/mpeg4videoenc: add 'alternate_scan' private option.Anton Khirnov
Deprecate CODEC_FLAG_ALT_SCAN
2011-08-31mpeg4enc: add 'data_partitioning' private option.Anton Khirnov
Deprecate CODEC_FLAG_PART
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
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-27mpeg4videoenc: Remove disabled variant of mpeg4_encode_block().Diego Biurrun
As a nice sideeffect this fixes the following warning: libavcodec/mpeg4videoenc.c:302:20: warning: variable ‘rl’ set but not used [-Wunused-but-set-variable]
2011-05-02Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-04-22Introduce slice threads flag.Ronald S. Bultje
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
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>
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 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-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-08Explain why the level variable is magically inceased in mpeg4_encode_dc().Diego Biurrun
It must be in a certain range to avoid DC overflows. Originally committed as revision 21087 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