/external/skia/tests/ |
D | SkVMDebugTracePlayerTest.cpp | 42 const SkSL::SkVMDebugTracePlayer& player) { in make_stack_string() argument 43 std::vector<int> callStack = player.getCallStack(); in make_stack_string() 86 const SkSL::SkVMDebugTracePlayer& player) { in make_local_vars_string() argument 87 int frame = player.getStackDepth() - 1; in make_local_vars_string() 88 return make_vars_string(trace, player.getLocalVariables(frame)); in make_local_vars_string() 92 const SkSL::SkVMDebugTracePlayer& player) { in make_global_vars_string() argument 93 return make_vars_string(trace, player.getGlobalVariables()); in make_global_vars_string() 103 SkSL::SkVMDebugTracePlayer player; in DEF_TEST() local 104 player.reset(trace); in DEF_TEST() 107 REPORTER_ASSERT(r, player.cursor() == 0); in DEF_TEST() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/ |
D | ForwardingPlayer.java | 32 * A {@link Player} that forwards operations to another {@link Player}. Applications can use this 35 public class ForwardingPlayer implements Player { 37 private final Player player; field in ForwardingPlayer 39 /** Creates a new instance that forwards all operations to {@code player}. */ 40 public ForwardingPlayer(Player player) { in ForwardingPlayer() argument 41 this.player = player; in ForwardingPlayer() 44 /** Calls {@link Player#getApplicationLooper()} on the delegate and returns the result. */ 47 return player.getApplicationLooper(); in getApplicationLooper() 50 /** Calls {@link Player#addListener(Listener)} on the delegate. */ 53 player.addListener(new ForwardingListener(this, listener)); in addListener() [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/robolectricutils/src/main/java/com/google/android/exoplayer2/robolectric/ |
D | TestPlayerRunHelper.java | 25 import com.google.android.exoplayer2.Player; 43 * Runs tasks of the main {@link Looper} until {@link Player#getPlaybackState()} matches the 48 * @param player The {@link Player}. 49 * @param expectedState The expected {@link Player.State}. 53 public static void runUntilPlaybackState(Player player, @Player.State int expectedState) in runUntilPlaybackState() argument 55 verifyMainTestThread(player); in runUntilPlaybackState() 57 () -> player.getPlaybackState() == expectedState || player.getPlayerError() != null); in runUntilPlaybackState() 58 if (player.getPlayerError() != null) { in runUntilPlaybackState() 59 throw new IllegalStateException(player.getPlayerError()); in runUntilPlaybackState() 64 * Runs tasks of the main {@link Looper} until {@link Player#getPlayWhenReady()} matches the [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/robolectricutils/src/main/java/com/google/android/exoplayer2/robolectric/ |
D | TestPlayerRunHelper.java | 25 import com.google.android.exoplayer2.Player; 43 * Runs tasks of the main {@link Looper} until {@link Player#getPlaybackState()} matches the 48 * @param player The {@link Player}. 49 * @param expectedState The expected {@link Player.State}. 53 public static void runUntilPlaybackState(Player player, @Player.State int expectedState) in runUntilPlaybackState() argument 55 verifyMainTestThread(player); in runUntilPlaybackState() 57 () -> player.getPlaybackState() == expectedState || player.getPlayerError() != null); in runUntilPlaybackState() 58 if (player.getPlayerError() != null) { in runUntilPlaybackState() 59 throw new IllegalStateException(player.getPlayerError()); in runUntilPlaybackState() 64 * Runs tasks of the main {@link Looper} until {@link Player#getPlayWhenReady()} matches the [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/ |
D | ForwardingPlayer.java | 34 * A {@link Player} that forwards operations to another {@link Player}. Applications can use this 37 public class ForwardingPlayer implements Player { 39 private final Player player; field in ForwardingPlayer 41 /** Creates a new instance that forwards all operations to {@code player}. */ 42 public ForwardingPlayer(Player player) { in ForwardingPlayer() argument 43 this.player = player; in ForwardingPlayer() 48 return player.getApplicationLooper(); in getApplicationLooper() 53 player.addListener(new ForwardingListener(this, listener)); in addListener() 58 player.removeListener(new ForwardingListener(this, listener)); in removeListener() 63 player.setMediaItems(mediaItems); in setMediaItems() [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/test/java/com/google/android/exoplayer2/ |
D | ExoPlayerTest.java | 18 import static com.google.android.exoplayer2.Player.COMMAND_ADJUST_DEVICE_VOLUME; 19 import static com.google.android.exoplayer2.Player.COMMAND_CHANGE_MEDIA_ITEMS; 20 import static com.google.android.exoplayer2.Player.COMMAND_GET_AUDIO_ATTRIBUTES; 21 import static com.google.android.exoplayer2.Player.COMMAND_GET_CURRENT_MEDIA_ITEM; 22 import static com.google.android.exoplayer2.Player.COMMAND_GET_DEVICE_VOLUME; 23 import static com.google.android.exoplayer2.Player.COMMAND_GET_MEDIA_ITEMS_METADATA; 24 import static com.google.android.exoplayer2.Player.COMMAND_GET_TEXT; 25 import static com.google.android.exoplayer2.Player.COMMAND_GET_TIMELINE; 26 import static com.google.android.exoplayer2.Player.COMMAND_GET_TRACK_INFOS; 27 import static com.google.android.exoplayer2.Player.COMMAND_GET_VOLUME; [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/test/java/com/google/android/exoplayer2/ |
D | ExoPlayerTest.java | 18 import static com.google.android.exoplayer2.Player.COMMAND_ADJUST_DEVICE_VOLUME; 19 import static com.google.android.exoplayer2.Player.COMMAND_CHANGE_MEDIA_ITEMS; 20 import static com.google.android.exoplayer2.Player.COMMAND_GET_AUDIO_ATTRIBUTES; 21 import static com.google.android.exoplayer2.Player.COMMAND_GET_CURRENT_MEDIA_ITEM; 22 import static com.google.android.exoplayer2.Player.COMMAND_GET_DEVICE_VOLUME; 23 import static com.google.android.exoplayer2.Player.COMMAND_GET_MEDIA_ITEMS_METADATA; 24 import static com.google.android.exoplayer2.Player.COMMAND_GET_TEXT; 25 import static com.google.android.exoplayer2.Player.COMMAND_GET_TIMELINE; 26 import static com.google.android.exoplayer2.Player.COMMAND_GET_TRACK_INFOS; 27 import static com.google.android.exoplayer2.Player.COMMAND_GET_VOLUME; [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/media2/src/main/java/com/google/android/exoplayer2/ext/media2/ |
D | PlayerWrapper.java | 18 import static com.google.android.exoplayer2.Player.COMMAND_GET_AUDIO_ATTRIBUTES; 19 import static com.google.android.exoplayer2.Player.COMMAND_PLAY_PAUSE; 20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM; 21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_MEDIA_ITEM; 22 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_NEXT; 23 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_PREVIOUS; 24 import static com.google.android.exoplayer2.Player.COMMAND_SET_REPEAT_MODE; 25 import static com.google.android.exoplayer2.Player.COMMAND_SET_SHUFFLE_MODE; 39 import com.google.android.exoplayer2.Player; 51 * Wraps an ExoPlayer {@link Player} instance and provides methods and notifies events like those in [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/media2/src/main/java/com/google/android/exoplayer2/ext/media2/ |
D | PlayerWrapper.java | 18 import static com.google.android.exoplayer2.Player.COMMAND_GET_AUDIO_ATTRIBUTES; 19 import static com.google.android.exoplayer2.Player.COMMAND_PLAY_PAUSE; 20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM; 21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_MEDIA_ITEM; 22 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_NEXT; 23 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_PREVIOUS; 24 import static com.google.android.exoplayer2.Player.COMMAND_SET_REPEAT_MODE; 25 import static com.google.android.exoplayer2.Player.COMMAND_SET_SHUFFLE_MODE; 39 import com.google.android.exoplayer2.Player; 51 * Wraps an ExoPlayer {@link Player} instance and provides methods and notifies events like those in [all …]
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/ |
D | ControlDispatcher.java | 18 import com.google.android.exoplayer2.Player.RepeatMode; 21 * Dispatches operations to the {@link Player}. 30 * Dispatches a {@link Player#setPlayWhenReady(boolean)} operation. 32 * @param player The {@link Player} to which the operation should be dispatched. 36 boolean dispatchSetPlayWhenReady(Player player, boolean playWhenReady); in dispatchSetPlayWhenReady() argument 39 * Dispatches a {@link Player#seekTo(int, long)} operation. 41 * @param player The {@link Player} to which the operation should be dispatched. 47 boolean dispatchSeekTo(Player player, int windowIndex, long positionMs); in dispatchSeekTo() argument 50 * Dispatches a {@link Player#previous()} operation. 52 * @param player The {@link Player} to which the operation should be dispatched. [all …]
|
D | DefaultControlDispatcher.java | 53 public boolean dispatchSetPlayWhenReady(Player player, boolean playWhenReady) { in dispatchSetPlayWhenReady() argument 54 player.setPlayWhenReady(playWhenReady); in dispatchSetPlayWhenReady() 59 public boolean dispatchSeekTo(Player player, int windowIndex, long positionMs) { in dispatchSeekTo() argument 60 player.seekTo(windowIndex, positionMs); in dispatchSeekTo() 65 public boolean dispatchPrevious(Player player) { in dispatchPrevious() argument 66 Timeline timeline = player.getCurrentTimeline(); in dispatchPrevious() 67 if (timeline.isEmpty() || player.isPlayingAd()) { in dispatchPrevious() 70 int windowIndex = player.getCurrentWindowIndex(); in dispatchPrevious() 72 int previousWindowIndex = player.getPreviousWindowIndex(); in dispatchPrevious() 74 && (player.getCurrentPosition() <= MAX_POSITION_FOR_SEEK_TO_PREVIOUS in dispatchPrevious() [all …]
|
/external/exoplayer/tree/extensions/mediasession/src/main/java/com/google/android/exoplayer2/ext/mediasession/ |
D | MediaSessionConnector.java | 41 import com.google.android.exoplayer2.Player; 57 * Connects a {@link MediaSessionCompat} to a {@link Player}. 65 * actions by calling appropriate player methods. The playback state of the media session is 66 * automatically synced with the player. The connector can also be optionally extended by providing 131 * Player#getPlaybackSpeed()}. 155 * receiver may handle the command, but is not required to do so. Changes to the player should 158 * @param player The player connected to the media session. 160 * changes to the player. 167 Player player, in onCommand() argument 248 * @param player The player connected to the media session. [all …]
|
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/ |
D | ExoPlayerTest.java | 35 import com.google.android.exoplayer2.Player.DiscontinuityReason; 36 import com.google.android.exoplayer2.Player.EventListener; 111 * For tests that rely on the player transitioning to the ended state, the duration in 112 * milliseconds after starting the player before the test will time out. This is to catch cases 113 * where the player under test is not making progress, in which case the test should fail. 145 Player.TIMELINE_CHANGE_REASON_PLAYLIST_CHANGED, in playEmptyTimeline() 146 Player.TIMELINE_CHANGE_REASON_SOURCE_UPDATE); in playEmptyTimeline() 169 Player.TIMELINE_CHANGE_REASON_PLAYLIST_CHANGED, in playSinglePeriodTimeline() 170 Player.TIMELINE_CHANGE_REASON_SOURCE_UPDATE); in playSinglePeriodTimeline() 191 Player.DISCONTINUITY_REASON_PERIOD_TRANSITION, in playMultiPeriodTimeline() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testutils/src/main/java/com/google/android/exoplayer2/testutil/ |
D | Action.java | 27 import com.google.android.exoplayer2.Player; 68 * @param player The player to which the action should be applied. 77 ExoPlayer player, in doActionAndScheduleNext() argument 85 doActionAndScheduleNextImpl(player, trackSelector, surface, handler, nextAction); in doActionAndScheduleNext() 92 * @param player The player to which the action should be applied. 101 ExoPlayer player, in doActionAndScheduleNextImpl() argument 106 doActionImpl(player, trackSelector, surface); in doActionAndScheduleNextImpl() 108 nextAction.schedule(player, trackSelector, surface, handler); in doActionAndScheduleNextImpl() 116 * @param player The player to which the action should be applied. 122 ExoPlayer player, DefaultTrackSelector trackSelector, @Nullable Surface surface); in doActionImpl() argument [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/main/java/com/google/android/exoplayer2/testutil/ |
D | Action.java | 27 import com.google.android.exoplayer2.Player; 68 * @param player The player to which the action should be applied. 77 ExoPlayer player, in doActionAndScheduleNext() argument 85 doActionAndScheduleNextImpl(player, trackSelector, surface, handler, nextAction); in doActionAndScheduleNext() 92 * @param player The player to which the action should be applied. 101 ExoPlayer player, in doActionAndScheduleNextImpl() argument 106 doActionImpl(player, trackSelector, surface); in doActionAndScheduleNextImpl() 108 nextAction.schedule(player, trackSelector, surface, handler); in doActionAndScheduleNextImpl() 116 * @param player The player to which the action should be applied. 122 ExoPlayer player, DefaultTrackSelector trackSelector, @Nullable Surface surface); in doActionImpl() argument [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/mediasession/src/main/java/com/google/android/exoplayer2/ext/mediasession/ |
D | MediaSessionConnector.java | 19 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_BACK; 20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_FORWARD; 21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM; 22 import static com.google.android.exoplayer2.Player.EVENT_IS_PLAYING_CHANGED; 23 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_PARAMETERS_CHANGED; 24 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_STATE_CHANGED; 25 import static com.google.android.exoplayer2.Player.EVENT_PLAY_WHEN_READY_CHANGED; 26 import static com.google.android.exoplayer2.Player.EVENT_REPEAT_MODE_CHANGED; 27 import static com.google.android.exoplayer2.Player.EVENT_SHUFFLE_MODE_ENABLED_CHANGED; 51 import com.google.android.exoplayer2.Player; [all …]
|
D | TimelineQueueNavigator.java | 18 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM; 19 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_NEXT_MEDIA_ITEM; 20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_PREVIOUS_MEDIA_ITEM; 30 import com.google.android.exoplayer2.Player; 39 * windows of a {@link Player}'s {@link Timeline} to the media session queue. 65 * <p>If the number of windows in the {@link Player}'s {@link Timeline} exceeds {@code 88 * @param player The current player. 92 public abstract MediaDescriptionCompat getMediaDescription(Player player, int windowIndex); in getMediaDescription() argument 95 public long getSupportedQueueNavigatorActions(Player player) { in getSupportedQueueNavigatorActions() argument 99 Timeline timeline = player.getCurrentTimeline(); in getSupportedQueueNavigatorActions() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/mediasession/src/main/java/com/google/android/exoplayer2/ext/mediasession/ |
D | MediaSessionConnector.java | 19 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_BACK; 20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_FORWARD; 21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM; 22 import static com.google.android.exoplayer2.Player.EVENT_IS_PLAYING_CHANGED; 23 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_PARAMETERS_CHANGED; 24 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_STATE_CHANGED; 25 import static com.google.android.exoplayer2.Player.EVENT_PLAY_WHEN_READY_CHANGED; 26 import static com.google.android.exoplayer2.Player.EVENT_REPEAT_MODE_CHANGED; 27 import static com.google.android.exoplayer2.Player.EVENT_SHUFFLE_MODE_ENABLED_CHANGED; 51 import com.google.android.exoplayer2.Player; [all …]
|
D | TimelineQueueNavigator.java | 18 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM; 19 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_NEXT_MEDIA_ITEM; 20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_PREVIOUS_MEDIA_ITEM; 30 import com.google.android.exoplayer2.Player; 39 * windows of a {@link Player}'s {@link Timeline} to the media session queue. 65 * <p>If the number of windows in the {@link Player}'s {@link Timeline} exceeds {@code 88 * @param player The current player. 92 public abstract MediaDescriptionCompat getMediaDescription(Player player, int windowIndex); in getMediaDescription() argument 95 public long getSupportedQueueNavigatorActions(Player player) { in getSupportedQueueNavigatorActions() argument 99 Timeline timeline = player.getCurrentTimeline(); in getSupportedQueueNavigatorActions() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/ |
D | SimpleExoPlayer.java | 356 private final ExoPlayerImpl player; field in SimpleExoPlayer 401 player = new ExoPlayerImpl(builder, /* wrappingPlayer= */ this); in SimpleExoPlayer() 410 player.experimentalSetOffloadSchedulingEnabled(offloadSchedulingEnabled); in experimentalSetOffloadSchedulingEnabled() 416 return player.experimentalIsSleepingForOffload(); in experimentalIsSleepingForOffload() 446 player.setVideoScalingMode(videoScalingMode); in setVideoScalingMode() 452 return player.getVideoScalingMode(); in getVideoScalingMode() 459 player.setVideoChangeFrameRateStrategy(videoChangeFrameRateStrategy); in setVideoChangeFrameRateStrategy() 465 return player.getVideoChangeFrameRateStrategy(); in getVideoChangeFrameRateStrategy() 471 return player.getVideoSize(); in getVideoSize() 477 player.clearVideoSurface(); in clearVideoSurface() [all …]
|
/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/ |
D | Action.java | 25 import com.google.android.exoplayer2.Player; 65 * @param player The player to which the action should be applied. 74 SimpleExoPlayer player, in doActionAndScheduleNext() argument 82 doActionAndScheduleNextImpl(player, trackSelector, surface, handler, nextAction); in doActionAndScheduleNext() 89 * @param player The player to which the action should be applied. 98 SimpleExoPlayer player, in doActionAndScheduleNextImpl() argument 103 doActionImpl(player, trackSelector, surface); in doActionAndScheduleNextImpl() 105 nextAction.schedule(player, trackSelector, surface, handler); in doActionAndScheduleNextImpl() 113 * @param player The player to which the action should be applied. 119 SimpleExoPlayer player, DefaultTrackSelector trackSelector, @Nullable Surface surface); in doActionImpl() argument [all …]
|
D | TestExoPlayer.java | 28 import com.google.android.exoplayer2.Player; 109 /** Returns whether the player will use lazy preparation. */ 118 * @param trackSelector The {@link DefaultTrackSelector} to be used by the player. 127 /** Returns the track selector used by the player. */ 133 * Sets a {@link LoadControl} to be used by the player. The default value is a {@link 136 * @param loadControl The {@link LoadControl} to be used by the player. 144 /** Returns the {@link LoadControl} that will be used by the player. */ 153 * @param bandwidthMeter The {@link BandwidthMeter} to be used by the player. 162 /** Returns the bandwidth meter used by the player. */ 168 * Sets the {@link Renderer}s. If not set, the player will use a {@link FakeVideoRenderer} and a [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/test/java/com/google/android/exoplayer2/analytics/ |
D | PlaybackStatsListenerTest.java | 33 import com.google.android.exoplayer2.Player; 52 private ExoPlayer player; field in PlaybackStatsListenerTest 56 player = new TestExoPlayerBuilder(ApplicationProvider.getApplicationContext()).build(); in setUp() 61 player.release(); in tearDown() 68 player.addAnalyticsListener(playbackStatsListener); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 70 player.seekTo(/* positionMs= */ 1234); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 71 runUntilPendingCommandsAreFullyHandled(player); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 72 player.setPlaybackParameters(new PlaybackParameters(/* speed= */ 2f)); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 73 runUntilPendingCommandsAreFullyHandled(player); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 74 player.play(); in events_duringInitialIdleState_dontCreateNewPlaybackStats() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/test/java/com/google/android/exoplayer2/analytics/ |
D | PlaybackStatsListenerTest.java | 33 import com.google.android.exoplayer2.Player; 52 private ExoPlayer player; field in PlaybackStatsListenerTest 56 player = new TestExoPlayerBuilder(ApplicationProvider.getApplicationContext()).build(); in setUp() 61 player.release(); in tearDown() 68 player.addAnalyticsListener(playbackStatsListener); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 70 player.seekTo(/* positionMs= */ 1234); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 71 runUntilPendingCommandsAreFullyHandled(player); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 72 player.setPlaybackParameters(new PlaybackParameters(/* speed= */ 2f)); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 73 runUntilPendingCommandsAreFullyHandled(player); in events_duringInitialIdleState_dontCreateNewPlaybackStats() 74 player.play(); in events_duringInitialIdleState_dontCreateNewPlaybackStats() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/ |
D | ForwardingPlayer.html | 133 <dd><code><a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></code… 138 implements <a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></pre> 139 …Player.html" title="interface in com.google.android.exoplayer2"><code>Player</code></a> that forwa… 155 …class="blockList"><a id="nested.classes.inherited.from.class.com.google.android.exoplayer2.Player"> 158 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl… 159 …Player.Command.html" title="annotation in com.google.android.exoplayer2">Player.Command</a>, <a hr… 172 <li class="blockList"><a id="fields.inherited.from.class.com.google.android.exoplayer2.Player"> 175 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl… 176 …Player.html#COMMAND_ADJUST_DEVICE_VOLUME">COMMAND_ADJUST_DEVICE_VOLUME</a>, <a href="Player.html#C… 195 …layer2.Player)">ForwardingPlayer</a></span>​(<a href="Player.html" title="interface in com.g… [all …]
|