set correct timebase

Originally committed as revision 3607 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Michael Niedermayer 20 years ago
parent 15862411e6
commit 595bf4ef63
  1. 1
      libavformat/au.c
  2. 1
      libavformat/raw.c
  3. 3
      libavformat/sol.c
  4. 4
      libavformat/wav.c

@ -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;

Loading…
Cancel
Save