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-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>
2011-01-25Make denoise_dct_c and dct_quantize_trellis_c static.Diego Elio Pettenò
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-05Make mpeg4 encoder log a more explicit error message when the timebaseStefano Sabatini
is not valid. Originally committed as revision 26223 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-05Our ljpeg encoder supports bgra, use the correct constant in the sanity check.Michael Niedermayer
Originally committed as revision 26220 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-05Remove PIX_FMT_RGB32 mjpeg encoding, there is no such thing ...Michael Niedermayer
Originally committed as revision 26218 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-04Fix YUV444P LJPEG encoding.Michael Niedermayer
Originally committed as revision 26215 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-0210l fix h263 encoder resolution test, array size is 8 not 7Baptiste Coudurier
Originally committed as revision 25305 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-26Fix rv20 encoding so the binary decoder can decode it.Michael Niedermayer
Originally committed as revision 25203 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-11Allow mpeg encoding with qscale and very low frame rate.James Darnley
Patch by James Darnley, james D darnley A gmail Originally committed as revision 25102 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-07Check rc_buffer_size value using integer arithmeticMåns Rullgård
Using floating-point here can cause erroneous rejection of parameters due to rounding errors leading to a slightly too large result. This fixes the mxf regression test with gcc 4.5 on x86_32. Originally committed as revision 25060 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-03Change all occurences of "inofficial" to "unofficial" in code, commentsRodney Baker
and options. Keep old options until next major version bump. Patch by Rodney Baker, rodney d baker a iinet d net d au Originally committed as revision 24021 to svn://svn.ffmpeg.org/ffmpeg/trunk
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-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-23Always check if ff_alloc_picture() succeeds.Pavel Pavlov
Patch by Pavel Pavlov, pavel summit-tech ca Originally committed as revision 22648 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-23Change ref_index structure so it matches how its organized in h264.Michael Niedermayer
Also revert the related error concealment hotfix. Originally committed as revision 22640 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-16Add ff_ prefix for mpeg2_dc_scale_table.Michael Niedermayer
Originally committed as revision 22556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-16Support intra_dc_precision>8 in jpegMichael Niedermayer
Originally committed as revision 22554 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15use mpeg2 quantization bias for mjpeg.Michael Niedermayer
this seems to improve RD performance. Originally committed as revision 22550 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Move ff_sqrt() to libavutil/intmath.hMåns Rullgård
Originally committed as revision 22345 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-17Use LOCAL_ALIGNED macro for local arraysMåns Rullgård
Originally committed as revision 21866 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-22Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård
Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk