Commit fdc37111 authored by Michael Niedermayer's avatar Michael Niedermayer

ff_raw_audio_read_header: mark as AVSTREAM_PARSE_FULL_RAW

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5ea4ee7b
...@@ -134,7 +134,7 @@ int ff_raw_audio_read_header(AVFormatContext *s) ...@@ -134,7 +134,7 @@ int ff_raw_audio_read_header(AVFormatContext *s)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
st->codec->codec_type = AVMEDIA_TYPE_AUDIO; st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_id = s->iformat->raw_codec_id; 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; st->start_time = 0;
/* the parameters will be extracted from the compressed bitstream */ /* the parameters will be extracted from the compressed bitstream */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment