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.java244 int playerResult = StreamBase.OK; in stop() local
248 playerResult = result1 != StreamBase.OK ? result1 : result2; in stop()
258 int ret = playerResult != StreamBase.OK ? playerResult : recorderResult; in stop()
/cts/tests/tests/media/decoder/src/android/media/decoder/cts/
DDecodeAccuracyTest.java298 final SimplePlayer.PlayerResult playerResult = player.decodeVideoFrames( in decodeVideo() local
300 assertTrue(playerResult.getFailureMessage(), playerResult.isSuccess()); in decodeVideo()
DDecodeAccuracyTestBase.java184 PlayerResult playerResult; in decodeVideoFrames() local
189 playerResult = decodeFramesAndPlay(numOfTotalFrames, timeout, msPerFrameCap); in decodeVideoFrames()
191 playerResult = PlayerResult.failToStart(); in decodeVideoFrames()
194 playerResult = new PlayerResult(); in decodeVideoFrames()
199 return new PlayerResult(playerResult); in decodeVideoFrames()
548 public PlayerResult(PlayerResult playerResult) { in PlayerResult() argument
549 this(playerResult.configureSuccess, playerResult.startSuccess, in PlayerResult()
550 playerResult.decodeSuccess, playerResult.totalTime); in PlayerResult()