summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* FATE: add a test for the interlace filterVittorio Giovara2013-04-11
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* 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
|
* avtools: move media_type_string() from avprobe to cmdutils.Anton Khirnov2013-04-11
| | | | It will be useful outside of avprobe.
* avconv: print filter options in -h full output.Anton Khirnov2013-04-11
|
* avconv: update to the new options syntax.Anton Khirnov2013-04-11
| | | | The separators were changed from ',' to '|' in all the filters.
* lavfi: do not segfault on NULL passed to avfilter_get_by_name()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: make avfilter_free() remove the filter from its graph.Anton Khirnov2013-04-11
|
* 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.
* lavfi: add const to the pads parameter of avfilter_pad_get_name/typeAnton Khirnov2013-04-11
|
* lavfi: add const to AVFilterContext.filter.Anton Khirnov2013-04-11
| | | | lavfi should never modify the filter through that pointer.
* 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>
* Cosmetics, restore alphabetic order in atomics lists.Anton Khirnov2013-04-11
|
* img2enc: add an option for overwriting one file with subsequent imagesAnton Khirnov2013-04-11
| | | | Based on a patch by Michael Niedermayer <michaelni@gmx.at>.
* Move misplaced file author information where it belongsDiego Biurrun2013-04-11
|
* lavc: don't overwrite display dimensions with coded dimensions.Anton Khirnov2013-04-10
|
* lavc: extend / update the [coded_]{width,height} doxyAnton Khirnov2013-04-10
|
* h261: Move encoder/decoder shared table init to common codeDiego Biurrun2013-04-10
|
* h261: Move shared data tables from a header to a proper C fileDiego Biurrun2013-04-10
|
* dsputil: Make dsputil selectableRonald S. Bultje2013-04-10
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* h264: Only initialize dsputil if error resilience is enabledRonald S. Bultje2013-04-10
| | | | | | | It is only used for error resilience. This allows building the h264 decoder without dsputil, if error resilience is disabled. Signed-off-by: Martin Storsjö <martin@martin.st>
* h264: Integrate clear_blocks calls with IDCTRonald S. Bultje2013-04-10
| | | | | | | | | The non-intra-pcm branch in hl_decode_mb (simple, 8bpp) goes from 700 to 672 cycles, and the complete loop of decode_mb_cabac and hl_decode_mb (in the decode_slice loop) goes from 1759 to 1733 cycles on the clip tested (cathedral), i.e. almost 30 cycles per mb faster. Signed-off-by: Martin Storsjö <martin@martin.st>
* h264: Clear the mb members via memset instead of using dsputilMartin Storsjö2013-04-10
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* dsputil: Make square put/avg_pixels functions local to h264qpelRonald S. Bultje2013-04-10
| | | | | | | Put a copy of the 8bit functions only in dsputil, where they are used for some other things (e.g. mpeg4qpel, mspel, cavsqpel). Signed-off-by: Martin Storsjö <martin@martin.st>
* x86inc: Fix number of operands for cmp* instructionsChristophe Gisquet2013-04-09
| | | | | | cmp{p,s}{s,d} instructions do take an imm8 operand. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* af_channelmap: fix uninitialized variable use introduced in ↵Anton Khirnov2013-04-09
| | | | ba8efac977f4276f05274947b2b67d144cbc965a
* lavfi: add a bump and docs entries for the AVOptions switchAnton Khirnov2013-04-09
|
* lavfi: add avfilter_get_class().Anton Khirnov2013-04-09
| | | | | Useful for examining options, the same as the corresponding functions for the other libs.
* lavfi: make AVFilterContext export filter options.Anton Khirnov2013-04-09
|
* lavfi: error out when options are provided to a filter that does not take anyAnton Khirnov2013-04-09
|
* lavfi: remove now unused args parameter from AVFilter.initAnton 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_nullsrc: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vsrc_color: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* split: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_volume: 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_channelsplit: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_channelmap: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_asyncts: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_amix: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|