summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-02-15 21:38:35 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-02-15 21:38:35 +0000
commit0838e7316b41ea0362defd18d06cec8bdaa0b66d (patch)
tree3156c45d01e19182ff47b0b3fca0ce04aa8abc7e /libavfilter/avfilter.c
parentf4cb446216a16f214aee8844be6e95d5f059db76 (diff)
Add a filter to act as a buffer between filters which may output multiple
frames for a single call to request_filter(), and a following filter which assumes it will only receive one frame per call. Commited in SoC by Bobby Bingham on 2007-08-18 03:17:52 Originally committed as revision 12016 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 32b2cefc4c..fa320a72ff 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -267,6 +267,7 @@ void avfilter_init(void)
{
avfilter_register(&vsrc_dummy);
avfilter_register(&vsrc_ppm);
+ avfilter_register(&vf_buffer);
avfilter_register(&vf_crop);
avfilter_register(&vf_fps);
avfilter_register(&vf_graph);