summaryrefslogtreecommitdiff
path: root/libavfilter/vf_vignette.c
Commit message (Collapse)AuthorAge
* avfilter: don't anonymously typedef structsPaul B Mahol2017-05-13
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi: split frame_count between input and output.Nicolas George2016-11-13
| | | | | | | | | | | | AVFilterLink.frame_count is supposed to count the number of frames that were passed on the link, but with min_samples, that number is not always the same for the source and destination filters. With the addition of a FIFO on the link, the difference will become more significant. Split the variable in two: frame_count_in counts the number of frames that entered the link, frame_count_out counts the number of frames that were sent to the destination filter.
* avutil: Rename FF_CEIL_COMPAT to AV_CEIL_COMPATDerek Buitenhuis2016-01-27
| | | | | | | | | | Libav, for some reason, merged this as a public API function. This will aid in future merges. A define is left for backwards compat, just in case some person used it, since it is in a public header. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* avfilter/vignette: use AV_OPT_TYPE_BOOL for dither optionClément Bœsch2015-09-09
|
* avfilter: fix a few 5 spaces indentClément Bœsch2015-06-07
|
* avfilter/vf_vignette: force per frame evaluation if per frame variables are usedMichael Niedermayer2015-04-29
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter: handle error in query_formats() in bunch of filtersPaul B Mahol2015-04-08
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/vf_vignette: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-30
| | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/vf_vignette: Use av_malloc_array()Michael Niedermayer2014-07-06
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/vignette: reindent after previous commit.Clément Bœsch2014-05-16
|
* avfilter/vignette: add direct rendering.Clément Bœsch2014-05-16
|
* vignette: reuse already declared ctx.Clément Bœsch2014-05-16
|
* avfilter/vignette: fix input frame memory leak.Masa Utashiro2014-05-16
| | | | Fixes Ticket #3642.
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: lavfi: do not export the filters from shared objects Conflicts: libavfilter/af_amix.c libavfilter/af_anull.c libavfilter/asrc_anullsrc.c libavfilter/f_select.c libavfilter/f_settb.c libavfilter/split.c libavfilter/src_movie.c libavfilter/vf_aspect.c libavfilter/vf_blackframe.c libavfilter/vf_colorbalance.c libavfilter/vf_copy.c libavfilter/vf_crop.c libavfilter/vf_cropdetect.c libavfilter/vf_drawbox.c libavfilter/vf_format.c libavfilter/vf_framestep.c libavfilter/vf_frei0r.c libavfilter/vf_hflip.c libavfilter/vf_libopencv.c libavfilter/vf_lut.c libavfilter/vf_null.c libavfilter/vf_overlay.c libavfilter/vf_scale.c libavfilter/vf_transpose.c libavfilter/vf_unsharp.c libavfilter/vf_vflip.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter: fix plane validity checksMichael Niedermayer2013-08-03
| | | | | | Fixes out of array accesses Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* replace some deprecated definesPaul B Mahol2013-07-06
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi/vignette: remove extra semi-colon.Clément Bœsch2013-05-31
|
* lavfi/vignette: add aspect option.Clément Bœsch2013-05-30
|
* lavfi/vignette: add some scaling debug.Clément Bœsch2013-05-30
|
* lavfi/vignette: simplify dmax definition.Clément Bœsch2013-05-30
|
* lavfi/vignette: fix scale with aspects smaller than one.Clément Bœsch2013-05-30
|
* lavfi/vignette: make sure a sane sar is set.Clément Bœsch2013-05-30
|
* lavfi: add vignette filter.Clément Bœsch2013-05-30