当前位置: 首页>>代码示例>>Java>>正文


Java DefaultAllocator类代码示例

本文整理汇总了Java中com.google.android.exoplayer2.upstream.DefaultAllocator的典型用法代码示例。如果您正苦于以下问题:Java DefaultAllocator类的具体用法?Java DefaultAllocator怎么用?Java DefaultAllocator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DefaultAllocator类属于com.google.android.exoplayer2.upstream包,在下文中一共展示了DefaultAllocator类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: DefaultLoadControl

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
/**
 * Constructs a new instance.
 *
 * @param allocator The {@link DefaultAllocator} used by the loader.
 * @param minBufferMs The minimum duration of media that the player will attempt to ensure is
 *     buffered at all times, in milliseconds.
 * @param maxBufferMs The maximum duration of media that the player will attempt buffer, in
 *     milliseconds.
 * @param bufferForPlaybackMs The duration of media that must be buffered for playback to start or
 *     resume following a user action such as a seek, in milliseconds.
 * @param bufferForPlaybackAfterRebufferMs The default duration of media that must be buffered for
 *     playback to resume after a rebuffer, in milliseconds. A rebuffer is defined to be caused by
 *     buffer depletion rather than a user action.
 * @param targetBufferBytes The target buffer size in bytes. If set to {@link C#LENGTH_UNSET}, the
 *     target buffer size will be calculated using {@link #calculateTargetBufferSize(Renderer[],
 *     TrackSelectionArray)}.
 * @param prioritizeTimeOverSizeThresholds Whether the load control prioritizes buffer time
 */
public DefaultLoadControl(
    DefaultAllocator allocator,
    int minBufferMs,
    int maxBufferMs,
    int bufferForPlaybackMs,
    int bufferForPlaybackAfterRebufferMs,
    int targetBufferBytes,
    boolean prioritizeTimeOverSizeThresholds) {
  this(
      allocator,
      minBufferMs,
      maxBufferMs,
      bufferForPlaybackMs,
      bufferForPlaybackAfterRebufferMs,
      targetBufferBytes,
      prioritizeTimeOverSizeThresholds,
      null);
}
 
开发者ID:y20k,项目名称:transistor,代码行数:37,代码来源:DefaultLoadControl.java

示例2: createExoPlayer

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
private void createExoPlayer() {

        if (mExoPlayer != null) {
            releaseExoPlayer();
        }

        // create default TrackSelector
        TrackSelector trackSelector = new DefaultTrackSelector();

        // create default LoadControl - double the buffer
        LoadControl loadControl = new DefaultLoadControl(new DefaultAllocator(true, C.DEFAULT_BUFFER_SEGMENT_SIZE * 2));

        // create the player
        mExoPlayer = ExoPlayerFactory.newSimpleInstance(new DefaultRenderersFactory(getApplicationContext()), trackSelector, loadControl);
    }
 
开发者ID:sanjaysingh1990,项目名称:Exoplayer2Radio,代码行数:16,代码来源:PlayerService.java

示例3: getNewLoadControl

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
private static LoadControl getNewLoadControl() {
	return new DefaultLoadControl(
		new DefaultAllocator(false, C.DEFAULT_BUFFER_SEGMENT_SIZE),
		DefaultLoadControl.DEFAULT_MIN_BUFFER_MS,
		maxBufferMs.getObject(),
		DefaultLoadControl.DEFAULT_BUFFER_FOR_PLAYBACK_MS,
		DefaultLoadControl.DEFAULT_BUFFER_FOR_PLAYBACK_AFTER_REBUFFER_MS,
		DefaultLoadControl.DEFAULT_TARGET_BUFFER_BYTES,
		DefaultLoadControl.DEFAULT_PRIORITIZE_TIME_OVER_SIZE_THRESHOLDS);
}
 
开发者ID:danrien,项目名称:projectBlue,代码行数:11,代码来源:ExoPlayerPlayableFilePreparationSourceProvider.java

示例4: setUp

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
  allocator = new DefaultAllocator(false, ALLOCATION_SIZE);
  sampleQueue = new SampleQueue(allocator);
  formatHolder = new FormatHolder();
  inputBuffer = new DecoderInputBuffer(DecoderInputBuffer.BUFFER_REPLACEMENT_MODE_NORMAL);
}
 
开发者ID:y20k,项目名称:transistor,代码行数:8,代码来源:SampleQueueTest.java

示例5: createPlayer

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
private void createPlayer() {

        if (mPlayer != null) {
            releasePlayer();
        }

        // create default TrackSelector
        TrackSelector trackSelector = new DefaultTrackSelector();

        // create default LoadControl - double the buffer
        LoadControl loadControl = new DefaultLoadControl(new DefaultAllocator(true, C.DEFAULT_BUFFER_SEGMENT_SIZE * 2));

        // create the player
        mPlayer = ExoPlayerFactory.newSimpleInstance(new DefaultRenderersFactory(getApplicationContext()), trackSelector, loadControl);
    }
 
开发者ID:y20k,项目名称:transistor,代码行数:16,代码来源:PlayerService.java

示例6: BufferingLoadControl

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
/**
 * Instantiates a new Buffering load control.
 */
public BufferingLoadControl() {
    this(new DefaultAllocator(true, C.DEFAULT_BUFFER_SEGMENT_SIZE));
}
 
开发者ID:yangchaojiang,项目名称:yjPlay,代码行数:7,代码来源:BufferingLoadControl.java

示例7: PreviewLoadControl

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
public PreviewLoadControl() {
    allocator = new DefaultAllocator(true, C.DEFAULT_BUFFER_SEGMENT_SIZE);
}
 
开发者ID:hongcwamazing,项目名称:PreviewSeekBar-master,代码行数:4,代码来源:PreviewLoadControl.java

示例8: DefaultLoadControl

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
/**
 * Constructs a new instance, using the {@code DEFAULT_*} constants defined in this class.
 */
public DefaultLoadControl() {
  this(new DefaultAllocator(true, C.DEFAULT_BUFFER_SEGMENT_SIZE));
}
 
开发者ID:sanjaysingh1990,项目名称:Exoplayer2Radio,代码行数:7,代码来源:DefaultLoadControl.java

示例9: createExoPlayer

import com.google.android.exoplayer2.upstream.DefaultAllocator; //导入依赖的package包/类
private void createExoPlayer() {

        if (mExoPlayer != null) {
            releaseExoPlayer();
        }

        DefaultRenderersFactory renderersFactory = new DefaultRenderersFactory(this, null, DefaultRenderersFactory.EXTENSION_RENDERER_MODE_OFF);

        TrackSelector trackSelector = new DefaultTrackSelector();

        LoadControl loadControl = new DefaultLoadControl(new DefaultAllocator(true, C.DEFAULT_BUFFER_SEGMENT_SIZE * 2));

        mExoPlayer = ExoPlayerFactory.newSimpleInstance(renderersFactory, trackSelector, loadControl);
    }
 
开发者ID:Old-Geek,项目名称:Radio2,代码行数:15,代码来源:RadioService.java


注:本文中的com.google.android.exoplayer2.upstream.DefaultAllocator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。