From 4646ef87b1f55ab07a59e1f282d75c9b03747798 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 6 Aug 2011 12:45:29 +0200 Subject: [PATCH] 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. --- libavfilter/allfilters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 9c456d33d6..2ec4906ef8 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); }