mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Revert "avformat/dashenc: use AVStream timebase when computing missing bitrate"
This reverts commit 2a9ffd89fc
as duration is always in AV_TIME_BASE units
This commit is contained in:
parent
fdac3c80ac
commit
19726288d8
@ -1960,7 +1960,7 @@ static int dash_flush(AVFormatContext *s, int final, int stream)
|
|||||||
|
|
||||||
if (!os->bit_rate) {
|
if (!os->bit_rate) {
|
||||||
// calculate average bitrate of first segment
|
// calculate average bitrate of first segment
|
||||||
int64_t bitrate = (int64_t) range_length * 8 * (c->use_timeline ? os->ctx->streams[0]->time_base.den : AV_TIME_BASE) / duration;
|
int64_t bitrate = (int64_t) range_length * 8 * AV_TIME_BASE / duration;
|
||||||
if (bitrate >= 0)
|
if (bitrate >= 0)
|
||||||
os->bit_rate = bitrate;
|
os->bit_rate = bitrate;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user