Searched refs:bitpool (Results 1 – 8 of 8) sorted by relevance
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/srce/ |
D | bitalloc.c | 64 OI_UINT16 nbits = frame->nrof_blocks * frame->bitpool; in internal_CalculateFramelen() 257 OI_INT adjustToFitBitpool(const OI_UINT bitpool, in adjustToFitBitpool() argument 264 OI_INT bitadjust = (bitcount > bitpool) ? -8 : 8; in adjustToFitBitpool() 270 while ((bitcount != bitpool) && chop) { in adjustToFitBitpool() 296 if (count > bitpool) { in adjustToFitBitpool() 305 *excess = bitpool - bitcount; in adjustToFitBitpool() 367 …bitadjust = adjustToFitBitpool(common->frameInfo.bitpool, bitneeds->uint32, nrof_subbands, bitcoun… in oneChannelBitAllocation()
|
D | decoder-oina.c | 90 context->common.frameInfo.bitpool = maxBitpool; in OI_CODEC_SBC_DecoderConfigureRaw() 104 OI_UINT8 bitpool, in OI_CODEC_SBC_DecodeRaw() argument 111 bitpool, in OI_CODEC_SBC_DecodeRaw()
|
D | decoder-sbc.c | 188 OI_UINT8 bitpool, in internal_DecodeRaw() argument 203 context->common.frameInfo.bitpool = bitpool; in internal_DecodeRaw() 312 …if ((context->common.frameInfo.bitpool < SBC_MIN_BITPOOL) && !context->common.frameInfo.enhanced) { in OI_CODEC_SBC_DecodeFrame() 313 ERROR(("Bitpool too small: %d (must be >= 2)", context->common.frameInfo.bitpool)); in OI_CODEC_SBC_DecodeFrame() 316 if (context->common.frameInfo.bitpool > OI_SBC_MaxBitpool(&context->common.frameInfo)) { in OI_CODEC_SBC_DecodeFrame() 317 …ERROR(("Bitpool too large: %d (must be <= %ld)", context->common.frameInfo.bitpool, OI_SBC_MaxBitp… in OI_CODEC_SBC_DecodeFrame()
|
D | bitalloc-sbc.c | 67 …bitadjust = adjustToFitBitpool(common->frameInfo.bitpool, bitneeds.uint32, 2 * nrof_subbands, bitc… in stereoBitAllocation() 103 OI_ASSERT(common->frameInfo.bitpool <= OI_SBC_MaxBitpool(&common->frameInfo)); in OI_SBC_ComputeBitAllocation()
|
D | framing-sbc.c | 53 printf(" bitpool: %d\n", frameInfo->bitpool); in OI_CODEC_SBC_DumpConfig()
|
D | decoder-private.c | 124 frame->bitpool = 26; in OI_SBC_ReadHeader() 156 frame->bitpool = data[2]; in OI_SBC_ReadHeader()
|
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/include/ |
D | oi_codec_sbc.h | 146 …OI_UINT8 bitpool; /**< Size of the bit allocation pool used to encode the stream. Input para… member 333 OI_UINT8 bitpool,
|
D | oi_codec_sbc_private.h | 140 OI_INT adjustToFitBitpool(const OI_UINT bitpool, 162 OI_UINT8 bitpool,
|