mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
3c56a421d8
commit
4646ef87b1
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue