diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-01-09 20:49:34 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-01-09 21:07:48 +0100 |
commit | fba8e5b608577fc660989d0057a55818254a3744 (patch) | |
tree | 26a293daf964ba79d0eceec308c1a6d3425a660f /libavformat | |
parent | 06deaf8ad33a996c8ad606e29197ec9712960067 (diff) | |
download | ffmpeg-fba8e5b608577fc660989d0057a55818254a3744.tar.gz |
oggdec: fix faulty cleanup prototype
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/oggparsevorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index fbe6c4fb41..bb41b52ca2 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -192,7 +192,7 @@ fixup_vorbis_headers(AVFormatContext * as, struct oggvorbis_private *priv, return offset; } -static int vorbis_cleanup(AVFormatContext *s, int idx) +static void vorbis_cleanup(AVFormatContext *s, int idx) { struct ogg *ogg = s->priv_data; struct ogg_stream *os = ogg->streams + idx; |