summaryrefslogtreecommitdiff
path: root/libavfilter/vf_kerndeint.c
Commit message (Collapse)AuthorAge
* lavfi/kerndeint: move is_rgb_packed definition to the internal contextStefano Sabatini2013-02-16
| | | | No need to recompute it for each new frame.
* lavfi/kerndeint: use aligned linesizes for the temporary buffer.Clément Bœsch2013-02-16
| | | | | | This improves the performances just enough to match mp=kerndeint. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* lavfi/kerndeint: use av_pix_fmt_desc_get instead of directly accessing the tableHendrik Leppkes2013-02-15
| | | | | | Fixes FATE in MSVC DLL builds. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi/kerndeint: remove unused pixel_step.Clément Bœsch2013-01-06
|
* lavfi/kerndeint: fix temp buffer linesize.Clément Bœsch2013-01-06
| | | | Also re-enable the FATE test.
* lavfi/kerndeint: get pix format description only once.Clément Bœsch2013-01-06
| | | | This makes the code faster.
* vf_kerndeint: memset buffer to avoid use of uninitialized memory.Michael Niedermayer2013-01-06
| | | | | | This might fix fate failures. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Allow remaining 32bit RGB packed pix_fmts in kerndeint filter.Carl Eugen Hoyos2013-01-05
| | | | Reviewed-by: Stefano Sabatini
* lavfi/kerndeint: fix mismatch between declared pixel format and testStefano Sabatini2013-01-05
| | | | +10l.
* lavfi: add kerndeint filterStefano Sabatini2013-01-05
This is a port of the kerndeint filter (libmpcodecs/vf_kerndeint) by Donal A. Graft (original avisynth plugin author), and is based on the work by Jérémy Tran <tran.jeremy.av@gmail.com> done for SOCIS 2012.