projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4dbbcde
)
Some simple filters for testing
author
Vitor Sessak
<vitor1001@gmail.com>
Fri, 15 Feb 2008 21:34:04 +0000
(21:34 +0000)
committer
Vitor Sessak
<vitor1001@gmail.com>
Fri, 15 Feb 2008 21:34:04 +0000
(21:34 +0000)
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
libavfilter/avfilter.c
patch
|
blob
|
blame
|
history
diff --git
a/libavfilter/avfilter.c
b/libavfilter/avfilter.c
index
728358d
..
1a60063
100644
(file)
--- a/
libavfilter/avfilter.c
+++ b/
libavfilter/avfilter.c
@@
-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)