Home
last modified time | relevance | path

Searched refs:pcmData (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/wilhelm/tests/examples/
H A DslesTestSawtoothBufferQueue.cpp80 SLint16 pcmData[AUDIO_DATA_STORAGE_SIZE]; variable
185 for (j = 0; j < sizeof(pcmData)/sizeof(pcmData[0]); ++j) { in TestPlaySawtoothBufferQueue()
186 pcmData[j] = j*(100 + j / 200);// % 1000; in TestPlaySawtoothBufferQueue()
190 cntxt.pDataBase = /*(void*)&*/pcmData; in TestPlaySawtoothBufferQueue()
192 cntxt.size = sizeof(pcmData) / 2; in TestPlaySawtoothBufferQueue()
H A DslesTestDecodeToBuffQueue.cpp61 int8_t pcmData[NB_BUFFERS_IN_QUEUE * BUFFER_SIZE_IN_BYTES]; variable
404 cntxt.pDataBase = (int8_t*)&pcmData; in TestDecToBuffQueue()
406 cntxt.size = sizeof(pcmData); in TestDecToBuffQueue()
H A DslesTestRecBuffQueue.cpp64 int8_t pcmData[NB_BUFFERS_IN_QUEUE * BUFFER_SIZE_IN_BYTES]; variable
442 cntxt.pDataBase = (int8_t*)&pcmData; in TestRecToBuffQueue()
444 cntxt.size = sizeof(pcmData); in TestRecToBuffQueue()
H A DslesTestDecodeAac.cpp81 int8_t pcmData[NB_BUFFERS_IN_PCM_QUEUE * BUFFER_SIZE_IN_BYTES]; variable
614 sinkCntxt.pDataBase = (int8_t*)&pcmData; in TestDecToBuffQueue()
/aosp12/system/bt/embdrv/sbc/decoder/srce/
H A Ddecoder-sbc.c105 const OI_BYTE* bodyData, int16_t* pcmData, in DecodeBody() argument
165 OI_SBC_SynthFrame(context, pcmData, start_block, decode_block_count); in DecodeBody()
180 pcmData[2 * i + 1] = pcmData[2 * i]; in DecodeBody()
197 uint32_t* frameBytes, int16_t* pcmData, in internal_DecodeRaw() argument
225 status = DecodeBody(context, *frameData, pcmData, pcmBytes, TRUE); in internal_DecodeRaw()
245 uint32_t* frameBytes, int16_t* pcmData, in OI_CODEC_SBC_DecodeFrame() argument
342 status = DecodeBody(context, *frameData + SBC_HEADER_LEN, pcmData, pcmBytes, in OI_CODEC_SBC_DecodeFrame()
H A Ddecoder-oina.c95 uint32_t* frameBytes, int16_t* pcmData, in OI_CODEC_SBC_DecodeRaw() argument
97 return internal_DecodeRaw(context, bitpool, frameData, frameBytes, pcmData, in OI_CODEC_SBC_DecodeRaw()
/aosp12/system/bt/embdrv/sbc/decoder/include/
H A Doi_codec_sbc.h364 uint32_t* frameBytes, int16_t* pcmData,
395 uint32_t* frameBytes, int16_t* pcmData,
H A Doi_codec_sbc_private.h161 uint32_t* frameBytes, int16_t* pcmData,
220 PRIVATE void OI_SBC_GenerateTestSignal(int16_t pcmData[][2],