summaryrefslogtreecommitdiff
authorMichael Niedermayer <michaelni@gmx.at>2013-10-05 09:28:58 (GMT)
committer Michael Niedermayer <michaelni@gmx.at>2013-10-05 09:29:02 (GMT)
commit47a57c6832d008f676837a9ee5f3a45b828c9ca1 (patch)
tree61d8786e0f0560e97cc7c1cf1353ce6bb5663464
parent5de251a3e32e75c01bfc0c66be628fb9f07fdd04 (diff)
parent583a287f6f48f263859df142e6f90993e4217c72 (diff)
downloadffmpeg-47a57c6832d008f676837a9ee5f3a45b828c9ca1.zip
ffmpeg-47a57c6832d008f676837a9ee5f3a45b828c9ca1.tar.gz
ffmpeg-47a57c6832d008f676837a9ee5f3a45b828c9ca1.tar.bz2
Merge commit '583a287f6f48f263859df142e6f90993e4217c72'
* commit '583a287f6f48f263859df142e6f90993e4217c72': ismindex: Calculate the file duration among the included tracks Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat
-rw-r--r--tools/ismindex.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/ismindex.c b/tools/ismindex.c
index 9b4d571..b187790 100644
--- a/tools/ismindex.c
+++ b/tools/ismindex.c
@@ -298,8 +298,6 @@ static int handle_file(struct Tracks *tracks, const char *file, int split)
fprintf(stderr, "No streams found in %s\n", file);
goto fail;
}
- if (!tracks->duration)
- tracks->duration = ctx->duration;
for (i = 0; i < ctx->nb_streams; i++) {
struct Track **temp;
@@ -338,6 +336,10 @@ static int handle_file(struct Tracks *tracks, const char *file, int split)
continue;
}
+ tracks->duration = FFMAX(tracks->duration,
+ av_rescale_rnd(track->duration, AV_TIME_BASE,
+ track->timescale, AV_ROUND_UP));
+
if (track->is_audio) {
if (tracks->audio_track < 0)
tracks->audio_track = tracks->nb_tracks;