summaryrefslogtreecommitdiffstats
path: root/libavfilter
Commit message (Collapse)AuthorAgeFilesLines
* lavfi/showspectrum: fix outpicref initialization.Clément Bœsch2013-03-091-1/+3
| | | | | | | | In 81f2549, output pixel format was changed from rgb24 to planar yuv, but the initialization was left unchanged. As a result, the chroma planes were left uninitalized. This was not noticed since the current ff_get_video_buffer() seems to be initializing the buffer. This won't be the case anymore after the Evil Plan.
* Merge commit 'efa7f4202088c70caba11d7834641bc6eaf41830'Michael Niedermayer2013-03-081-4/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'efa7f4202088c70caba11d7834641bc6eaf41830': Use the avstring.h locale-independent character type functions avstring: Add locale independent versions of some ctype.h functions Conflicts: avprobe.c doc/APIchanges libavcodec/dvdsubdec.c libavcodec/utils.c libavutil/avstring.c libavutil/avstring.h libavutil/eval.c libavutil/parseutils.c libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Use the avstring.h locale-independent character type functionsReimar Döffinger2013-03-074-7/+5
| | | | | | | | | | | | Make sure the behavior does not change with the locale. Signed-off-by: Martin Storsjö <martin@martin.st>
* | vf_stereo3d: Add AVOption table terminatorMichael Niedermayer2013-03-051-0/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/deshake: support named options.Clément Bœsch2013-03-052-34/+52
| |
* | lavfi/overlay: improve log message warning in case of clipped overlayStefano Sabatini2013-03-051-1/+2
| |
* | lavfi/overlay: add support for partial overlayingStefano Sabatini2013-03-052-37/+63
| | | | | | | | | | Partially rework the iteration logic, in order to limit iteration only for the clipped overlay region.
* | lavfi/mp: drop mp=stereo3d filterPaul B Mahol2013-03-054-544/+1
| | | | | | | | | | | | The filter has been natively integrated into libavfilter. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi: port MP stereo3d filterPaul B Mahol2013-03-054-1/+481
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/opencv: isgraph -> av_isgraph.Clément Bœsch2013-03-031-1/+1
| | | | | | | | Fix build after 88d55b8.
* | Remove incorrect use of ctype.h functions.Reimar Döffinger2013-03-034-4/+4
| | | | | | | | | | | | | | As far as I can tell the code should not change behaviour depending on locale in any of these places. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* | lavfi/af_aresample: fix info log for unknown layouts.Nicolas George2013-02-281-2/+2
| |
* | lavfi/af_aresample: fix layout consistency check.Nicolas George2013-02-281-1/+1
| | | | | | | | | | If the channel layout is unknown, lswr will internally use the default one for the corresponding number of channels.
* | vf_lut: correct color/comp permutationMichael Niedermayer2013-02-271-3/+3
| | | | | | | | | | | | Fixes Ticket2225 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/hflip: support more formatsPaul B Mahol2013-02-251-29/+13
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/geq: improve support for formats with alpha planePaul B Mahol2013-02-251-17/+28
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | af_biquads: memset(0) cacheMichael Niedermayer2013-02-251-0/+1
| | | | | | | | | | | | Fixes valgrind warnings Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/abuffersink: fix weird indent and spacingStefano Sabatini2013-02-241-4/+4
| |
* | lavfi/abuffersink: add sample_rates field to AVABufferSinkParamsStefano Sabatini2013-02-243-1/+16
| | | | | | | | Allow to select sample rates.
* | avfilter/avfiltergraph.h: Move public field out of the private fieldsMichael Niedermayer2013-02-241-2/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '9f1223562e134bac6345a465870b9d56ff7d60cf'Michael Niedermayer2013-02-244-3/+45
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | * commit '9f1223562e134bac6345a465870b9d56ff7d60cf': lavfi: connect libavresample options to af_resample via AVFilterGraph Conflicts: doc/APIchanges libavfilter/avfiltergraph.c libavfilter/avfiltergraph.h libavfilter/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavfi: connect libavresample options to af_resample via AVFilterGraphJustin Ruggles2013-02-234-2/+44
| |
* | lavfi/formats: reindent after last commit.Nicolas George2013-02-241-10/+10
| |
* | lavfi: fix merging of formats and clarify exception.Nicolas George2013-02-243-6/+16
| | | | | | | | | | | | | | | | The following commit: b97d61f avfilter/ff_merge_formats: only merge if doing so does not loose chroma or alpha introduced an exception to avoid lossy conversions. Add a comment to explain the logic. Fix the call to avoid applying it on audio formats.
* | libavfilter/af_amerge: fix segfault if init fails.Nicolas George2013-02-241-2/+4
| |
* | vf_mp: Set pseudo palMichael Niedermayer2013-02-233-1/+16
| | | | | | | | | | | | | | Fixes ticket2140 Fixes null pointer dereference Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vf_overlay: silence warning: X may be used uninitialized in this functionMichael Niedermayer2013-02-231-0/+2
| | | | | | | | | | | | Also ensure that format is valid in query_formats Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter: Silence warning: passing argument 3 of av_image_copy from ↵Michael Niedermayer2013-02-231-1/+1
| | | | | | | | | | | | incompatible pointer type Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/boxblur: add support to named optionsStefano Sabatini2013-02-222-27/+55
| |
* | blend filterPaul B Mahol2013-02-214-2/+478
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/buffersrc: set channel layout if it is known.Nicolas George2013-02-211-0/+4
| | | | | | | | | | | | | | | | | | If buffersrc was configured for frames with an unknown layout, the incoming frames will have channel_layout = 0. If the format negotiation has selected a known (and compatible) channel layout for the link, the frame is assumed to have that layout, the field must be set before injecting the frame in the filters.
* | vf_idet: adapt default scores due to bugfixMichael Niedermayer2013-02-211-2/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vf_idet: Fix macro arguments sideeffectMichael Niedermayer2013-02-211-2/+4
| | | | | | | | | | | | | | Fixes valgrind errors should improve detection scores Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/subtitles: fix recently introduced warning about discarded const ↵Clément Bœsch2013-02-201-1/+1
| | | | | | | | qualifier.
* | lavfi/overlay: add format optionStefano Sabatini2013-02-202-14/+43
| | | | | | | | | | In particular, fix misbehavior in case main and overlay input formats mismatch (e.g. YUV420 and YUV444).
* | lavfi/overlay: apply minor consistency fixesStefano Sabatini2013-02-201-2/+2
| |
* | lavfi/overlay: implement shortest optionStefano Sabatini2013-02-202-1/+5
| | | | | | | | | | | | Force termination when the overlay stream ends. Simplify scripting logic, for example when an infinite source is used to generate a background for a composite video.
* | lavfi/decimate: use named optionsStefano Sabatini2013-02-202-23/+26
| |
* | avfilter: fix segfault with setsar/darMichael Niedermayer2013-02-201-1/+1
| | | | | | | | | | Reported-by: durandal_1707 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/hue: reindent after previous commitStefano Sabatini2013-02-201-30/+30
| |
* | lavfi/hue: simplify parsing by making use of option shorthandsStefano Sabatini2013-02-201-34/+3
| |
* | avfilter/ff_merge_formats: only merge if doing so does not loose chroma or alphaMichael Niedermayer2013-02-191-0/+19
| | | | | | | | | | | | Fixes Ticket1280 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/overlay: yuv444p & yuva444p supportPaul B Mahol2013-02-191-3/+11
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/histogram: overlay display mode for levels histogram modePaul B Mahol2013-02-181-5/+10
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavf/showspectrum: add divVerent in the (c) for his recent work on the filter.Clément Bœsch2013-02-181-0/+1
| |
* | lavfi/noise: switch to AVLFG noise generatorPaul B Mahol2013-02-171-7/+11
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavf/subtitles: error out in case of bitmap subtitles.Clément Bœsch2013-02-171-0/+7
| |
* | lavfi/subtitles: set a different description between ass and subtitles.Clément Bœsch2013-02-171-2/+2
| |
* | lavfi: rename vf_ass.c to vf_subtitles.cClément Bœsch2013-02-172-2/+2
| |
* | lavfi/subtitles: support charenc option.Clément Bœsch2013-02-171-1/+7
| |
OpenPOWER on IntegriCloud