diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-26 02:11:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-26 02:11:21 +0200 |
commit | fdc371114faf8535efbde67729bf5a3c56fbcf04 (patch) | |
tree | 7f3f4f8757af99b9ac7443d05eef732c6f33a362 | |
parent | 5ea4ee7bcbaf0a35886b21d73a1e4bd8036eec91 (diff) | |
download | ffmpeg-fdc371114faf8535efbde67729bf5a3c56fbcf04.tar.gz |
ff_raw_audio_read_header: mark as AVSTREAM_PARSE_FULL_RAW
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/rawdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c index 4a06f80890..1f28ffbeea 100644 --- a/libavformat/rawdec.c +++ b/libavformat/rawdec.c @@ -134,7 +134,7 @@ int ff_raw_audio_read_header(AVFormatContext *s) return AVERROR(ENOMEM); st->codec->codec_type = AVMEDIA_TYPE_AUDIO; st->codec->codec_id = s->iformat->raw_codec_id; - st->need_parsing = AVSTREAM_PARSE_FULL; + st->need_parsing = AVSTREAM_PARSE_FULL_RAW; st->start_time = 0; /* the parameters will be extracted from the compressed bitstream */ |