Defect fix

Defect fix
This commit is contained in:
sridhar 2018-12-20 11:01:13 +05:30
parent 5dce3e2161
commit 756bbc96f0

View File

@ -870,14 +870,16 @@ class ReactExoplayerView extends FrameLayout implements
/*0 is auto mode. Add all tracks of group 0*/ /*0 is auto mode. Add all tracks of group 0*/
if (0 == value.asInt()) { if (0 == value.asInt()) {
TrackGroup group = groups.get(0); if (groups.length > 0) {
TrackGroup group = groups.get(0);
tracks = new int[group.length]; tracks = new int[group.length];
groupIndex = 0; groupIndex = 0;
for (int j = 0; j < group.length; j++) { for (int j = 0; j < group.length; j++) {
tracks[j] = j; tracks[j] = j;
}
} }
} else { } else {
/*Search for the exact video Height*/ /*Search for the exact video Height*/