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
2014-02-19vf_interlace: deprecate lowpass optionVittorio Giovara
2014-02-04vf_overlay: add eof_action switchKeith Lawson
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2014-01-10lavfi: add framepack filterVittorio Giovara
2013-11-21filter docs: reference scale and fps filtersVittorio Giovara
2013-11-03vf_scale: make the dar variable return the DAR.Rudolf Polzer
Before, it just returned width/height. Correct is width/height*sar. That way it is consistent with DAR as in probe output and setdar. Signed-off-by: Rudolf Polzer <divverent@xonotic.org> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-11-03vf_aspect: support variables in evaluating the aspect ratiosRudolf Polzer
Example: -vf setsar=sar="sar*9/10" Signed-off-by: Rudolf Polzer <divverent@xonotic.org> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-09-24doc/filters: fix an option name in the unsharp docsAnton Khirnov
2013-09-04doc: Describe TB option of setpts filterClifford Wolf
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-08-20vf_fps: add 'start_time' optionJustin Ruggles
This allows for dropping or duplication to match a particular start time.
2013-04-30lavfi: add trim and atrim filters.Anton Khirnov
2013-04-30lavfi: add an asetpts filterAnton Khirnov
2013-04-11lavfi: new interlace filterVittorio Giovara
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-04-11lavfi: merge avfiltergraph.h into avfilter.hAnton Khirnov
We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
2013-04-09vsrc_testsrc: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vsrc_movie: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vsrc_color: switch to an AVOptions-based system.Anton Khirnov
2013-04-09af_join: switch to an AVOptions-based system.Anton Khirnov
Change the mappings separator from comma to '|' to avoid excessive escaping, since comma is already used for separating filters in the filtergraph description.
2013-04-09af_channelmap: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_yadif: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_unsharp: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_transpose: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_settb: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_setpts: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_select: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_pad: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_overlay: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_lut: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_libopencv: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_hqdn3d: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_gradfun: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_scale: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_frei0r: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_fieldorder: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_fade: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_drawtext: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_drawbox: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_delogo: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_cropdetect: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_crop: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_boxblur: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_blackframe: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_aspect: switch to an AVOptions-based system.Anton Khirnov
2013-04-09vf_(no)format: switch to an AVOptions-based system.Anton Khirnov
2013-04-09af_aformat: switch to an AVOptions-based system.Anton Khirnov
2013-04-09buffersrc: switch to an AVOptions-based system.Anton Khirnov
2013-04-09lavfi: switch to an AVOptions-based system.Anton Khirnov
2013-03-28lavfi/gradfun: fix rounding in MMX code.Clément Bœsch
Current code divides before increasing precision. Also reduce upper bound for strength from 255 to 64. This will prevent an overflow in the SSSE3 and MMX filter_line code: delta is expressed as an u16 being shifted by 2 to the left. If it overflows, having a strength not above 64 will make sure that m is set to 0 (making the m*m*delta >> 14 expression void). A value above 64 should not make any sense unless gradfun is used as a blur filter. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-03-16filters.texi: restore mistakenly removed section name for noformatAnton Khirnov
2013-03-08lavfi: switch to AVFrame.Anton Khirnov
Deprecate AVFilterBuffer/AVFilterBufferRef and everything related to it and use AVFrame instead.
2013-02-20doc: filters: Correct BNF FILTER descriptionVicente Jimenez Aguilar
Signed-off-by: Diego Biurrun <diego@biurrun.de>