diff options
author | Nicolas George <george@nsup.org> | 2015-10-25 16:31:00 +0100 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2015-11-07 16:02:48 +0100 |
commit | b16e56931271db1ddd7008850bad5c7056d2f7ff (patch) | |
tree | 31217b5ee23434d88e003370f96a4029a5f45a85 /libavfilter/allfilters.c | |
parent | 91bc4de2a4fcd68950085b0a6bef99727968ce82 (diff) | |
download | ffmpeg-b16e56931271db1ddd7008850bad5c7056d2f7ff.tar.gz |
lavfi: add testsrc2 test source.
Similar to testsrc, but using drawutils and therefore
supporting a lot of pixel formats instead of just rgb24.
This allows using it as input for other tests without
requiring a format conversion.
It is also slightly faster than testsrc for some reason.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index a538b81983..05dfac9182 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -285,6 +285,7 @@ void avfilter_register_all(void) REGISTER_FILTER(SMPTEBARS, smptebars, vsrc); REGISTER_FILTER(SMPTEHDBARS, smptehdbars, vsrc); REGISTER_FILTER(TESTSRC, testsrc, vsrc); + REGISTER_FILTER(TESTSRC2, testsrc2, vsrc); REGISTER_FILTER(NULLSINK, nullsink, vsink); |