mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '5cf6bda6e2eae496e8eb2bb06c96852d59a58b8a'
* commit '5cf6bda6e2eae496e8eb2bb06c96852d59a58b8a': sidxindex: Don't adjust the Period start time depending on the track start time Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
e566667d8f
|
@ -252,7 +252,6 @@ static int output_mpd(struct Tracks *tracks, const char *filename)
|
|||
int nb_tracks_buf[2] = { 0 };
|
||||
int *nb_tracks;
|
||||
int set, nb_sets;
|
||||
int64_t latest_start = 0;
|
||||
|
||||
if (!tracks->multiple_tracks_per_file) {
|
||||
adaptation_sets = adaptation_sets_buf;
|
||||
|
@ -299,17 +298,7 @@ static int output_mpd(struct Tracks *tracks, const char *filename)
|
|||
fprintf(out, "\"\n");
|
||||
fprintf(out, "\tminBufferTime=\"PT5S\">\n");
|
||||
|
||||
for (i = 0; i < tracks->nb_tracks; i++) {
|
||||
int64_t start = av_rescale_rnd(tracks->tracks[i]->earliest_presentation,
|
||||
AV_TIME_BASE,
|
||||
tracks->tracks[i]->earliest_presentation_timescale,
|
||||
AV_ROUND_UP);
|
||||
latest_start = FFMAX(start, latest_start);
|
||||
}
|
||||
fprintf(out, "\t<Period start=\"");
|
||||
write_time(out, latest_start, 3, AV_ROUND_UP);
|
||||
fprintf(out, "\">\n");
|
||||
|
||||
fprintf(out, "\t<Period start=\"PT0.0S\">\n");
|
||||
|
||||
for (set = 0; set < nb_sets; set++) {
|
||||
if (nb_tracks[set] == 0)
|
||||
|
|
Loading…
Reference in New Issue