mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 12:27:18 +00:00
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
This commit is contained in:
parent
d6a0906ad1
commit
9f32041d89
@ -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…
Reference in New Issue
Block a user