diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index eaccfa52d4441e934f0d03bee952d9ace9982b8a..07878330a2b39f8866e0439725a453ecc917c0d3 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -248,8 +248,8 @@ static int metadata_parse(FLACContext *s) switch (metadata_type) { case FLAC_METADATA_TYPE_STREAMINFO: if (!s->got_streaminfo) { - ff_flac_parse_streaminfo(s->avctx, (FLACStreaminfo *)s, - s->gb.buffer+get_bits_count(&s->gb)/8); + ff_flac_parse_streaminfo(s->avctx, (FLACStreaminfo *)s, + s->gb.buffer+get_bits_count(&s->gb)/8); s->got_streaminfo = 1; } default: