aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Barsnick <barsnick@gmx.net>2016-10-09 12:56:58 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-11-26 15:12:25 +0100
commitd609986f39768f55bc67f144799c6f4466ee1c0a (patch)
tree8b53ac5c6abb45317a8a2b7830ff0527b5635a59
parentb9ec80322b5b6dc22747e6bc9d463d2bcc683c6e (diff)
downloadffmpeg-d609986f39768f55bc67f144799c6f4466ee1c0a.tar.gz
tools: fix grammar error
Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit f71c98ee12f9a9e950b4a8fb6b1548fee91ba1f8) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--tools/ismindex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ismindex.c b/tools/ismindex.c
index 8636c966e8..26b822c7c7 100644
--- a/tools/ismindex.c
+++ b/tools/ismindex.c
@@ -375,7 +375,7 @@ static int read_tfra(struct Tracks *tracks, int start_index, AVIOContext *f)
track->duration -
track->offsets[track->chunks - 1].time;
}
- // Now try and read the actual durations from the trun sample data.
+ // Now try to read the actual durations from the trun sample data.
for (i = 0; i < track->chunks; i++) {
int64_t duration = read_moof_duration(f, track->offsets[i].offset);
if (duration > 0 && abs(duration - track->offsets[i].duration) > 3) {