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

  /system/bt/embdrv/sbc/decoder/srce/
framing-sbc.c 50 printf(" bitpool: %d\n", frameInfo->bitpool);
decoder-oina.c 88 context->common.frameInfo.bitpool = maxBitpool;
102 OI_UINT8 bitpool,
109 bitpool,
bitalloc.c 61 OI_UINT16 nbits = frame->nrof_blocks * frame->bitpool;
102 * We also compute a preferred bitpool value that this is the minimum bitpool needed to guarantee
103 * lossless representation of the audio data. The preferred bitpool may be larger than the bits
106 * representation we add 2 to each scale factor and sum them to come up with the preferred bitpool.
229 * Computes adjustment +/- of bitneeds to fill bitpool and returns overall
232 * @param bitpool The bitpool we have to work within
246 OI_INT adjustToFitBitpool(const OI_UINT bitpool,
253 OI_INT bitadjust = (bitcount > bitpool) ? -8 : 8
    [all...]
decoder-sbc.c 183 OI_UINT8 bitpool,
196 * The bitallocator needs to know the bitpool value.
198 context->common.frameInfo.bitpool = bitpool;
304 * Make sure the bitpool values are sane.
306 if ((context->common.frameInfo.bitpool < SBC_MIN_BITPOOL) && !context->common.frameInfo.enhanced) {
307 ERROR(("Bitpool too small: %d (must be >= 2)", context->common.frameInfo.bitpool));
310 if (context->common.frameInfo.bitpool > OI_SBC_MaxBitpool(&context->common.frameInfo)) {
311 ERROR(("Bitpool too large: %d (must be <= %ld)", context->common.frameInfo.bitpool, OI_SBC_MaxBitpool(&context->co (…)
    [all...]
bitalloc-sbc.c 65 bitadjust = adjustToFitBitpool(common->frameInfo.bitpool, bitneeds.uint32, 2 * nrof_subbands, bitcount, &ex);
101 OI_ASSERT(common->frameInfo.bitpool <= OI_SBC_MaxBitpool(&common->frameInfo));
128 * Calculates the bitpool size for a given frame length
decoder-private.c 121 * For decode, the bit allocator needs to know the bitpool value
123 frame->bitpool = data[2];
  /system/bt/embdrv/sbc/decoder/include/
oi_codec_sbc.h 142 OI_UINT8 bitpool; /**< Size of the bit allocation pool used to encode the stream. Input parameter. */ member in struct:__anon69217
147 bitpools are disallowed, otherwise the minimum bitpool size that will
287 * @param maxBitpool The maximum bitpool size for this context
305 * @param bitpool The actual bitpool size for this frame. Must be <= the maxbitpool specified
327 OI_UINT8 bitpool,
408 * Calculate the maximum bitpool size that fits within a given frame length.
410 * @param frame The frame to calculate the bitpool size for
411 * @param frameLen The frame length to fit the bitpool to
413 * @return the maximum bitpool that will fit in the specified frame lengt
    [all...]
oi_codec_sbc_private.h 140 OI_INT adjustToFitBitpool(const OI_UINT bitpool,
162 OI_UINT8 bitpool,

Completed in 80 milliseconds