summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-02-15 21:37:44 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-02-15 21:37:44 +0000
commitf9285377b2230645c0f13803fc6f6de6d3052ad3 (patch)
tree247fe62883feeeee601fe90460cb6eff0cd39292 /libavfilter/avfilter.c
parentef712a3b28c5212d7f5df6401535622ac9927426 (diff)
Allow creation of filter graphs from a graph description structure which
can be created programmatically or loaded from a file. Commited in SoC by Bobby Bingham on 2007-08-14 22:27:05 Originally committed as revision 12004 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index b5a642eb5d..c2b283aa6a 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -220,6 +220,8 @@ void avfilter_init(void)
avfilter_register(&vf_crop);
avfilter_register(&vf_fps);
avfilter_register(&vf_graph);
+ avfilter_register(&vf_graphdesc);
+ avfilter_register(&vf_graphfile);
avfilter_register(&vf_overlay);
avfilter_register(&vf_passthrough);
avfilter_register(&vf_rgb2bgr);