summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
...
* | lavfi/curves: add presets support.Clément Bœsch2013-03-25
| | | | | | | | | | | | | | | | Except for the vintage preset, the values are defined by Lou Logan based on the ones found in Adobe Photoshop CS6. Signed-off-by: Clément Bœsch <ubitux@gmail.com> Signed-off-by: Lou Logan <lou@lrcd.com>
* | blend: Adding yuvj pixelformats to the blend effectBjörn S2013-03-25
| | | | | | | | | | Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vsrc_testsrc: avoid floats and non bit exactnessMichael Niedermayer2013-03-25
| | | | | | | | | | | | | | The round to zero behavior is maintained, possibly this should be changed to round to nearest. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: support multiple rounds of format negotiation.Nicolas George2013-03-24
| | | | | | | | | | Remove the temporary hack for amerge and replace it with a generic solution.
* | lavfi/af_amerge: return EAGAIN if the input layouts are not known.Nicolas George2013-03-24
| | | | | | | | Also downgrade the error to a warning.
* | lavfi/thumbnail: add support for named options.Clément Bœsch2013-03-24
| |
* | lavfi/colormatrix: reword error message in initStefano Sabatini2013-03-24
| | | | | | | | | | | | | | | | | | | | Change: "source and destination color space are identical" which is a true fact, but doesn't tell nothing about what's wrong, to: "Source and destination color space must not be identical" which tells more explicitly what the problem is.
* | lavfi/colormatrix: add support for named optionsStefano Sabatini2013-03-24
| |
* | lavfi/tinterlace: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/subtitles: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/smartblur: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/setfield: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/overlay: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/kerndeint: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/idet: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/histeq: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/gradfun: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/geq: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/fieldorder: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/field: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/deshake: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/cropdetect: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/boxblur: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/blackframe: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/settb: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/select: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/perms: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/sine: use standard options parsing.Clément Bœsch2013-03-24
| |
* | lavfi/apad: use standard options parsing.Clément Bœsch2013-03-24
| |
* | buffersink/uninit: use av_frame_free() not unrefMichael Niedermayer2013-03-23
| | | | | | | | | | | | Fixes memleak Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/anullsrc: add missing checksStefano Sabatini2013-03-23
| |
* | lavfi/anullsrc: remove extra parenthesesStefano Sabatini2013-03-23
| |
* | lavfi/anullsrc: simplify logging code in config_propsStefano Sabatini2013-03-23
| |
* | lavfi/anullsrc: fix format negotiationStefano Sabatini2013-03-23
| | | | | | | | Samplerate and channel layouts must be set in query_formats.
* | Merge commit '20a8ee3061e6d777600c13db731bee3c25878991'Michael Niedermayer2013-03-23
|\| | | | | | | | | | | | | * commit '20a8ee3061e6d777600c13db731bee3c25878991': af_asyncts: fix compensation and PTS monotonicity Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * af_asyncts: fix compensation and PTS monotonicityJindřich Makovička2013-03-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch improves af_asyncts behavior on streams with bogus PTS, which are either non-monotonic, or contain PTS jitter, and trigger the non-monotonicity error. With this patch, af_asyncts is able to correct these streams and avoid the error. Firstly, it fixes resample compensation calculation by supplying proper units to avresample_set_compensation (sample count per second instead of sample count per some arbitrary frame size). Also, the calculation of the compensation itself is fixed - delta is proportional to an adjustment of the compensation, not the compensation itself. Ideally, the compensation should converge to a value that keeps delta at zero. To be able to deal with sources with PTS jitter even without resampling, small PTS errors are adjusted, so the output frames do not overlap. Finally, one more monotonicity check is added. The FATE reference changes because now there is 8 less samples of silence because of the pts jitter. Signed-off-by: Jindřich Makovička <makovick@gmail.com>
* | lavfi/blend: always peek the first frame of each queue.Clément Bœsch2013-03-22
| | | | | | | | | | | | Before the change, filter_frame() always waited for 2 samples in the bottom frames queue. This notably fixes commands such as ./ffplay tests/lena.pnm -vf split,blend=c0_mode=addition
* | lavfi/vf_stereo3d: use standard options parsingPaul B Mahol2013-03-21
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | asrc_sine: avoid use of INFINITY as it might be a non constantMichael Niedermayer2013-03-21
| | | | | | | | | | | | This should fix compilation on openbsd Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/vf_yadif: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/vf_unsharp: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/vf_transpose: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/vf_pad: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/vf_fps: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/vf_fade: use standard options parsing.Nicolas George2013-03-20
| |
* | lavi/vf_drawbox: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/vf_delogo: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/vf_decimate: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/vf_crop: use standard options parsing.Nicolas George2013-03-20
| |
* | lavfi/af_volume: use standard options parsing.Nicolas George2013-03-20
| |