Skip to content

Commit

Permalink
bug fix on images CMAF subtitles images : subtitles were cut for the …
Browse files Browse the repository at this point in the history
…stream http://vm2.dashif.org/dash/vod/testpic_2s/imsc1_img.mpd

it's a regression after PR 1954
  • Loading branch information
nicosang committed Jun 12, 2017
1 parent 1f68ce7 commit 28ec86b
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 28ec86b

Please sign in to comment.