mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
#1583 - Correcting comment in TtmlNode#getCues()
This commit is contained in:
parent
254a586e27
commit
eafca5402a
1 changed files with 2 additions and 2 deletions
|
|
@ -191,7 +191,7 @@ import java.util.TreeSet;
|
|||
|
||||
List<Cue> cues = new ArrayList<>();
|
||||
|
||||
// Create text based cues
|
||||
// Create image based cues
|
||||
for (Pair<String, String> regionImagePair : regionImageList) {
|
||||
String base64 = imageMap.get(regionImagePair.second);
|
||||
byte[] decodedString = Base64.decode(base64, Base64.DEFAULT);
|
||||
|
|
@ -210,7 +210,7 @@ import java.util.TreeSet;
|
|||
);
|
||||
}
|
||||
|
||||
// Create image based cues
|
||||
// Create text based cues
|
||||
for (Entry<String, SpannableStringBuilder> entry : regionOutputs.entrySet()) {
|
||||
TtmlRegion region = regionMap.get(entry.getKey());
|
||||
cues.add(
|
||||
|
|
|
|||
Loading…
Reference in a new issue