Browse Source

Do not butcher start_time in av_estimate_timings_from_bit_rate().

from a patch by neilb suse de

Originally committed as revision 10140 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Neil Brown Michael Niedermayer 18 years ago
parent
commit
9f32041d89
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      libavformat/utils.c

+ 1
- 4
libavformat/utils.c View File

@@ -1460,11 +1460,8 @@ static void av_estimate_timings_from_bit_rate(AVFormatContext *ic)
for(i = 0; i < ic->nb_streams; i++) {
st = ic->streams[i];
duration= av_rescale(8*filesize, st->time_base.den, ic->bit_rate*(int64_t)st->time_base.num);
if (st->start_time == AV_NOPTS_VALUE ||
st->duration == AV_NOPTS_VALUE) {
st->start_time = 0;
if (st->duration == AV_NOPTS_VALUE)
st->duration = duration;
}
}
}
}


Loading…
Cancel
Save