Commit 4646ef87 authored by Stefano Sabatini's avatar 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.
parent 3c56a421
...@@ -89,6 +89,6 @@ void avfilter_register_all(void) ...@@ -89,6 +89,6 @@ void avfilter_register_all(void)
REGISTER_FILTER (RGBTESTSRC, rgbtestsrc, vsrc); REGISTER_FILTER (RGBTESTSRC, rgbtestsrc, vsrc);
REGISTER_FILTER (TESTSRC, testsrc, vsrc); REGISTER_FILTER (TESTSRC, testsrc, vsrc);
REGISTER_FILTER (BUFFER, buffersink, vsink); REGISTER_FILTER (BUFFERSINK, buffersink, vsink);
REGISTER_FILTER (NULLSINK, nullsink, vsink); REGISTER_FILTER (NULLSINK, nullsink, vsink);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment