Searched refs:playerResult (Results 1 – 2 of 2) sorted by relevance
161 final SimplePlayer.PlayerResult playerResult = player.decodeVideoFrames( in decodeVideo() local163 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()
144 PlayerResult playerResult; in decodeVideoFrames() local147 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() argument367 this(playerResult.configureSuccess, playerResult.startSuccess, in PlayerResult()368 playerResult.decodeSuccess, playerResult.totalTime); in PlayerResult()