Skip to content
Snippets Groups Projects
Commit f71c98ee authored by Moritz Barsnick's avatar Moritz Barsnick Committed by Michael Niedermayer
Browse files

tools: fix grammar error

parent 7ba7b96d
No related branches found
No related tags found
No related merge requests found
...@@ -375,7 +375,7 @@ static int read_tfra(struct Tracks *tracks, int start_index, AVIOContext *f) ...@@ -375,7 +375,7 @@ static int read_tfra(struct Tracks *tracks, int start_index, AVIOContext *f)
track->duration - track->duration -
track->offsets[track->chunks - 1].time; 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++) { for (i = 0; i < track->chunks; i++) {
int64_t duration = read_moof_duration(f, track->offsets[i].offset); int64_t duration = read_moof_duration(f, track->offsets[i].offset);
if (duration > 0 && llabs(duration - track->offsets[i].duration) > 3) { if (duration > 0 && llabs(duration - track->offsets[i].duration) > 3) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment