summaryrefslogtreecommitdiff
path: root/libavfilter/vf_lut3d.c
Commit message (Collapse)AuthorAge
* avfilter/haldclut: use AV_OPT_TYPE_BOOL for shortest and repeatlast optionsClément Bœsch2015-09-09
|
* avfilter/lut3d: assert on pixel format descriptorClément Bœsch2015-06-13
| | | | inlink->format is supposed to be set to a valid format controlled by query_formats().
* avfilter: fix a few 5 spaces indentClément Bœsch2015-06-07
|
* avfilter/vf_lut3d: Change enum to int, which is accessed via AVOption as intMichael Niedermayer2015-03-18
| | | | | | This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter: handle error in query_formats() of a bunch of random video filtersClément Bœsch2015-03-16
|
* avfilter/haldclut: fix R/B swap in CLUT loadingClément Bœsch2014-07-05
| | | | Fixes Ticket #3751.
* avfilter/lut3d: move the scale calc out of the inner loop.Clément Bœsch2014-05-14
|
* avfilter/vf_lut3d: check size in parse_dat()Michael Niedermayer2014-05-10
| | | | | | Fixes CID1212261 Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/lut3d: support 3DLUTSIZE directive for Davinci files.Clément Bœsch2014-05-04
| | | | Fixes Ticket #2847.
* avfilter/lut3d: support slice threading.Clément Bœsch2014-02-13
|
* avfilter/lut3d: inline whole loop in interpolation function.Clément Bœsch2014-02-12
| | | | 84 → 92 fps here.
* avfilter/lut3d: fix channel order in Iridas format parsing.Clément Bœsch2014-01-04
| | | | | | | | | | 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.
* 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/dualinput: simplifyPaul B Mahol2013-09-30
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi/dualinput: reimplement on top of framesync.Nicolas George2013-09-23
|
* avfilter: various cosmeticsPaul B Mahol2013-09-12
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lut3d: Fix reading 3dl files with leading comments.Carl Eugen Hoyos2013-07-18
| | | | Fixes ticket #2787.
* lavfi/lut3d: add sanity checks.Clément Bœsch2013-06-07
| | | | Should fix CID1026775 and CID1026774.
* lavfi/lut3d: move lut3d init to its definition scope.Clément Bœsch2013-05-27
|
* lavfi: add haldclut filter.Clément Bœsch2013-05-27
| | | | Fixes Ticket #2517.
* lavfi/lut3d: faster tetrahedral interpolation.Clément Bœsch2013-05-26
| | | | | | Increase performance by fetching only the necessary points. 1097 → 917 decicyles.
* lavfi/lut3d: restore original interpolation speed.Clément Bœsch2013-05-26
| | | | | | | | | | 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.
* lavfi/lut3d: avoid overread.Clément Bœsch2013-05-22
|
* lavfi: add lut3d filter.Clément Bœsch2013-05-22
Fixes part of Ticket #2517.