diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-12-22 17:32:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-12-23 08:17:22 +0100 |
commit | 82d05e78a60d5b2b3ecfaa3aa232df518c351274 (patch) | |
tree | a883a296bf66c1822a9c0ad13200542a6a5ad3b8 /libavfilter | |
parent | 01eb9805f37835e20501134ae26e379140fe3239 (diff) | |
download | ffmpeg-82d05e78a60d5b2b3ecfaa3aa232df518c351274.tar.gz |
allfilters: fix type of avfilter_vsrc_buffer.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/allfilters.c | 2 |
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); } } |