HomeSort by relevance Sort by last modified time
    Searched refs:maxBits (Results 1 - 25 of 28) sorted by null

1 2

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
vc1parse_huffman.c 22 int32_t i, j, maxBits, loopCount, totalBits, value;
24 maxBits = *pTable++;
30 if (totalBits != maxBits)
34 for (i = 0; i < maxBits; i++)
64 int32_t i, j, maxBits, loopCount, totalBits, value;
66 maxBits = *pTable++;
72 if (totalBits != maxBits)
76 for (i = 0; i < maxBits; i++)
  /external/libopus/silk/
control_audio_bandwidth.c 84 encControl->maxBits -= encControl->maxBits * 5 / ( encControl->payloadSize_ms + 5 );
112 encControl->maxBits -= encControl->maxBits * 5 / ( encControl->payloadSize_ms + 5 );
control.h 87 opus_int maxBits;
enc_API.c 449 opus_int maxBits, useCBR;
452 maxBits = encControl->maxBits;
454 maxBits = maxBits * 3 / 5;
457 maxBits = maxBits * 2 / 5;
459 maxBits = maxBits * 3 / 4;
471 maxBits -= encControl->maxBits / ( tot_blocks * 2 )
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
channel_map.c 100 elementBits->maxBits = maxChannelBits;
111 elementBits->maxBits = maxChannelBits << 1;
aacenc_core.c 108 qcInit.maxBits = (Word16) (MAXBITS_COEF*elInfo->nChannelsInEl);
109 qcInit.bitRes = qcInit.maxBits;
qc_main.c 223 hQC->maxBitsTot = init->maxBits;
461 elBits->bitResLevel = elBits->maxBits;
  /prebuilts/go/darwin-x86/src/compress/flate/
