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-12libx264: support yuv422/444 output.Anton Khirnov
2011-10-06libx264: support 9- and 10-bit output.Anton Khirnov
2011-09-16libx264: introduce slice-max-size optionLuca Barbato
Yet another option useful for low latency streaming.
2011-09-07libx264: fix setting some more parametersAnton Khirnov
Specifically, trellis, nr, me_range, me_method, subq, b_strategy, keyint_min, chroma_me and coder. Change their defaults to -1 and apply them after x264_param_default_preset() if the user explicitly set them.
2011-09-07libx264: fix setting the H.264 levelAndrej Peterka
Move setting it after x264_param_default_preset() Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-07libx264: add 'direct-pred' private optionAnton Khirnov
Deprecate AVCodecContext.directpred
2011-09-07libx264: add 'partitions' private optionAnton Khirnov
Deprecate AVCodecContext.partitions.
2011-09-06libx264: add 'cplxblur' private optionAnton Khirnov
Deprecate AVCodecContext.complexityblur
2011-09-06libx264: add 'deblock' private optionAnton Khirnov
Deprecate AVCodecContext.deblockalpha/deblockbeta
2011-09-06libx264: add 'b-bias' private optionAnton Khirnov
Deprecate AVCodecContext.bframebias.
2011-09-06libx264: fix setting some options.Anton Khirnov
Specifically: gop_size, max_b_frames, scenechange_threshold, qmin, qmax, max_qdiff, qblur, qcompress and refs. Change their default values to -1 and only use them if the user explicitly set them. Otherwise x264 defaults are used. Move setting those options after x264_param_default_preset(), so they don't get overwritten by it.
2011-09-06libx264: remove useless assignmentAnton Khirnov
priv_data is memset to 0.
2011-09-01libx264: use X264_THREADS_AUTO constant instead of 0.Anton Khirnov
2011-08-31libx264: set default thread count to 0 (auto)Anton Khirnov
2011-08-31libx264: add 'mbtree' private option.Anton Khirnov
Deprecate CODEC_FLAG2_MBTREE
2011-08-31libx264: add 'psy' private option.Anton Khirnov
Deprecate CODEC_FLAG2_PSY
2011-08-31libx264: add 'aud' private option.Anton Khirnov
Deprecate CODEC_FLAG2_AUD.
2011-08-31libx264: add 'fast-pskip' private option.Anton Khirnov
Deprecate CODEC_FLAG2_FASTPSKIP.
2011-08-31libx264: add '8x8dct' private option.Anton Khirnov
Deprecate CODEC_FLAG2_8X8DCT.
2011-08-31libx264: add 'mixed-refs' private option.Anton Khirnov
Deprecate CODEC_FLAG2_MIXED_REFS.
2011-08-31libx264: add 'weightb' private option.Anton Khirnov
Deprecate CODEC_FLAG2_BPYRAMID.
2011-08-31libx264: add 'b-pyramid' private option.Anton Khirnov
Deprecate CODEC_FLAG2_BPYRAMID.
2011-08-31libx264: add 'intra-refresh' private option.Anton Khirnov
Deprecate CODEC_FLAG2_INTRA_REFRESH.
2011-08-31libx264: add 'ssim' private option.Anton Khirnov
Deprecate CODEC_FLAG2_SSIM.
2011-08-31libx264: make options compatible with x264Anton Khirnov
Replace '_' with '-', merge psy-trellis into psy-rd and rename cqp->qp Also fix typo pdy-rd -> psy-rd
2011-08-24libx264: add 'crf_max' private option.Anton Khirnov
Deprecate corresponding global option.
2011-08-24libx264: add 'weightp' private option.Anton Khirnov
Deprecate corresponding global option.
2011-08-24libx264: add 'rc_lookahead' private option.Anton Khirnov
Deprecate corresponding global option.
2011-08-24libx264: add 'psy_trellis' private option.Anton Khirnov
Deprecate corresponding global option.
2011-08-24libx264: add 'psy_rd' private option.Anton Khirnov
Deprecate corresponding global option.
2011-08-24libx264: add 'aq_strength' private option.Anton Khirnov
Deprecate corresponding global option.
2011-08-24libx264: add 'aq_mode' private option.Anton Khirnov
Deprecate corresponding global option.
2011-08-24libx264: add 'cqp' private option.Anton Khirnov
Deprecate corresponding global option.
2011-08-24libx264: add 'crf' private option.Anton Khirnov
Deprecate corresponding global option. Ideally all x264 private options should be generated automatically, but x264 doesn't provide the API for this yet.
2011-08-22libx264: only use ABR mode when the user explicitly set bitrate.Anton Khirnov
2011-08-22libx264: use medium preset by default.Anton Khirnov
2011-08-12libx264: Include hint for possible values for configuring libx264Reinhard Tartler
The output of the x264 commandline tool contains the most uptodate description of the possible values for the -preset, -tune and -profile options.
2011-08-08libx264: do not set pic quality if no frame is outputBaptiste Coudurier
Avoids uninitialized reads. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-08-08libx264: add preset, tune, profile and fastfirstpass private optionsBaptiste Coudurier
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-05-18libx264: handle closed GOP codec flagJindrich Makovicka
Also update libx264 presets to keep closed gop as default. Signed-off-by: Jindrich Makovicka <makovick@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-05-02Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-09Fix broken vbv_buffer_init handling in libx264.cJason Garrett-Glaser
Due to being pants-on-head retarded, libavcodec defaults this to zero, which results in broken output. This didn't affect ffmpeg.c, which sets it itself, but caused problems for other calling apps using VBV.
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-26Pass field order flag to libx264Marco Gittler
Signed-off-by: Jason Garrett-Glaser <jason@x264.com>
2010-12-07Add fullrange support to libx264.c x264 interfaceJason Garrett-Glaser
Originally committed as revision 25904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-11Remove bitrate tolerance from libx264 interfaceJason Garrett-Glaser
Nobody ever uses it correctly, and ffmpeg sets it incorrectly, so we'll just leave it out. Originally committed as revision 25720 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-25Make libx264 take the pict_type input parameter into account,Nicolas George
thus making forced key frames work. Patch by Nicolas George, nicolas d george a normalesup d org Originally committed as revision 25567 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-22Add new -slices option and use it for libvpx and libx264.James Zern
Patch by James Zern, jzern google Originally committed as revision 25551 to svn://svn.ffmpeg.org/ffmpeg/trunk