summaryrefslogtreecommitdiff
path: root/libavfilter/vf_fade.c
Commit message (Collapse)AuthorAge
* vf_fade: reindent after previous commitStefano Sabatini2011-11-10
|
* vf_fade: add alpha option and alpha fading supportMark Himsley2011-11-10
| | | | Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* vf_fade: add support to options parsingMark Himsley2011-11-10
| | | | | | Extend fade syntax, required by a pending patch. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* Mark AVFilterPad[] compound literals as const.Reimar Döffinger2011-11-06
| | | | | | | GCC 4.6.2 at least still seems to fail to put them in .rodata though, see also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37303 Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* vf_fade: fade to correct CCIR601/709 black levelMark Himsley2011-11-02
| | | | | | | | Current implementation fades to 0. This implementation fades to 16 for YUV formats that contain CCIR601/709 video levels. RGB and YUVJ formats are not altered. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* lavfi: add layout negotiation fields and helper functions.Mina Nagy Zaki2011-06-19
|
* 10l, commit that should have been stashed into the merge.Michael Niedermayer2011-04-17
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge remote branch 'qatar/master'Michael Niedermayer2011-04-17
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: ac3dec: fix processing of delta bit allocation information. vc1: fix fate-vc1 after previous commit. wmv3dec: fix playback of complex WMV3 files using simple_idct. make av_dup_packet() more cautious on allocation failures make containers pass palette change in AVPacket introduce side information for AVPacket Politic commits that have not been pulled: Update regtest checksums after revision 6001dad. Replace more FFmpeg references by Libav. Replace references to ffmpeg-devel with libav-devel; fix roundup URL. Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Replace more FFmpeg references by Libav.Diego Biurrun2011-04-17
| |
| * lavfi: add fade filterBrandon Mintern2011-04-03
| | | | | | | | Port fade filter from libavfilter soc repo, with minor fixes by Stefano. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* fade: fix draw_slice() check on fade->factor valueMark Himsley2011-03-18
| | | | | | | | draw_slice() checks that the fade factor is < 65536 and only calculates the fade if so. But the fade factor is clipped in end_frame() by av_clip_uint16() to 65535, so the fade is calculated for every frame. This patch alters the check so that it compares with < 65535 (UINT16_MAX).
* fade: make draw_slice() chroma check against planes 1 and 2Mark Himsley2011-03-18
| | | | | | draw_slice() checks that planes 0 and 1 of AVFilterBufferRef's data are not NULL before manipulating planes 1 and 2. This patch makes the check against planes 1 and 2. More senseful and possibly more robust.
* lavfi: add fade filterBrandon Mintern2011-02-21
Port fade filter from libavfilter soc repo, with minor fixes by Stefano. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>