From 5ea4ee7bcbaf0a35886b21d73a1e4bd8036eec91 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 24 Jul 2012 17:39:54 +0200 Subject: [PATCH] flacdec: mark as AVSTREAM_PARSE_FULL_RAW Signed-off-by: Michael Niedermayer --- libavformat/flacdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/flacdec.c b/libavformat/flacdec.c index cd84cc6ad5..08bf538818 100644 --- a/libavformat/flacdec.c +++ b/libavformat/flacdec.c @@ -165,7 +165,7 @@ static int flac_read_header(AVFormatContext *s) return AVERROR(ENOMEM); st->codec->codec_type = AVMEDIA_TYPE_AUDIO; st->codec->codec_id = CODEC_ID_FLAC; - st->need_parsing = AVSTREAM_PARSE_FULL; + st->need_parsing = AVSTREAM_PARSE_FULL_RAW; /* the parameters will be extracted from the compressed bitstream */ /* if fLaC marker is not found, assume there is no header */