diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-01-09 20:49:34 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2013-04-21 18:51:25 +0200 |
commit | d70bad04de8a9bc16188e766bd3b02fd35fa28af (patch) | |
tree | 6edd6936e465efcfc5c39a48a836527848823a00 | |
parent | c8462bd17f35f435192281a2ea4ce8008a7398d3 (diff) | |
download | ffmpeg-d70bad04de8a9bc16188e766bd3b02fd35fa28af.tar.gz |
oggdec: fix faulty cleanup prototype
(cherry picked from commit fba8e5b608577fc660989d0057a55818254a3744)
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-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; |