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.
This commit is contained in:
Stefano Sabatini 2011-08-06 12:45:29 +02:00
parent 3c56a421d8
commit 4646ef87b1
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}