[FFmpeg-cvslog] lavfi: fix registration name for the buffersink sink

Stefano Sabatini git at videolan.org
Sat Aug 6 13:18:35 CEST 2011


ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Sat Aug  6 12:45:29 2011 +0200| [4646ef87b1f55ab07a59e1f282d75c9b03747798] | committer: Stefano Sabatini

lavfi: fix registration name for the buffersink sink

Previously both the buffer and buffersink elements were associated to
the "BUFFER" symbol in allfilters.c, so it was not possible to enable
one without the other.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4646ef87b1f55ab07a59e1f282d75c9b03747798
---

 libavfilter/allfilters.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c
index 9c456d3..2ec4906 100644
--- a/libavfilter/allfilters.c
+++ b/libavfilter/allfilters.c
@@ -89,6 +89,6 @@ void avfilter_register_all(void)
     REGISTER_FILTER (RGBTESTSRC,  rgbtestsrc,  vsrc);
     REGISTER_FILTER (TESTSRC,     testsrc,     vsrc);
 
-    REGISTER_FILTER (BUFFER,      buffersink,  vsink);
+    REGISTER_FILTER (BUFFERSINK,  buffersink,  vsink);
     REGISTER_FILTER (NULLSINK,    nullsink,    vsink);
 }



More information about the ffmpeg-cvslog mailing list