summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-01-09 20:49:34 +0100
committerReinhard Tartler <siretart@tauware.de>2013-05-09 20:05:53 +0200
commit053c19cd88b64a7e66231a41a4d81898aef1b6dd (patch)
tree016528ff702bc531a67d88e39c3bfda1be27aa46
parent96481c5e1843dda64df1df22f3bc12e6b10505fd (diff)
downloadffmpeg-053c19cd88b64a7e66231a41a4d81898aef1b6dd.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c
index f276a131af..514ed9ff28 100644
--- a/libavformat/oggparsevorbis.c
+++ b/libavformat/oggparsevorbis.c
@@ -188,7 +188,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;