Commit 595bf4ef authored by Michael Niedermayer's avatar Michael Niedermayer

set correct timebase

Originally committed as revision 3607 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 15862411
......@@ -148,6 +148,7 @@ static int au_read_header(AVFormatContext *s,
st->codec.codec_id = codec;
st->codec.channels = channels;
st->codec.sample_rate = rate;
av_set_pts_info(st, 64, 1, rate);
return 0;
}
......
......@@ -60,6 +60,7 @@ static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap)
case CODEC_TYPE_AUDIO:
st->codec.sample_rate = ap->sample_rate;
st->codec.channels = ap->channels;
av_set_pts_info(st, 64, 1, st->codec.sample_rate);
break;
case CODEC_TYPE_VIDEO:
st->codec.frame_rate = ap->frame_rate;
......
......@@ -117,7 +117,8 @@ static int sol_read_header(AVFormatContext *s,
st->codec.codec_tag = id;
st->codec.codec_id = codec;
st->codec.channels = channels;
st->codec.sample_rate = rate;
st->codec.sample_rate = rate;
av_set_pts_info(st, 64, 1, rate);
return 0;
}
......
......@@ -301,7 +301,9 @@ static int wav_read_header(AVFormatContext *s,
get_wav_header(pb, &st->codec, size);
st->need_parsing = 1;
av_set_pts_info(st, 64, 1, st->codec.sample_rate);
size = find_tag(pb, MKTAG('d', 'a', 't', 'a'));
if (size < 0)
return -1;
......
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