Merge pull request #7408 from Redirion/fixedautotransition2

Fixed Period Transition
pull/7418/head
Robin 2021-11-15 19:59:42 +01:00 zatwierdzone przez GitHub
commit 72dfe974ab
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -2448,6 +2448,7 @@ public final class Player implements
// Refresh the playback if there is a transition to the next video // Refresh the playback if there is a transition to the next video
final int newWindowIndex = simpleExoPlayer.getCurrentWindowIndex(); final int newWindowIndex = simpleExoPlayer.getCurrentWindowIndex();
switch (discontinuityReason) { switch (discontinuityReason) {
case DISCONTINUITY_REASON_AUTO_TRANSITION:
case DISCONTINUITY_REASON_REMOVE: case DISCONTINUITY_REASON_REMOVE:
// When player is in single repeat mode and a period transition occurs, // When player is in single repeat mode and a period transition occurs,
// we need to register a view count here since no metadata has changed // we need to register a view count here since no metadata has changed
@ -2470,7 +2471,6 @@ public final class Player implements
} }
break; break;
case DISCONTINUITY_REASON_SKIP: case DISCONTINUITY_REASON_SKIP:
case DISCONTINUITY_REASON_AUTO_TRANSITION:
break; // only makes Android Studio linter happy, as there are no ads break; // only makes Android Studio linter happy, as there are no ads
} }