diff options
author | Moritz Barsnick <barsnick@gmx.net> | 2016-10-09 12:56:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-10-09 20:13:30 +0200 |
commit | 6457346e6a15ed49cd146567c8cd415842daa3b9 (patch) | |
tree | 8c9d37d39e10b6491182f623f5303b7b0d95bce3 | |
parent | 27f1fb1251437038caebbd64e9f791c614028ae2 (diff) | |
download | ffmpeg-6457346e6a15ed49cd146567c8cd415842daa3b9.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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ismindex.c b/tools/ismindex.c index dfef118653..363b7eead7 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 && llabs(duration - track->offsets[i].duration) > 3) { |