Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/org/hyphonate/megaaudio/duplex/
DDuplexAudioManager.java137 int playerResult = StreamBase.OK; in stop() local
141 playerResult = result1 != StreamBase.OK ? result1 : result2; in stop()
151 return playerResult != StreamBase.OK ? playerResult: recorderResult; in stop()
/cts/tests/tests/media/src/android/media/cts/
DDecodeAccuracyTest.java256 final SimplePlayer.PlayerResult playerResult = player.decodeVideoFrames( in decodeVideo() local
258 assertTrue(playerResult.getFailureMessage(), playerResult.isSuccess()); in decodeVideo()
DDecodeAccuracyTestBase.java183 PlayerResult playerResult; in decodeVideoFrames() local
188 playerResult = decodeFramesAndPlay(numOfTotalFrames, timeout, msPerFrameCap); in decodeVideoFrames()
190 playerResult = PlayerResult.failToStart(); in decodeVideoFrames()
193 playerResult = new PlayerResult(); in decodeVideoFrames()
198 return new PlayerResult(playerResult); in decodeVideoFrames()
545 public PlayerResult(PlayerResult playerResult) { in PlayerResult() argument
546 this(playerResult.configureSuccess, playerResult.startSuccess, in PlayerResult()
547 playerResult.decodeSuccess, playerResult.totalTime); in PlayerResult()