Commit d72a138e authored by Vitor Sessak's avatar Vitor Sessak

Some simple filters for testing

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

Originally committed as revision 11966 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4dbbcdee
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <stdio.h> #include <stdio.h>
#include "avfilter.h" #include "avfilter.h"
#include "allfilters.h"
/** list of registered filters, sorted by name */ /** list of registered filters, sorted by name */
static int filter_count = 0; static int filter_count = 0;
...@@ -184,6 +185,10 @@ void avfilter_register(AVFilter *filter) ...@@ -184,6 +185,10 @@ void avfilter_register(AVFilter *filter)
void avfilter_init(void) void avfilter_init(void)
{ {
avfilter_register(&vsrc_dummy);
avfilter_register(&vf_crop);
avfilter_register(&vf_passthrough);
avfilter_register(&vo_sdl);
} }
void avfilter_uninit(void) void avfilter_uninit(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment