summaryrefslogtreecommitdiff
path: root/libavfilter/allfilters.c
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2015-10-25 16:31:00 +0100
committerNicolas George <george@nsup.org>2015-11-07 16:02:48 +0100
commitb16e56931271db1ddd7008850bad5c7056d2f7ff (patch)
tree31217b5ee23434d88e003370f96a4029a5f45a85 /libavfilter/allfilters.c
parent91bc4de2a4fcd68950085b0a6bef99727968ce82 (diff)
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.c1
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);