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-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
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-03-28faandct: Remove FAAN_POSTSCALE define and related code.Diego Biurrun
It is not a user-accessible option and unlikely to ever be changed.
2012-03-02Replace AVFrame pointer casts by proper struct member accesses.Diego Biurrun
2012-03-01h263enc: Add an option for outputting info about MBs as side dataMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-29mpegvideo_enc: add quantizer_noise_shaping private option.Anton Khirnov
Deprecate corresponding AVCodecContext field.
2012-02-29mpegvideo_enc: add chroma/luma_elim_threshold private options.Anton Khirnov
Deprecate corresponding AVCodecContext fields.
2012-02-29mpegvideo_enc: add cbp_rd flag to mpv_flags.Anton Khirnov
Deprecate CODEC_FLAG_CBP_RD.
2012-02-29mpegvideo_enc: add qp_rd flag to mpv_flags.Anton Khirnov
Deprecate CODEC_FLAG_QP_RD.
2012-02-29mpegvideo_enc: add strict_gop flag to mpv_flags.Anton Khirnov
Deprecate CODEC_FLAG2_STRICT_GOP.
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-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.