diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-10-23 13:53:25 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-10-24 17:46:48 +0200 |
commit | 1f4652068e690c907df3ab569948c1f04d0bb940 (patch) | |
tree | 283f1e1cad63bb4cc1cda146ced46bbe9d577733 /libavfilter/Makefile | |
parent | 3092509b08f71beabff65c31c49d9e9dffe4584b (diff) | |
download | ffmpeg-1f4652068e690c907df3ab569948c1f04d0bb940.tar.gz |
lavfi: rewrite nullsrc using the code in vsrc_testsrc.c
Factorize code, extend the functionality of the filter, and make it
return empty buffers. This is useful for filters which ignore the input
frames content.
This is also changing the syntax of the nullsrc source, and dropping the
framerate expression evaluation, which does not look particularly useful.
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 08a69e45dc..cfe5d7416a 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -84,7 +84,7 @@ OBJS-$(CONFIG_COLOR_FILTER) += vsrc_color.o OBJS-$(CONFIG_FREI0R_SRC_FILTER) += vf_frei0r.o OBJS-$(CONFIG_MOVIE_FILTER) += src_movie.o OBJS-$(CONFIG_MPTESTSRC_FILTER) += vsrc_mptestsrc.o -OBJS-$(CONFIG_NULLSRC_FILTER) += vsrc_nullsrc.o +OBJS-$(CONFIG_NULLSRC_FILTER) += vsrc_testsrc.o OBJS-$(CONFIG_RGBTESTSRC_FILTER) += vsrc_testsrc.o OBJS-$(CONFIG_TESTSRC_FILTER) += vsrc_testsrc.o |