Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DWavAnalyzer.java29 short[] shortData = new short[byteData.length >> 1]; in WavAnalyzer() local
30 ByteBuffer.wrap(byteData).order(ByteOrder.LITTLE_ENDIAN).asShortBuffer().get(shortData); in WavAnalyzer()
31 this.data = Util.toDouble(shortData); in WavAnalyzer()
/cts/tests/tests/media/src/android/media/cts/
DAudioRecordTest.java176 short[] shortData = new short[BUFFER_SIZE]; in testAudioRecordOP() local
182 mAudioRecord.read(shortData, 0, BUFFER_SIZE); in testAudioRecordOP()
558 short[] shortData = new short[BUFFER_SAMPLES]; in testSynchronizedRecord() local
564 int ret = record.read(shortData, 0, amount); in testSynchronizedRecord()
796 short[] shortData = new short[BUFFER_SAMPLES]; in doTest() local
802 int ret = blocking ? record.read(shortData, 0, amount) : in doTest()
803 record.read(shortData, 0, amount, AudioRecord.READ_NON_BLOCKING); in doTest()