summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
...
* vf_settb: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_setpts: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_select: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_pad: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_overlay: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_lut: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_libopencv: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_hqdn3d: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_gradfun: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_scale: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_frei0r: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_fieldorder: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_fade: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_drawtext: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_drawbox: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_delogo: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_cropdetect: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_crop: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_boxblur: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_blackframe: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_aspect: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_(no)format: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_aformat: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* buffersrc: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* lavfi: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* Integrate lcov/gcov into LibavReinhard Tartler2013-04-05
| | | | | | | The gcov/lcov are a common toolchain for visualizing code coverage with the GNU/Toolchain. The documentation and implementation of this integration was heavily inspired from the blog entry by Mike Melanson: http://multimedia.cx/eggs/using-lcov-with-ffmpeg/
* doc/platform: Remove part about dllimportDerek Buitenhuis2013-03-30
| | | | | | | | | Only deprecated things need this at all anymore, as we have functions to access them or they are no longer needed. The document should not encourage use of deprecated APIs. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* fate: add an option to generate the referencesLuca Barbato2013-03-29
| | | | Useful to add or update fate tests.
* lavfi/gradfun: fix rounding in MMX code.Clément Bœsch2013-03-28
| | | | | | | | | | | | | | | 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>
* avconv: add options for reading filtergraphs from a file.Anton Khirnov2013-03-28
|
* doc/developer: Clarify symbol naming prefixes section.Diego Biurrun2013-03-21
|
* pixdesc: add a function for counting planes in a pixel format.Anton Khirnov2013-03-19
|
* avplay: remove the -debug option.Anton Khirnov2013-03-19
| | | | | It just shadows the corresponding AVOption and prevents using named constants.
* print_options: do not generate docs for options without enc or dec flagsAnton Khirnov2013-03-18
| | | | | Those are not usable from the avtools, so mentioning them in the manpages just confuses the reader.
* document the release processReinhard Tartler2013-03-16
|
* filters.texi: restore mistakenly removed section name for noformatAnton Khirnov2013-03-16
|
* avfiltergraph: replace AVFilterGraph.filter_count with nb_filtersAnton Khirnov2013-03-16
| | | | This is more consistent with the naming in the rest of Libav.
* Add the bumps and APIchanges entries for reference counted buffers changes.Anton Khirnov2013-03-08
|
* lavc decoders: work with refcounted frames.Anton Khirnov2013-03-08
|
* lavfi: switch to AVFrame.Anton Khirnov2013-03-08
| | | | | Deprecate AVFilterBuffer/AVFilterBufferRef and everything related to it and use AVFrame instead.
* avstring: Add locale independent versions of some ctype.h functionsReimar Döffinger2013-03-07
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* lavfi: connect libavresample options to af_resample via AVFilterGraphJustin Ruggles2013-02-23
|
* doc: developer: Allow tabs in the vim configuration for Automake filesDiego Biurrun2013-02-23
| | | | | While we do not use Automake in libav, this allows our config to be used more globally without introducing unwanted breakage.
* doc: filters: Correct BNF FILTER descriptionVicente Jimenez Aguilar2013-02-20
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* doc: Fix some obsolete references to av* tools as ff* toolsVicente Jimenez Aguilar2013-02-18
| | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> CC: libav-stable@libav.org
* doc/platform: Fix 10l typoDerek Buitenhuis2013-02-13
| | | | | | This error was somehow missed for months. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* doc: developer: Add a note about reserved system name spaceDiego Biurrun2013-02-11
|
* doc: developer: Fix wording in "naming conventions" sectionDiego Biurrun2013-02-11
|
* doc/developer: Drop obsolete MPlayer referenceDiego Biurrun2013-02-01
|
* doc/developer: Add ISC license to list of acceptable licensesDiego Biurrun2013-02-01
|