[FFmpeg-soc] [soc]: r5628 - in libavfilter: Makefile allfilters.c
stefano
subversion at mplayerhq.hu
Sun Feb 21 15:54:52 CET 2010
Author: stefano
Date: Sun Feb 21 15:54:52 2010
New Revision: 5628
Log:
Register and compile the nullsrc source and the nullsink sink.
Modified:
libavfilter/Makefile
libavfilter/allfilters.c
Modified: libavfilter/Makefile
==============================================================================
--- libavfilter/Makefile Sun Feb 21 11:28:27 2010 (r5627)
+++ libavfilter/Makefile Sun Feb 21 15:54:52 2010 (r5628)
@@ -36,5 +36,8 @@ OBJS-$(CONFIG_VFLIP_FILTER) += vf_v
OBJS-$(CONFIG_BUFFER_FILTER) += vsrc_buffer.o
OBJS-$(CONFIG_MOVIE_FILTER) += vsrc_movie.o
+OBJS-$(CONFIG_NULLSRC_FILTER) += vsrc_nullsrc.o
+
+OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o
include $(SUBDIR)../subdir.mak
Modified: libavfilter/allfilters.c
==============================================================================
--- libavfilter/allfilters.c Sun Feb 21 11:28:27 2010 (r5627)
+++ libavfilter/allfilters.c Sun Feb 21 15:54:52 2010 (r5628)
@@ -55,4 +55,7 @@ void avfilter_register_all(void)
REGISTER_FILTER(BUFFER,buffer,vsrc);
REGISTER_FILTER(MOVIE,movie,vsrc);
+ REGISTER_FILTER(NULLSRC, nullsrc, vsrc);
+
+ REGISTER_FILTER(NULLSINK, nullsink, vsink);
}
More information about the FFmpeg-soc
mailing list