mirror of
https://github.com/androidx/media.git
synced 2025-05-13 18:50:02 +08:00
Removed unused parameter.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=121102072
This commit is contained in:
parent
f0e6fff011
commit
c2bd01a756
@ -378,7 +378,7 @@ public final class Eia608Parser implements
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean handleCtrl(byte cc1, byte cc2) {
|
private boolean handleCtrl(byte cc1, byte cc2) {
|
||||||
boolean isRepeatableControl = isRepeatable(cc1, cc2);
|
boolean isRepeatableControl = isRepeatable(cc1);
|
||||||
if (isRepeatableControl && repeatableControlSet
|
if (isRepeatableControl && repeatableControlSet
|
||||||
&& repeatableControlCc1 == cc1
|
&& repeatableControlCc1 == cc1
|
||||||
&& repeatableControlCc2 == cc2) {
|
&& repeatableControlCc2 == cc2) {
|
||||||
@ -533,7 +533,7 @@ public final class Eia608Parser implements
|
|||||||
return (cc1 >= 0x10 && cc1 <= 0x1F) && (cc2 >= 0x40 && cc2 <= 0x7F);
|
return (cc1 >= 0x10 && cc1 <= 0x1F) && (cc2 >= 0x40 && cc2 <= 0x7F);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean isRepeatable(byte cc1, byte cc2) {
|
private static boolean isRepeatable(byte cc1) {
|
||||||
return cc1 >= 0x10 && cc1 <= 0x1F;
|
return cc1 >= 0x10 && cc1 <= 0x1F;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user