com.google.android.exoplayer2.source.ShuffleOrder.DefaultShuffleOrder Java Examples

The following examples show how to use com.google.android.exoplayer2.source.ShuffleOrder.DefaultShuffleOrder. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ConcatenatingMediaSource.java    From MediaSDK with Apache License 2.0 2 votes vote down vote up
/**
 * @param isAtomic Whether the concatenating media source will be treated as atomic, i.e., treated
 *     as a single item for repeating and shuffling.
 * @param mediaSources The {@link MediaSource}s to concatenate. It is valid for the same {@link
 *     MediaSource} instance to be present more than once in the array.
 */
public ConcatenatingMediaSource(boolean isAtomic, MediaSource... mediaSources) {
  this(isAtomic, new DefaultShuffleOrder(0), mediaSources);
}
 
Example #2
Source File: ConcatenatingMediaSource.java    From TelePlus-Android with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @param isAtomic Whether the concatenating media source will be treated as atomic, i.e., treated
 *     as a single item for repeating and shuffling.
 * @param mediaSources The {@link MediaSource}s to concatenate. It is valid for the same {@link
 *     MediaSource} instance to be present more than once in the array.
 */
public ConcatenatingMediaSource(boolean isAtomic, MediaSource... mediaSources) {
  this(isAtomic, new DefaultShuffleOrder(0), mediaSources);
}
 
Example #3
Source File: ConcatenatingMediaSource.java    From TelePlus-Android with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @param isAtomic Whether the concatenating media source will be treated as atomic, i.e., treated
 *     as a single item for repeating and shuffling.
 * @param mediaSources The {@link MediaSource}s to concatenate. It is valid for the same {@link
 *     MediaSource} instance to be present more than once in the array.
 */
public ConcatenatingMediaSource(boolean isAtomic, MediaSource... mediaSources) {
  this(isAtomic, new DefaultShuffleOrder(0), mediaSources);
}
 
Example #4
Source File: ConcatenatingMediaSource.java    From Telegram-FOSS with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @param isAtomic Whether the concatenating media source will be treated as atomic, i.e., treated
 *     as a single item for repeating and shuffling.
 * @param mediaSources The {@link MediaSource}s to concatenate. It is valid for the same {@link
 *     MediaSource} instance to be present more than once in the array.
 */
public ConcatenatingMediaSource(boolean isAtomic, MediaSource... mediaSources) {
  this(isAtomic, new DefaultShuffleOrder(0), mediaSources);
}
 
Example #5
Source File: ConcatenatingMediaSource.java    From Telegram with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @param isAtomic Whether the concatenating media source will be treated as atomic, i.e., treated
 *     as a single item for repeating and shuffling.
 * @param mediaSources The {@link MediaSource}s to concatenate. It is valid for the same {@link
 *     MediaSource} instance to be present more than once in the array.
 */
public ConcatenatingMediaSource(boolean isAtomic, MediaSource... mediaSources) {
  this(isAtomic, new DefaultShuffleOrder(0), mediaSources);
}