rawdec: Set start_time to 0 for raw audio files.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Wed, 28 Dec 2011 05:50:32 +0000 (00:50 -0500)
committerAnton Khirnov <anton@khirnov.net>
Sun, 1 Jan 2012 21:27:04 +0000 (22:27 +0100)
None of the raw audio files have timestamps, thus setting
start_time to 0 should be reasonable.

Signed-off-by: Anton Khirnov <anton@khirnov.net>
libavformat/rawdec.c

index 589cdd5..3e2dd05 100644 (file)
@@ -129,6 +129,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;