huffman_code.go 129 // maxBits The maximum number of bits that should be used to encode any literal.
133 func (h *huffmanEncoder) bitCounts(list []literalNode, maxBits int32) []int32 {
134 if maxBits >= maxBitsLimit {
135 panic("flate: maxBits too large")
143 if maxBits > n-1 {
144 maxBits = n - 1
158 for level := int32(1); level <= maxBits; level++ {
174 levels[maxBits].needed = 2*n - 4
176 level := maxBits
213 if l.level == maxBits {
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
huffman_code.go 129 // maxBits The maximum number of bits that should be used to encode any literal.
133 func (h *huffmanEncoder) bitCounts(list []literalNode, maxBits int32) []int32 {
134 if maxBits >= maxBitsLimit {
135 panic("flate: maxBits too large")
143 if maxBits > n-1 {
144 maxBits = n - 1
158 for level := int32(1); level <= maxBits; level++ {
174 levels[maxBits].needed = 2*n - 4
176 level := maxBits
213 if l.level == maxBits {
    [all...]
  /external/aac/libFDK/include/
FDK_crc.h 108 INT maxBits;
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
qc_data.h 67 Word16 maxBits; /* maximum number of bits in reservoir */
116 Word16 maxBits;
  /system/bt/embdrv/sbc/decoder/srce/
bitalloc.c 138 uint8_t maxBits = 0;
144 if (bits > maxBits) {
145 maxBits = bits;
162 if (bits > maxBits) {
163 maxBits = bits;
179 common->maxBitneed = OI_MAX(maxBits, common->maxBitneed);
  /external/libopus/silk/fixed/
encode_frame_FIX.c 82 opus_int maxBits, /* I If > 0: maximum number of output bits */
221 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) {
227 if( found_lower && ( gainsID == gainsID_lower || nBits > maxBits ) ) {
238 if( nBits > maxBits ) {
250 } else if( nBits < maxBits - 5 ) {
271 gain_factor_Q16 = silk_log2lin( silk_LSHIFT( nBits - maxBits, 7 ) / psEnc->sCmn.frame_length + SILK_FIX_CONST( 16, 7 ) );
273 if( nBits > maxBits ) {
279 gainMult_Q8 = gainMult_lower + silk_DIV32_16( silk_MUL( gainMult_upper - gainMult_lower, maxBits - nBits_lower ), nBits_upper - nBits_lower );
main_FIX.h 70 opus_int maxBits, /* I If > 0: maximum number of output bits */
  /external/libopus/silk/float/
encode_frame_FLP.c 81 opus_int maxBits, /* I If > 0: maximum number of output bits */
206 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) {
212 if( found_lower && ( gainsID == gainsID_lower || nBits > maxBits ) ) {
223 if( nBits > maxBits ) {
235 } else if( nBits < maxBits - 5 ) {
256 gain_factor_Q16 = silk_log2lin( silk_LSHIFT( nBits - maxBits, 7 ) / psEnc->sCmn.frame_length + SILK_FIX_CONST( 16, 7 ) );
258 if( nBits > maxBits ) {
264 gainMult_Q8 = gainMult_lower + ( ( gainMult_upper - gainMult_lower ) * ( maxBits - nBits_lower ) ) / ( nBits_upper - nBits_lower );
main_FLP.h 68 opus_int maxBits, /* I If > 0: maximum number of output bits */
  /external/aac/libAACenc/src/
aacenc.cpp 602 qcInit.maxBits = MIN_BUFSIZE_PER_EFF_CHAN*cm->nChannelsEff;
603 qcInit.maxBits = (config->maxBitsPerFrame!=-1) ? fixMin(qcInit.maxBits, config->maxBitsPerFrame) : qcInit.maxBits;
604 qcInit.maxBits = fixMax(qcInit.maxBits, (averageBitsPerFrame+7)&~7);
615 qcInit.maxBits = fixMin(MIN_BUFSIZE_PER_EFF_CHAN*cm->nChannelsEff, ((averageBitsPerFrame+7)&~7)+qcInit.bitRes);
616 qcInit.maxBits = (config->maxBitsPerFrame!=-1) ? fixMin(qcInit.maxBits, config->maxBitsPerFrame) : qcInit.maxBits;
    [all...]
qc_data.h 143 INT maxBits; /* maximum number of bits in reservoir */
  /external/aac/libFDK/src/
FDK_crc.cpp 264 hCrcInfo->crcRegData[reg].maxBits = mBits;
288 if (hCrcInfo->crcRegData[reg].maxBits == 0) {
289 hCrcInfo->crcRegData[reg].maxBits = hCrcInfo->crcRegData[reg].bitBufCntBits;
423 rBits = (rD->maxBits>=0) ? rD->maxBits : -rD->maxBits; /* ramaining bits */
424 if ((rD->maxBits>0) && (((INT)rD->bitBufCntBits>>3<<3)<rBits) ) {
  /external/lz4/tests/
frametest.c 343 unsigned const maxBits = FUZ_highbit((U32)decodedBufferSize);
355 unsigned const nbBits = FUZ_rand(&randState) % maxBits;
465 unsigned maxBits = FUZ_highbit((U32)decodedBufferSize);
480 unsigned nbBits = FUZ_rand(&randState) % maxBits;
500 unsigned nbBits = FUZ_rand(&randState) % maxBits;
632 unsigned const maxBits = FUZ_highbit((U32)srcSize);
639 unsigned const nbBitsSeg = FUZ_rand(&randState) % maxBits;
671 unsigned const maxBits = MAX(3, suggestedBits);
677 unsigned const nbBitsI = (FUZ_rand(&randState) % (maxBits-1)) + 1;
678 unsigned const nbBitsO = (FUZ_rand(&randState) % (maxBits)) + 1
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_api.c 469 GLint maxBits;
498 maxBits = rBits;
499 if (gBits > maxBits) maxBits = gBits;
500 if (bBits > maxBits) maxBits = bBits;
502 v->Kernel[i] = kernel[i] >> maxBits;
    [all...]
  /external/brotli/java/org/brotli/dec/
Decode.java 241 int maxBits = 0;
246 maxBits++;
251 symbols[i] = BitReader.readBits(br, maxBits) % alphabetSize;
  /prebuilts/go/darwin-x86/src/runtime/
mbitmap.go     [all...]
  /prebuilts/go/linux-x86/src/runtime/
mbitmap.go     [all...]
  /external/libopus/src/
opus_encoder.c     [all...]

Completed in 827 milliseconds

1 2