Commit ce55587d by Rik Heijdens

Fixed comment

Alpha is stored in the first byte of an integer
parent 8b2af124
...@@ -224,7 +224,7 @@ public final class Eia608Decoder implements SubtitleDecoder { ...@@ -224,7 +224,7 @@ public final class Eia608Decoder implements SubtitleDecoder {
Color.BLACK // Only used by Mid Row style changes, for PAC an value of 0x7 means italics. Color.BLACK // Only used by Mid Row style changes, for PAC an value of 0x7 means italics.
}; };
// Transparency is defined in the two left most bytes of an integer. // Transparency is defined in the first byte of an integer.
private static final int TRANSPARENCY_MASK = 0x80FFFFFF; private static final int TRANSPARENCY_MASK = 0x80FFFFFF;
private static final int STYLE_ITALIC = Typeface.ITALIC; private static final int STYLE_ITALIC = Typeface.ITALIC;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment