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
2012-02-22mpegvideo_enc: only allocate output packet when we know there will be outputAnton Khirnov
Fixes a memleak.
2012-02-19mpegvideo_enc: switch to encode2().Anton Khirnov
2012-02-19mpegvideo_enc: force encoding delay of at least 1 frame when low_delay=0Anton Khirnov
This allows the following commit to extrapolate better dts for the first frame. Pts difference between the first two frames is reused as the difference between pts and dts of the first frame.
2012-02-16mpegvideo: Add ff_ prefix to nonstatic functionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16rv: Add ff_ prefix to nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16msmpeg4: Add ff_ prefix to nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16mpeg12: Add ff_ prefix to nonstatic symbolsMartin 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-16libavcodec: Prefix fdct_ifast, fdct_ifast248Martin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16libavcodec: Add ff_ prefix to some nonstatic symbolsMartin Storsjö
Prefix the functions atrac_generate_tables, atrac_iqmf, dct_quantize_c. 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>
2012-01-27lavc: remove disabled FF_API_MPEGVIDEO_GLOBAL_OPTS cruft.Anton Khirnov
2012-01-12mpegvideo_enc: ifdef out/replace references to deprecated codec flags.Anton Khirnov
2012-01-02mpegenc: use avctx->slices as number of slicesJanne Grunau
Adds a new member to MpegEncContext to hold the number of used slice contexts. Fixes segfaults with '-threads 17 -thread_type slice' and fate-vsynth{1,2}-mpeg{2,4}thread{,_ilace} with --disable-pthreads.
2011-12-30mpegvideo_enc: K&R cosmetics (line 1000-2000).Aneesh Dogra
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-12-27mpegvideo_enc: K&R cosmeticsAneesh Dogra
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-12-21mpegvideo_enc: separate declarations and statementsDiego Biurrun
libavcodec/mpegvideo_enc.c:1209: warning: ISO C90 forbids mixed declarations and code
2011-12-14mpegvideo: remove abort() in ff_find_unused_picture()Andrey Utkin
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-12-13doxygen: misc consistency, spelling and wording fixesDiego Biurrun
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-10-10mpegvideo_enc: fix a signed overflowMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-09-21Fix assert() calls that need updates after FF_COMMON_FRAME macro elimination.Diego Biurrun
This fixes build failures with -DDEBUG in CPPFLAGS.
2011-08-31h263/p encoder: add 'structured_slices' private option.Anton Khirnov
Deprecate CODEC_FLAG_H263P_SLICE_STRUCT
2011-08-31h263/p encoder: add 'obmc' private option.Anton Khirnov
Deprecate CODEC_FLAG_OBMC
2011-08-31h263p encoder: add 'aiv' private option.Anton Khirnov
Deprecate CODEC_FLAG_H263P_AIV
2011-08-31h263p encoder: add 'umv' private option.Anton Khirnov
Deprecate CODEC_FLAG_H263P_UMV
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-08-31mpeg2enc: add 'non_linear_quant' private optionAnton Khirnov
Deprecate CODEC_FLAG2_NON_LINEAR_QUANT
2011-08-31mpeg12enc: add intra_vlc private option.Anton Khirnov
Deprecate CODEC_FLAG2_INTRA_VLC.
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-21jfdctint: add 10-bit versionMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.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-07-10lavc: make avcodec_alloc_context3 officially public.Anton Khirnov
Deprecate avcodec_alloc_context/2.
2011-07-10lavc: introduce avcodec_open2() as a replacement for avcodec_open().Anton Khirnov
Adds support for decoder-private options and makes setting other options simpler.
2011-07-04Do not include mathematics.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-02put_bits: remove ALT_BITSTREAM_WRITERMans Rullgard
The code for this variant does not compile. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-01cosmetics: fix some then/than typosDiego Biurrun
2011-06-03mpegvideoenc: fix multislice fate tests with threading disabled.Ronald S. Bultje
The MPEG encoding code assumes that n_threads == n_slices, and thus it should use n_slices even if threading itself is disabled.
2011-06-02H264/MPEG frame-level multi-threading.Alexander Strange
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-05-26Remove h263_msmpeg4 from MpegEncContext.Alex Converse
It was long ago superseded by msmpeg4_version.
2011-05-24lavc: remove msmpeg4v1 encoder.Anton Khirnov
The encoder has never produced files that could be decoded with any software and there should be no reason to create such files anyway.
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-02-15Pass VBV delay to the calling application via ctxChristophe Massiot
VBV delay is useful for T-STD compliance in some TS muxers. It is certainly possible to retrieve it by parsing the output of FFmpeg, but getting it from the context makes it simpler and less error-prone. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-29Move ff_emulated_edge_mc() into DSPContext.Ronald S. Bultje
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-25Make denoise_dct_c() and dct_quantize_trellis_c() static in definitionsMans Rullgard
1d4da6a460d5b78026e3b854fdd6f469957a054c added static to the prototypes for these fuctions. Adding it to the definitions as well. Signed-off-by: Mans Rullgard <mans@mansr.com>