mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
3daeac65cd
Close #8508 --------- Co-authored-by: Wojciech Tyczyński <tykus160@gmail.com>
24 lines
516 B
JavaScript
24 lines
516 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.provide('shaka.config.RepeatMode');
|
|
|
|
/**
|
|
* @enum {number}
|
|
* @export
|
|
*/
|
|
shaka.config.RepeatMode = {
|
|
/** When the queue is completed the media session is terminated. */
|
|
'OFF': 0,
|
|
/**
|
|
* All the items in the queue will be played indefinitely, when the last item
|
|
* is played it will play the first item again.
|
|
*/
|
|
'ALL': 1,
|
|
/** The current item will be played repeatedly. */
|
|
'SINGLE': 2,
|
|
};
|