[FFmpeg-cvslog] r11966 - trunk/libavfilter/avfilter.c

vitor subversion
Fri Feb 15 22:34:04 CET 2008


Author: vitor
Date: Fri Feb 15 22:34:04 2008
New Revision: 11966

Log:
Some simple filters for testing

Commited in SoC by Bobby Bingham on 2007-06-29 17:07:44


Modified:
   trunk/libavfilter/avfilter.c

Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c	(original)
+++ trunk/libavfilter/avfilter.c	Fri Feb 15 22:34:04 2008
@@ -24,6 +24,7 @@
 #include <stdio.h>
 
 #include "avfilter.h"
+#include "allfilters.h"
 
 /** list of registered filters, sorted by name */
 static int filter_count = 0;
@@ -184,6 +185,10 @@ void avfilter_register(AVFilter *filter)
 
 void avfilter_init(void)
 {
+    avfilter_register(&vsrc_dummy);
+    avfilter_register(&vf_crop);
+    avfilter_register(&vf_passthrough);
+    avfilter_register(&vo_sdl);
 }
 
 void avfilter_uninit(void)




More information about the ffmpeg-cvslog mailing list