Browse Source

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.
tags/n0.9
Stefano Sabatini 14 years ago
parent
commit
4646ef87b1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/allfilters.c

+ 1
- 1
libavfilter/allfilters.c 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);
}

Loading…
Cancel
Save