Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-07lavfi: Rename local variables "main" as "master".Carl Eugen Hoyos
Silences several warnings: main is usually a function
2017-09-12lavfi: rename framesync2 to framesync.Nicolas George
2017-08-29lavfi/vf_lut3d: convert to framesync2.Nicolas George
2017-03-13avfilter/vf_lut3d: actually skip lines when encountering DOMAIN_ stringPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-08-29avfilter: make use of ff_filter_get_nb_threadsPaul B Mahol
2015-09-09avfilter/haldclut: use AV_OPT_TYPE_BOOL for shortest and repeatlast optionsClément Bœsch
2015-06-13avfilter/lut3d: assert on pixel format descriptorClément Bœsch
inlink->format is supposed to be set to a valid format controlled by query_formats().
2015-06-07avfilter: fix a few 5 spaces indentClément Bœsch
2015-03-18avfilter/vf_lut3d: Change enum to int, which is accessed via AVOption as intMichael Niedermayer
This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-17avfilter: handle error in query_formats() of a bunch of random video filtersClément Bœsch
2014-07-05avfilter/haldclut: fix R/B swap in CLUT loadingClément Bœsch
Fixes Ticket #3751.
2014-05-14avfilter/lut3d: move the scale calc out of the inner loop.Clément Bœsch
2014-05-10avfilter/vf_lut3d: check size in parse_dat()Michael Niedermayer
Fixes CID1212261 Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-04avfilter/lut3d: support 3DLUTSIZE directive for Davinci files.Clément Bœsch
Fixes Ticket #2847.
2014-02-13avfilter/lut3d: support slice threading.Clément Bœsch
2014-02-12avfilter/lut3d: inline whole loop in interpolation function.Clément Bœsch
84 → 92 fps here.
2014-01-04avfilter/lut3d: fix channel order in Iridas format parsing.Clément Bœsch
According to http://doc.iridas.com/index.php?title=LUT_Formats for 3D textures, the data is also RGB, and ordered in such a way that the red coordinate changes fastest, then the green coordinate, and finally, the blue coordinate changes slowest: Fixes Ticket #3236.
2013-10-29Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* 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>
2013-09-30avfilter/dualinput: simplifyPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-23lavfi/dualinput: reimplement on top of framesync.Nicolas George
2013-09-12avfilter: various cosmeticsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-07-18lut3d: Fix reading 3dl files with leading comments.Carl Eugen Hoyos
Fixes ticket #2787.
2013-06-07lavfi/lut3d: add sanity checks.Clément Bœsch
Should fix CID1026775 and CID1026774.
2013-05-27lavfi/lut3d: move lut3d init to its definition scope.Clément Bœsch
2013-05-27lavfi: add haldclut filter.Clément Bœsch
Fixes Ticket #2517.
2013-05-26lavfi/lut3d: faster tetrahedral interpolation.Clément Bœsch
Increase performance by fetching only the necessary points. 1097 → 917 decicyles.
2013-05-26lavfi/lut3d: restore original interpolation speed.Clément Bœsch
Call NEXT() only once since it got slower due to the overflow condition introduced in 91b46145. interp_trilinear: 1462 → 1280 decicycles interp_tetrahedral: 1188 → 1097 decicycles Tested on a Core2, GCC 4.8.
2013-05-23lavfi/lut3d: avoid overread.Clément Bœsch
2013-05-22lavfi: add lut3d filter.Clément Bœsch
Fixes part of Ticket #2517.