Home
last modified time | relevance | path

Searched refs:playerResult (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/media/src/android/media/cts/
DDecodeAccuracyTest.java161 final SimplePlayer.PlayerResult playerResult = player.decodeVideoFrames( in decodeVideo() local
163 assertTrue("Failed to configure video decoder.", playerResult.isConfigureSuccess()); in decodeVideo()
164 assertTrue("Failed to start video decoder.", playerResult.isStartSuccess()); in decodeVideo()
165 assertTrue("Failed to decode the video.", playerResult.isSuccess()); in decodeVideo()
DDecodeAccuracyTestBase.java144 PlayerResult playerResult; in decodeVideoFrames() local
147 playerResult = decodeFramesAndDisplay( in decodeVideoFrames()
150 playerResult = PlayerResult.failToStart(); in decodeVideoFrames()
153 playerResult = new PlayerResult(); in decodeVideoFrames()
156 return new PlayerResult(playerResult); in decodeVideoFrames()
366 public PlayerResult(PlayerResult playerResult) { in PlayerResult() argument
367 this(playerResult.configureSuccess, playerResult.startSuccess, in PlayerResult()
368 playerResult.decodeSuccess, playerResult.totalTime); in PlayerResult()