mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Set start_time to 0 for raw audio files.
None of the raw audio files have timestamps, thus setting start_time to 0 should be reasonable.
This commit is contained in:
parent
663d002410
commit
7f725f234e
@ -100,6 +100,7 @@ int ff_raw_audio_read_header(AVFormatContext *s,
|
||||
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codec->codec_id = s->iformat->value;
|
||||
st->need_parsing = AVSTREAM_PARSE_FULL;
|
||||
st->start_time = 0;
|
||||
/* the parameters will be extracted from the compressed bitstream */
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user