HomeSort by relevance Sort by last modified time
    Searched refs:s16BitPool (Results 1 - 6 of 6) sorted by null

  /system/bt/stack/a2dp/
a2dp_sbc_encoder.cc 195 int16_t s16BitPool = 0;
284 s16SamplingFreq, p_encoder_params->s16BitPool);
289 s16BitPool = (int16_t)((p_encoder_params->u16BitRate *
304 (p_encoder_params->s16NumOfBlocks * s16BitPool)) /
311 if (s16BitRate > p_encoder_params->u16BitRate) s16BitPool--;
314 s16BitPool = (s16BitPool > 255) ? 255 : s16BitPool;
316 s16BitPool = (s16BitPool > 128) ? 128 : s16BitPool
    [all...]
  /system/bt/embdrv/sbc/encoder/srce/
sbc_encoder.c 165 int16_t s16Bitpool; /*to store bit pool value*/
188 s16Bitpool =
203 (pstrEncParams->s16NumOfBlocks * s16Bitpool)) /
210 if (s16BitRate > pstrEncParams->u16BitRate) s16Bitpool--;
213 pstrEncParams->s16BitPool = (s16Bitpool > 255) ? 255 : s16Bitpool;
215 pstrEncParams->s16BitPool = (s16Bitpool > 128) ? 128 : s16Bitpool;
    [all...]
sbc_enc_bit_alloc_mono.c 108 s32BitCount = pstrCodecParams->s16BitPool;
sbc_enc_bit_alloc_ste.c 57 int32_t s32BitPool = pstrCodecParams->s16BitPool;
sbc_packing.c 87 *pu8PacketPtr = (uint8_t)(pstrEncParams->s16BitPool & 0x00FF);
  /system/bt/embdrv/sbc/encoder/include/
sbc_encoder.h 173 int16_t s16BitPool; /* 16*numOfSb for mono & dual;

Completed in 683 milliseconds