diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-07 14:14:41 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-17 04:34:47 +0100 |
commit | 05ed9b70059962251d16f0dd0c9da50a14a31ed4 (patch) | |
tree | 67464138b1df4514def8da352d65a28d9daa9447 | |
parent | 76477c3843c2f4ecbbd5d3e7bb3c407e575c6ef3 (diff) | |
download | ffmpeg-05ed9b70059962251d16f0dd0c9da50a14a31ed4.tar.gz |
oggparsevorbis: fix vorbis_cleanup return type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 5510115bc8..16bcaefd4d 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; |