summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* lavfi: remove now unused args parameter from AVFilter.init and init_opaqueMichael Niedermayer2013-04-12
| | | | | | | | | This is mostly automated global search and replace The deprecated aconvert filter is disabled, if it still has users it should be updated Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi: remove now unused args parameter from AVFilter.initAnton Khirnov2013-04-12
| | | | | | | | | | | | | | Conflicts: libavfilter/avfilter.c libavfilter/vf_drawtext.c libavfilter/vf_lut.c libavfilter/vf_select.c libavfilter/vf_setpts.c libavfilter/vsrc_color.c libavfilter/vsrc_movie.c Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/asrc_aevalsrc: check correct variableMichael Niedermayer2013-04-12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/filters: update volume options description.Clément Bœsch2013-04-12
|
* doc/filters: add quick emboss examplePaul B Mahol2013-04-12
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: remove old shorthand systemMichael Niedermayer2013-04-12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/cropdetect: update boxblur options description.Clément Bœsch2013-04-12
|
* doc/crop: update boxblur options description.Clément Bœsch2013-04-12
|
* doc/filters: update boxblur options description.Clément Bœsch2013-04-12
|
* doc/filters: update blackframe options description.Clément Bœsch2013-04-12
|
* af_pan: avoid spaces before % to avoid possible issues with MSVCMichael Niedermayer2013-04-12
| | | | | Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* af_pan: switch to an AVOptions-based shorthand system.Michael Niedermayer2013-04-12
| | | | | | TODO: The first argument can be seperated into its own AVOption Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* af_pan: fix parsing arguments from the example in the documentationСерж Нискородов2013-04-12
| | | | | | | pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR didn't actually work ('Expected out channel name, got " FL < FL"')
* abuffer: switch to an AVOptions-based shorthand system.Michael Niedermayer2013-04-12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* buffersrc: switch to an AVOptions-based shorthand system.Michael Niedermayer2013-04-12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi/atempo: switch to an AVOptions-based system.Pavel Koshevoy2013-04-12
| | | | | Signed-off-by: Pavel Koshevoy <pkoshevoy@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter: Update scale to dictionary based optionsMichael Niedermayer2013-04-12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit '48a5adab62bd2a553f5069d41fa632a0701835e5'Michael Niedermayer2013-04-12
|\ | | | | | | | | | | | | | | | | | | | | * commit '48a5adab62bd2a553f5069d41fa632a0701835e5': lavfi: add avfilter_init_str() to replace avfilter_init_filter(). avfilter_graph_create_filter() opaque is still passed to avfilter_init_filter() which continues to pass it to init_opaque as its still used in the buffer sinks the sinks should be changed and the opaque passing removed Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavfi: add avfilter_init_str() to replace avfilter_init_filter().Anton Khirnov2013-04-11
| | | | | | | | Drop the unused opaque parameter from its signature.
* | Merge commit '1565cbc65cbb9f95c11367314a080068895e0cf0'Michael Niedermayer2013-04-12
|\| | | | | | | | | | | | | | | | | | | | | | | * commit '1565cbc65cbb9f95c11367314a080068895e0cf0': lavfi: make avfilter_free() remove the filter from its graph. Conflicts: libavfilter/avfilter.c libavfilter/avfiltergraph.c libavfilter/graphparser.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavfi: make avfilter_free() remove the filter from its graph.Anton Khirnov2013-04-11
| |
* | Merge commit '111367263af41c88a44bd763ceefc11d53a7f655'Michael Niedermayer2013-04-12
|\| | | | | | | | | | | | | | | | | | | * commit '111367263af41c88a44bd763ceefc11d53a7f655': lavfi: add AVFilterContext.graph. Conflicts: libavfilter/avfilter.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavfi: add AVFilterContext.graph.Anton Khirnov2013-04-11
| | | | | | | | It will be useful in the following commits.
* | Merge commit 'c2c9801bc9bce688d51d1a96f5f3ea93933e2dee'Michael Niedermayer2013-04-12
|\| | | | | | | | | | | | | * commit 'c2c9801bc9bce688d51d1a96f5f3ea93933e2dee': lavfi: deprecate avfilter_graph_add_filter(). Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * 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.
* | Merge commit 'bc1a985ba030e9861d24965d42792850b43a43ea'Michael Niedermayer2013-04-12
|\| | | | | | | | | | | | | | | | | | | | | | | * commit 'bc1a985ba030e9861d24965d42792850b43a43ea': lavfi: replace avfilter_open() with avfilter_graph_alloc_filter(). Conflicts: libavfilter/avfiltergraph.c libavfilter/internal.h libavfilter/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * 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/overlay: improve feedback in case of invalid expressionStefano Sabatini2013-04-12
| | | | | | | | Based on vf_hue.c code.
* | doc/filters: rework Commands section for overlay filterStefano Sabatini2013-04-12
| |
* | doc/filters: apply minor fixes to hue Commands sectionStefano Sabatini2013-04-12
| |
* | lavfi/overlay: fix crash in case of invalid expressionStefano Sabatini2013-04-12
| |
* | lavfi/overlay: add repeatlast optionStefano Sabatini2013-04-12
| |
* | lavfi/overlay: reindent constants in option listStefano Sabatini2013-04-12
| | | | | | | | Wanted-By: ubitux
* | Merge commit '38f0c0781a6e099f11c0acec07f9b8be742190c4'Michael Niedermayer2013-04-11
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '38f0c0781a6e099f11c0acec07f9b8be742190c4': lavfi: merge avfiltergraph.h into avfilter.h Conflicts: doc/APIchanges ffmpeg_filter.c libavfilter/avfilter.h libavfilter/avfiltergraph.h libavfilter/version.h tools/graph2dot.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * 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/filters: use -af and -filter_complex instead of amovie for two examples.Clément Bœsch2013-04-11
| |
* | Merge commit '4a37d4b3f8137a4c2bbbca043de076af966b9446'Michael Niedermayer2013-04-11
|\| | | | | | | | | | | | | | | * commit '4a37d4b3f8137a4c2bbbca043de076af966b9446': lavfi: add const to the pads parameter of avfilter_pad_get_name/type lavfi: add const to AVFilterContext.filter. Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * 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.
* | lavfi/mp: switch to an AVOptions-based system.Clément Bœsch2013-04-11
| |
* | doc/encoders: Clarify that there are 2 prores encodersMichael Niedermayer2013-04-11
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec: rename prores encodersMichael Niedermayer2013-04-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Using the first names of authors sounds somewhat unprofessional and might be considered offensive which is not intended. The new names use the initials of the authors due to simplicity and the possibility to apply it consistently without the need to find political correct names for each future case where alternative codecs might exist. Also its shorter ... If someone has a better idea, like maybe 2 random letters and people prefer it then iam happy to switch to that ... Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/filters: fix fade-out hue saturation expression in sendcmd exampleStefano Sabatini2013-04-11
| |
* | doc/filters: update hue command syntax after recent updateStefano Sabatini2013-04-11
| |
* | lavfi/aspect: fix d2q convert in init.Clément Bœsch2013-04-11
| | | | | | | | Regression since git 71ef1ec7b.
* | Merge commit 'f223ad1e000d56ef5231a3b1fc00495b538a9ed6'Michael Niedermayer2013-04-11
|\| | | | | | | | | | | | | * commit 'f223ad1e000d56ef5231a3b1fc00495b538a9ed6': doc: document the prores encoder options Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * 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>
* | Merge commit '93e65e9a6c0895f869752a66731d9b2ec3916467'Michael Niedermayer2013-04-11
|\| | | | | | | | | | | | | | | | | | | * commit '93e65e9a6c0895f869752a66731d9b2ec3916467': Cosmetics, restore alphabetic order in atomics lists. Conflicts: libavutil/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Cosmetics, restore alphabetic order in atomics lists.Anton Khirnov2013-04-11
| |
* | lavfi: deprecate aconvert.Clément Bœsch2013-04-11
| | | | | | | | This filter is not required anymore with aformat. Drop it at next bump.