summaryrefslogtreecommitdiff
path: root/libavfilter/allfilters.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-12-22 17:32:29 +0100
committerAnton Khirnov <anton@khirnov.net>2011-12-23 08:17:22 +0100
commit82d05e78a60d5b2b3ecfaa3aa232df518c351274 (patch)
treea883a296bf66c1822a9c0ad13200542a6a5ad3b8 /libavfilter/allfilters.c
parent01eb9805f37835e20501134ae26e379140fe3239 (diff)
allfilters: fix type of avfilter_vsrc_buffer.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r--libavfilter/allfilters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c
index a6f17317e9..ba66941002 100644
--- a/libavfilter/allfilters.c
+++ b/libavfilter/allfilters.c
@@ -91,7 +91,7 @@ void avfilter_register_all(void)
/* vsrc_buffer is a part of public API => registered unconditionally */
{
- extern avfilter_vsrc_buffer;
+ extern AVFilter avfilter_vsrc_buffer;
avfilter_register(&avfilter_vsrc_buffer);
}
}