summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-08-06 12:45:29 +0200
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-08-06 13:18:09 +0200
commit4646ef87b1f55ab07a59e1f282d75c9b03747798 (patch)
treec2d040e9f6e29bef9d4134f9fa2dd1c60170f98b /libavfilter
parent3c56a421d8ea980a900892aa4da4a104c6943c03 (diff)
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.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/allfilters.c2
1 files changed, 1 insertions, 1 deletions
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);
}