Merge pull request #1529 from Mrjaco12/master

Fix Android audio crash fixes Issue #1417
This commit is contained in:
Hampton Maxwell 2019-04-03 23:27:51 -07:00 committed by GitHub
commit c12e9d8361
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -975,8 +975,8 @@ class ReactExoplayerView extends FrameLayout implements
groupIndex = getGroupIndexForDefaultLocale(groups);
}
if (groupIndex == C.INDEX_UNSET && trackType == C.TRACK_TYPE_VIDEO) { // Video auto
if (groups.length != 0) {
if (groupIndex == C.INDEX_UNSET && trackType == C.TRACK_TYPE_VIDEO && groups.length != 0) { // Video auto
// Add all tracks as valid options for ABR to choose from
TrackGroup group = groups.get(0);
tracks = new int[group.length];
groupIndex = 0;
@ -984,7 +984,8 @@ class ReactExoplayerView extends FrameLayout implements
tracks[j] = j;
}
}
} else if (groupIndex == C.INDEX_UNSET) {
if (groupIndex == C.INDEX_UNSET) {
trackSelector.setParameters(disableParameters);
return;
}