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/Makefile | |
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/Makefile')
-rw-r--r-- | libavfilter/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 1b2308585c..f771dca0f9 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -264,6 +264,7 @@ OBJS-$(CONFIG_RGBTESTSRC_FILTER) += vsrc_testsrc.o OBJS-$(CONFIG_SMPTEBARS_FILTER) += vsrc_testsrc.o OBJS-$(CONFIG_SMPTEHDBARS_FILTER) += vsrc_testsrc.o OBJS-$(CONFIG_TESTSRC_FILTER) += vsrc_testsrc.o +OBJS-$(CONFIG_TESTSRC2_FILTER) += vsrc_testsrc.o OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o |