summaryrefslogtreecommitdiff
path: root/libavfilter/vf_vidstabdetect.c
Commit message (Collapse)AuthorAge
* avfilter/vidstab: check bytesPerPixel only for packed formats.Gyan Doshi2018-01-17
| | | | | | | | | libvidstab introduced this variable only for packed formats but in vf_vidstab*.c, it's checked for all inputs. So the filter errors out for YUV422/444P streams. Fixes #6736. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter: don't anonymously typedef structsPaul B Mahol2017-05-13
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/vf_vidstabdetect: use the name 's' for the pointer to the private ↵Ganesh Ajjanagadde2015-09-15
| | | | | | | context Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avfilter: handle error in query_formats() in bunch of filtersPaul B Mahol2015-04-08
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: Read errno before av_log() as the callback from av_log() might ↵Michael Niedermayer2014-10-25
| | | | | | affect errno Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vidstab*: Remove accidentally exported av_2_vs_pixel_format()Timothy Gu2014-08-22
| | | | | | | | | Also correctly namespace other functions in vidstabutils, and decrease difference from Libav. Initial-patch-by: Vittorio Giovara <vittorio.giovara@gmail.com> Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi/vidstabtransform: apply various cosmetical nitsStefano Sabatini2014-01-16
|
* lavfi/vidstabdetect,vidstabtransform: update to vid.stab 0.98Georg Martius2014-01-16
| | | | | | | | | | | | In particular: * set default value for accuracy to 15 (max) * add zoomspeed for dynamic zoom (optzoom=2) * make camera path optimization algorithm configurable * update optzoom documenation in code to use new localmotions calculation function commandline arguments * add debug option in vidstabtransform Signed-off-by: Georg Martius <martius@mis.mpg.de> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* 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: various cosmeticsPaul B Mahol2013-09-12
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi/vidstabdetect: fix direct path.Clément Bœsch2013-04-24
| | | | | The frame must be writable if the show option is set, otherwise pass the frame unchanged.
* lavfi/vidstab: remove mention of defaults for consistency with other filters.Clément Bœsch2013-04-24
|
* lavfi/vidstab: add missing flags for 2 options.Clément Bœsch2013-04-24
|
* lavfi/vidstab: consistent descriptions.Clément Bœsch2013-04-24
|
* lavfi/vidstab: miscelenaous cosmetics and typo fixes.Clément Bœsch2013-04-24
|
* lavfi: add video stabilization plugins using vid.stab libraryGeorg Martius2013-04-24
vidstabdetect and vidstabtransform common functions for interfacing vid.stab are in libavfilter/vidstabutils.c Signed-off-by: Georg Martius <martius@mis.mpg.de>