aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/flacdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-24 17:39:54 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-26 02:03:58 +0200
commit5ea4ee7bcbaf0a35886b21d73a1e4bd8036eec91 (patch)
treedafbe00ba2f527041d90190d6c65f532e616f94a /libavformat/flacdec.c
parentea8c12c90fcc636dcac56389b351b6ca623e4b5c (diff)
downloadandroid_external_ffmpeg-5ea4ee7bcbaf0a35886b21d73a1e4bd8036eec91.tar.gz
android_external_ffmpeg-5ea4ee7bcbaf0a35886b21d73a1e4bd8036eec91.tar.bz2
android_external_ffmpeg-5ea4ee7bcbaf0a35886b21d73a1e4bd8036eec91.zip
flacdec: mark as AVSTREAM_PARSE_FULL_RAW
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/flacdec.c')
-rw-r--r--libavformat/flacdec.c2
1 files changed, 1 insertions, 1 deletions
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 */