Skip to content

Commit

Permalink
Merge pull request #1999 from Orange-OpenSource/subtitles_issue
Browse files Browse the repository at this point in the history
bug fix on images CMAF subtitles
  • Loading branch information
Dan Sparacio committed Jun 13, 2017
2 parents 772a8c9 + 28ec86b commit dad69a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dash/utils/FragmentedTextBoxParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function FragmentedTextBoxParser() {
sampleData.subSizes = [];
let entry = subsBox.entries[subsIndex];
for (n = 0; n < entry.subsample_count; n++) {
sampleData.subSizes.push(entry.subsamples[j].subsample_size);
sampleData.subSizes.push(entry.subsamples[n].subsample_size);
}
}
}
Expand Down

0 comments on commit dad69a0

Please sign in to comment.