Home
last modified time | relevance | path

Searched refs:pcmBytes (Results 1 – 6 of 6) sorted by relevance

/aosp12/system/bt/embdrv/sbc/decoder/srce/
H A Ddecoder-sbc.c106 uint32_t* pcmBytes, OI_BOOL allowPartial) { in DecodeBody() argument
116 if (*pcmBytes < in DecodeBody()
123 } else if (*pcmBytes < sizeof(int16_t) * in DecodeBody()
149 decode_block_count = *pcmBytes / sizeof(int16_t) / in DecodeBody()
187 *pcmBytes = frameSamples * sizeof(int16_t) * context->common.pcmStride; in DecodeBody()
198 uint32_t* pcmBytes) { in internal_DecodeRaw() argument
225 status = DecodeBody(context, *frameData, pcmData, pcmBytes, TRUE); in internal_DecodeRaw()
246 uint32_t* pcmBytes) { 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.c96 uint32_t* pcmBytes) { in OI_CODEC_SBC_DecodeRaw() argument
98 pcmBytes); in OI_CODEC_SBC_DecodeRaw()
/aosp12/system/bt/embdrv/sbc/decoder/
H A Dsbcdecoder_fuzzer.c50 uint32_t pcmBytes, availPcmBytes; in LLVMFuzzerTestOneInput() local
55 pcmBytes = availPcmBytes; in LLVMFuzzerTestOneInput()
58 (uint32_t*)&pcmBytes); in LLVMFuzzerTestOneInput()
/aosp12/system/bt/embdrv/sbc/decoder/include/
H A Doi_codec_sbc.h365 uint32_t* pcmBytes);
396 uint32_t* pcmBytes);
H A Doi_codec_sbc_private.h162 uint32_t* pcmBytes);
/aosp12/frameworks/av/media/codec2/components/opus/
H A DC2SoftOpusEnc.cpp473 const uint8_t* pcmBytes = inPtr + inPos; in process() local
490 int32_t data = pcmBytes[2 * i + 1] << 8 | pcmBytes[2 * i]; in process()