Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-24 19:39:54 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-07-26 04:03:58 +0400
commit5ea4ee7bcbaf0a35886b21d73a1e4bd8036eec91 (patch)
treedafbe00ba2f527041d90190d6c65f532e616f94a /libavformat/flacdec.c
parentea8c12c90fcc636dcac56389b351b6ca623e4b5c (diff)
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 */