summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
...
* configure: Add basic valgrind-massif supportLuca Barbato2013-05-18
| | | | | | With the parameter --toolchain valgrind-massif, the configure script sets reasonable defaults that can be overridden as explained in the documentation.
* Escape 130 (RPL) decoderEli Friedman2013-05-18
| | | | | | | | Some fixes provided by Paul B Mahol <onemda@gmail.com> and Michael Niedermayer <michaelni@gmx.at> and me. Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* doxy: don't sort struct members alphabeticallyAnton Khirnov2013-05-17
| | | | The declaration order is more meanigful in most cases.
* Apple Intermediate Codec decoderKostya Shishkov2013-05-17
|
* pixdesc: rename PIX_FMT_* flags to AV_PIX_FMT_FLAG_*Anton Khirnov2013-05-15
|
* avconv: remove -deinterlaceAnton Khirnov2013-05-07
| | | | | It is incompatible with refcounted frames and since it's been deprecated for a long time now, fixing it is not worth the effort.
* configure: Add basic valgrind-memcheck supportReinhard Tartler2013-05-04
| | | | | | | | With the parameter --valgrind-memcheck, the configure script sets reasonable defaults that can be overridden as explained in the documentation. The idea of using set_defaults is from Luca Barbato.
* silly typo fixesDiego Biurrun2013-05-03
|
* matroskaenc: add an option to put the index at the start of the fileAnton Khirnov2013-05-03
|
* avcodec: Add field order information to AVCodecParserContext.Masaki Tanaka2013-05-03
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: add trim and atrim filters.Anton Khirnov2013-04-30
|
* lavfi: add an asetpts filterAnton Khirnov2013-04-30
|
* doc/APIchanges: add missing hashes and datesAnton Khirnov2013-04-24
|
* JPEG 2000 decoder for DCinemaNicolas Bertrand2013-04-22
| | | | | | | | Based on the 2007 GSoC project from Kamil Nowosad <k.nowosad@students.mimuw.edu.pl> Updated to current programming standards, style and many more small fixes by Diego Biurrun <diego@biurrun.de>. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* h264: fully support cropping.Anton Khirnov2013-04-19
| | | | | | Based on a patch by Vittorio Giovara <vittorio.giovara@gmail.com> Fixes Bug 378.
* lavfi: new interlace filterVittorio Giovara2013-04-11
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* cmdutils: allow -h filter=<name> to print information about a filter.Anton Khirnov2013-04-11
|
* lavfi: change the filter registering system to match the other librariesAnton Khirnov2013-04-11
| | | | Removes an arbitrary hardcoded limit on the number of filters.
* lavfi: add a function for counting elements in AVFilterPad arrays.Anton Khirnov2013-04-11
| | | | | The caller needs to know what valid indices can be passed to avfilter_pad_get_name/type.
* lavfi: mark filters with dynamic number of inputs or outputs with special flagsAnton Khirnov2013-04-11
| | | | | This will be useful in avtools in the following commits. Any other caller might also want to know this information.
* lavfi: add avfilter_init_dict() for initializing a filter with a dict.Anton Khirnov2013-04-11
|
* lavfi: add avfilter_init_str() to replace avfilter_init_filter().Anton Khirnov2013-04-11
| | | | Drop the unused opaque parameter from its signature.
* lavfi: add AVFilterContext.graph.Anton Khirnov2013-04-11
| | | | It will be useful in the following commits.
* lavfi: deprecate avfilter_graph_add_filter().Anton Khirnov2013-04-11
| | | | | | Since this function adds a standalone filter to a filter graph and we do not support creating such filters, there is no reason for this function to exist.
* lavfi: replace avfilter_open() with avfilter_graph_alloc_filter().Anton Khirnov2013-04-11
| | | | | | | Since we do not support "standalone" filters not attached to an AVFilterGraph, we should not have a public function to create such filters. In addition that function is horribly named, the action it does cannot be possibly described as "opening" a filter.
* lavfi: merge avfiltergraph.h into avfilter.hAnton Khirnov2013-04-11
| | | | | We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
* doc: document the prores encoder optionsAnton Khirnov2013-04-11
| | | | | | | Adapted from the author's blag. Signed-off-by: Luca Barbato <lu_zero@gentoo.org> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* img2enc: add an option for overwriting one file with subsequent imagesAnton Khirnov2013-04-11
| | | | Based on a patch by Michael Niedermayer <michaelni@gmx.at>.
* lavfi: add a bump and docs entries for the AVOptions switchAnton Khirnov2013-04-09
|
* vsrc_testsrc: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vsrc_movie: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vsrc_color: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_join: switch to an AVOptions-based system.Anton Khirnov2013-04-09
| | | | | | Change the mappings separator from comma to '|' to avoid excessive escaping, since comma is already used for separating filters in the filtergraph description.
* af_channelmap: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_yadif: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_unsharp: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_transpose: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* 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
|