summaryrefslogtreecommitdiffstats
path: root/libavfilter
Commit message (Collapse)AuthorAgeFilesLines
* avfilter/vf_qp: Fix use of uinitialized variableMichael Niedermayer2015-04-211-1/+0
| | | | | Found-by: <Timothy_Gu> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit '9b2c57bef5e2f3f61a5fd708ba7d5351f5b3f386'Michael Niedermayer2015-04-211-5/+46
|\ | | | | | | | | | | | | | | | | | | | | * commit '9b2c57bef5e2f3f61a5fd708ba7d5351f5b3f386': drawtext: Add an alpha option Conflicts: doc/filters.texi libavfilter/vf_drawtext.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * drawtext: Add an alpha optionLuca Barbato2015-04-211-10/+38
| | | | | | | | | | | | And document both `draw` and `alpha`. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* | avfilter/vf_qp: fix cleanup on errorMichael Niedermayer2015-04-211-2/+4
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/buffersrc: Use correct, matching deallocation functionMichael Niedermayer2015-04-201-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '617814b4a717b38add5ccb8dd200dbb655f98f09'Michael Niedermayer2015-04-201-0/+1
|\ \ | |/ | | | | | | | | | | * commit '617814b4a717b38add5ccb8dd200dbb655f98f09': buffersrc: Fix resource leak on error Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * buffersrc: Fix resource leak on errorFederico Tomassetti2015-04-191-0/+1
| | | | | | | | | | | | Bug-Id: CID 1267902 CC: libav-stable@libav.org Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
| * filtfmts: Avoid null pointer dereferenceHimangi Saraogi2015-04-191-2/+13
| |
* | Merge commit '1a3eb042c704dea190c644def5b32c9cee8832b8'Michael Niedermayer2015-04-203-6/+6
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '1a3eb042c704dea190c644def5b32c9cee8832b8': Replace av_dlog with normal av_log at trace level Conflicts: ffplay.c libavdevice/fbdev_dec.c libavfilter/avfilter.c libavfilter/internal.h libavfilter/setpts.c libavfilter/src_movie.c libavfilter/vf_crop.c libavfilter/vf_drawtext.c libavfilter/vf_fieldorder.c libavformat/assdec.c libavformat/avidec.c libavformat/flvdec.c libavformat/http.c libavformat/ipmovie.c libavformat/isom.c libavformat/mov.c libavformat/mpegenc.c libavformat/mpegts.c libavformat/mpegtsenc.c libavformat/mux.c libavformat/mxfdec.c libavformat/nsvdec.c libavformat/oggdec.c libavformat/r3d.c libavformat/rtspdec.c libavformat/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Replace av_dlog with normal av_log at trace levelVittorio Giovara2015-04-197-8/+8
| | | | | | | | This applies to every library where performance is not critical.
* | lavfi/avf_showcqt: fix error code.Nicolas George2015-04-161-1/+1
| | | | | | | | | | Signed-off-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/drawtext: fix frame mem leakIvan Efimov2015-04-141-2/+6
| | | | | | | | | | Signed-off-by: Ivan Efimov <ioefimov@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_scale: Add warning for AVCOL_SPC_YCGCOMichael Niedermayer2015-04-131-0/+3
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter: add chorus filterPaul B Mahol2015-04-114-2/+383
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vsrc_life: Fix mix of declarations and statementsMichael Niedermayer2015-04-091-1/+3
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter: handle error in query_formats() in bunch of filtersPaul B Mahol2015-04-0881-234/+401
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/af_amix: Use av_mallocz_array()Michael Niedermayer2015-04-061-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vsrc_mptestsrc: Change enum to int, which is accessed via AVOption ↵Michael Niedermayer2015-04-061-1/+1
| | | | | | | | | | | | | | | | as int This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_mpdecimate: Fix missing ()Michael Niedermayer2015-04-061-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/yadif: Change enums to int, which are accessed via AVOption as intMichael Niedermayer2015-04-051-3/+3
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vsrc_mandelbrot: Change enums to int, which are accessed via ↵Michael Niedermayer2015-04-051-2/+2
| | | | | | | | | | | | | | | | AVOption as int This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | filtfmts: Avoid null pointer dereferenceHimangi Saraogi2015-04-031-1/+13
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vf_drawtext: add support for setting box border widthMarton Balint2015-03-311-1/+4
| | | | | | | | | | Signed-off-by: Marton Balint <cus@passwd.hu> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_detelecine: Fix uninitialized array index errorHimangi Saraogi2015-03-311-6/+10
| | | | | | | | | | | | Fixes the defect CID 1292301 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_vignette: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-301-1/+7
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_transpose: Change enums to int, which are accessed via AVOption ↵Michael Niedermayer2015-03-301-2/+2
| | | | | | | | | | | | | | | | as int This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/tinterlace: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-301-1/+1
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vfilter/vf_qp: Support evaluating expression per MBMichael Niedermayer2015-03-281-3/+27
| | | | | | | | | | | | also add support for x/y/w/h parameters Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_qp: split expression parsing out of loopMichael Niedermayer2015-03-281-9/+14
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | af_channelmap: fix number of channelsMarton Balint2015-03-281-0/+1
| | | | | | | | | | | | | | | | | | | | Fixes segfaults with the following command: ffmpeg -f lavfi -i aevalsrc=0:c=stereo:n=1920 -af 'channelmap=0' test.ac3 Signed-off-by: Marton Balint <cus@passwd.hu> Reviewed-by: Marton Balint <cus@passwd.hu> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: add inverse telecine filterHimangi Saraogi2015-03-273-0/+348
| | | | | | | | | | Approved-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_telecine: Avoid floating point valuesHimangi Saraogi2015-03-271-3/+4
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_telecine: Fix loss of AVFrame properties in outputHimangi Saraogi2015-03-271-0/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_telecine: Fix AV desync by using the first input timestampHimangi Saraogi2015-03-261-1/+8
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_stereo3d: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-231-1/+1
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_signalstats: Change enum to int, which is accessed via AVOption ↵Michael Niedermayer2015-03-221-1/+1
| | | | | | | | | | | | | | | | as int This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_setfield: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-221-1/+1
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'cfe64613923a2d47644a87386146ada1f9f6b659'Michael Niedermayer2015-03-221-0/+2
|\ \ | |/ | | | | | | | | | | * commit 'cfe64613923a2d47644a87386146ada1f9f6b659': avfilter: Document avfilter_graph_alloc return value Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avfilter: Document avfilter_graph_alloc return valueFederico Tomassetti2015-03-211-0/+2
| | | | | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* | avfilter/vf_mcdeint: Change enums to int, which are accessed via AVOption as intMichael Niedermayer2015-03-201-2/+2
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_overlay: Change enums to int, which are accessed via AVOption as intMichael Niedermayer2015-03-201-3/+17
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_phase: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-201-1/+1
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/eq: rework expression evaluationarwa arif2015-03-203-47/+74
| | | | | | | | | | | | | | | | | | | | | | In particular, add support for t, pos, n, r parameters, and add an eval mode option. Also, partially reword option documentation. With several major edit by Stefano Sabatini. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | lavfi/eq: factorize code in process_command()Stefano Sabatini2015-03-201-43/+23
| |
* | avfilter/vf_pp7: remove unused varMartin Vignali2015-03-201-7/+0
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_colormatrix: fix yuv420p threading, second tryClément Bœsch2015-03-191-4/+4
| | | | | | | | | | Now seems to work fine with different combinations of odd/even heights and odd/even number of threads.
* | avfilter/vf_lut3d: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-181-1/+1
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_il: Change enums to int, which are accessed via AVOption as intMichael Niedermayer2015-03-181-1/+1
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_histogram: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-181-1/+1
| | | | | | | | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: add showwavespic filterClément Bœsch2015-03-184-36/+242
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a variant of showwaves. It is implemented as a different filter so that the user is not allowed to use meaningless options which belong to showwaves (such as rate). Major edits done by Stefano Sabatini, from a patch by ubitux. See thread: From: Clément Bœsch <u@pkh.me> To: ffmpeg-devel@ffmpeg.org Date: Wed, 24 Dec 2014 15:03:26 +0100 Subject: [FFmpeg-devel] [PATCH] avfilter/showwaves: add single_pic option
OpenPOWER on IntegriCloud