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
2014-01-26avutil: remove timer.h include from internal.hJanne Grunau
Added libavutil/timer.h include to all files with {START,STOP}_TIMER.
2014-01-22mpegvideo_enc: Don't call ff_h263dsp_init unconditionallyMartin Storsjö
This fixes builds with e.g. --disable-decoders --disable-encoders --enable-encoder=mjpeg. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-01-09mpegvideo: drop support for real (non-emulated) edgesAnton Khirnov
Several decoders disable those anyway and they are not measurably faster on x86. They might be somewhat faster on other platforms due to missing emu edge SIMD, but the gain is not large enough (and those decoders relevant enough) to justify the added complexity.
2014-01-03mpegvideo: split the encoding-only parts of frame_start() into a separate ↵Anton Khirnov
function This introduces some code duplication. However, much of it should go away once the decoders stop using MpegEncContext.
2013-12-05ljpegenc: deMpegEncContextizeAnton Khirnov
The encoder uses almost none of the mpegvideo infrastructure, only some fields from MpegEncContext. The FATE results change because now an all-zero quant matrix is written into the file. Since it is not used for anything for ljpeg, this should not be a problem.
2013-12-05mjpegenc: do not pass MpegEncContext to ff_mjpeg_encode_picture_trailer()Anton Khirnov
This will allow deMpegEncContextizing the LJPEG encoder.
2013-12-05mjpegenc: do not pass MpegEncContext to ff_mjpeg_encode_picture_header()Anton Khirnov
This will allow deMpegEncContextizing the LJPEG encoder.
2013-12-05mpegvideo: move encode-only parts of common_end() to encode_end()Anton Khirnov
2013-12-05mpegvideo: split the encoding-only parts of ff_MPV_frame_end() into a ↵Anton Khirnov
separate function
2013-12-05mpegvideo: move encoding-only initialization from common_init() to encode_init()Anton Khirnov
2013-12-05mpegvideo: move setting encoding-only vars from common_defaults() to ↵Anton Khirnov
encode_defaults()
2013-11-24Add missing #includes for *INT64_MAX and *INT64_CDiego Biurrun
2013-11-16mpegvideo_enc: use the AVFrame API properly.Anton Khirnov
2013-11-15lavc: Edge emulation with dst/src linesizeRonald S. Bultje
Allow supporting files for which the image stride is smaller than the maximum block size + number of subpel mc taps, e.g. a 64x64 VP9 file or a 16x16 VP8 file with -fflags +emu_edge.
2013-11-14lavc: deprecate FF_MAX_B_FRAMESAnton Khirnov
We should not arbitrarily decide the maximum B-frame number for all encoders supported by Libav, each encoder should be able to set its own limits.
2013-11-14lavc: make error_rate a private option of mpegvideo encodersAnton Khirnov
2013-11-08dsputil: Split off H.263 bits into their own H263DSPContextDiego Biurrun
2013-10-16lavc: Convert some remaining strides to ptrdiff_tRonald S. Bultje
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-08-07mpegvideo_enc: drop outdated copy_picture_attributes() in favour of a modern ↵Vittorio Giovara
av_frame_copy_props() Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-05-16Remove commented-out debug #define cruftDiego Biurrun
2013-05-16mpegvideo: Remove commented-out PARANOID debug cruftDiego Biurrun
2013-04-20mpegvideo: Use hpeldsp instead of dsputil for half-pel functionsRonald S. Bultje
This also converts vc1, since that is mpegvideo-based. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-05h261: Move function declarations to h261.hDiego Biurrun
2013-03-27mpeg12: Move some ff_mpeg1_* function declarations to a more suitable placeDiego Biurrun
2013-03-11mpegvideo: remove FMT_H264Anton Khirnov
2013-03-09lavc: remove disabled FF_API_MPV_GLOBAL_OPTS cruftAnton Khirnov
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-03-08mpegvideo_enc: drop support for reusing the input motion vectors.Anton Khirnov
This misfeature is most likely completely useless and conflicts with removing the mpegvideo-specific fields from AVFrame. In the improbable case it is actually useful, it should be reimplemented in a better way.
2013-02-15error_resilience: decouple ER from MpegEncContextAnton Khirnov
2013-02-09dsputil: Move fdct function declarations to dct.hDiego Biurrun
2013-02-09dsputil: Move LOCAL_ALIGNED macros to libavutilDiego Biurrun
2013-01-26mpegvideo_enc: fix indentation in load_input_picture()Anton Khirnov
2013-01-26mpegvideo_enc: do not modify the input frame.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-20lavc: introduce VideoDSPContextRonald S. Bultje
Move some functions from dsputil. The idea is that videodsp contains functions that are useful for a large and varied set of video decoders. Currently, it contains emulated_edge_mc() and prefetch(). Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-12-18mpegvideo: allocate scratch buffers after linesize is knownJanne Grunau
Since we can't know which stride a custom get_buffer() implementation is going to use we have to allocate this scratch buffers after the linesize is known. It was pretty safe for 8 bit per pixel pixel formats since we always allocated memory for up to 16 bits per pixel. It broke hoever with cmdutis.c's alloc_buffer() and high pixel bit depth since it allocated larger edges than mpegvideo expected. Fixes fuzzed sample nasa-8s2.ts_s244342.
2012-11-13pixdesc: add av_pix_fmt_get_chroma_sub_sampleLuca Barbato
Deprecate avcodec_get_chroma_sub_sample.
2012-10-11Move avutil tables only used in libavcodec to libavcodec.Diego Biurrun
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-10-01avcodec: Convert some commented-out printf/av_log instances to av_dlogDiego Biurrun
2012-10-01avcodec: Drop silly and/or broken printf debug outputDiego Biurrun
2012-10-01avcodec: Drop some silly commented-out av_log() invocationsDiego Biurrun
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-09-04mpegvideo_enc: remove assert that has become obsolete with the new APIMichael Niedermayer
It now just checks uninitialized and unused data. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-24x86: mpegvideoenc: Split optimizations off into a separate fileDiego Biurrun
2012-08-20mpegvideo_enc: remove stray duplicate line from 7f9aaa4Anton Khirnov
2012-08-18mpegvideo_enc: don't use deprecated avcodec_encode_video().Anton Khirnov
2012-08-09mpegvideo: convert mpegvideo_common.h to a .c fileMans Rullgard
This file defines a single, huge function, MPV_motion(), which although being declared inline is not actually inlined by the compiler (for good reason). There is thus no sense in defining this function in a header file, resulting in multiple copies of it in the final library. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov