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

  /external/libopus/silk/
control_audio_bandwidth.c 90 encControl->maxBits -= encControl->maxBits * 5 / ( encControl->payloadSize_ms + 5 );
118 encControl->maxBits -= encControl->maxBits * 5 / ( encControl->payloadSize_ms + 5 );
control.h 90 opus_int maxBits;
enc_API.c 458 opus_int maxBits, useCBR;
461 maxBits = encControl->maxBits;
463 maxBits = maxBits * 3 / 5;
466 maxBits = maxBits * 2 / 5;
468 maxBits = maxBits * 3 / 4;
480 maxBits -= encControl->maxBits / ( tot_blocks * 2 )
    [all...]
  /external/aac/libFDK/include/
FDK_crc.h 117 INT maxBits;
  /external/libopus/silk/float/
encode_frame_FLP.c 89 opus_int maxBits, /* I If > 0: maximum number of output bits */
216 if ( iter == maxIter && !found_lower && nBits > maxBits ) {
242 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) {
248 if( found_lower && ( gainsID == gainsID_lower || nBits > maxBits ) ) {
259 if( nBits > maxBits ) {
273 } else if( nBits < maxBits - 5 ) {
291 if ( !found_lower && nBits > maxBits ) {
308 if( nBits > maxBits ) {
316 gain_factor_Q16 = silk_log2lin( silk_LSHIFT( nBits - maxBits, 7 ) / psEnc->sCmn.frame_length + SILK_FIX_CONST( 16, 7 ) );
321 gainMult_Q8 = gainMult_lower + ( ( gainMult_upper - gainMult_lower ) * ( maxBits - nBits_lower ) ) / ( nBits_upper - nBits_lower )
    [all...]
main_FLP.h 69 opus_int maxBits, /* I If > 0: maximum number of output bits */
  /external/libopus/silk/fixed/
encode_frame_FIX.c 90 opus_int maxBits, /* I If > 0: maximum number of output bits */
230 if ( iter == maxIter && !found_lower && nBits > maxBits ) {
256 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) {
262 if( found_lower && ( gainsID == gainsID_lower || nBits > maxBits ) ) {
273 if( nBits > maxBits ) {
285 } else if( nBits < maxBits - 5 ) {
303 if ( !found_lower && nBits > maxBits ) {
320 if( nBits > maxBits ) {
328 gain_factor_Q16 = silk_log2lin( silk_LSHIFT( nBits - maxBits, 7 ) / psEnc->sCmn.frame_length + SILK_FIX_CONST( 16, 7 ) );
334 gainMult_Q8 = gainMult_lower + silk_DIV32_16( silk_MUL( gainMult_upper - gainMult_lower, maxBits - nBits_lower ), nBits_upper - nBits_lower )
    [all...]
main_FIX.h 79 opus_int maxBits, /* I If > 0: maximum number of output bits */
  /external/aac/libAACenc/src/
aacenc.cpp 544 qcInit.maxBits = MIN_BUFSIZE_PER_EFF_CHAN * cm->nChannelsEff;
545 qcInit.maxBits = (config->maxBitsPerFrame != -1)
546 ? fixMin(qcInit.maxBits, config->maxBitsPerFrame)
547 : qcInit.maxBits;
548 qcInit.maxBits = fixMax(qcInit.maxBits, (averageBitsPerFrame + 7) & ~7);
577 qcInit.maxBits = fixMin(MIN_BUFSIZE_PER_EFF_CHAN * cm->nChannelsEff,
579 qcInit.maxBits = (config->maxBitsPerFrame != -1)
580 ? fixMin(qcInit.maxBits, config->maxBitsPerFrame)
581 : qcInit.maxBits;
    [all...]
qc_data.h 152 INT maxBits; /* maximum number of bits in reservoir */
qc_main.cpp 368 hQC->maxBitsPerFrame = init->maxBits;
    [all...]
  /external/aac/libFDK/src/
FDK_crc.cpp 283 hCrcInfo->crcRegData[reg].maxBits = mBits;
305 if (hCrcInfo->crcRegData[reg].maxBits == 0) {
306 hCrcInfo->crcRegData[reg].maxBits = hCrcInfo->crcRegData[reg].bitBufCntBits;
443 rBits = (rD->maxBits >= 0) ? rD->maxBits : -rD->maxBits; /* ramaining bits */
444 if ((rD->maxBits > 0) && ((rD->bitBufCntBits >> 3 << 3) < rBits)) {
  /external/lz4/tests/
frametest.c 371 unsigned const maxBits = FUZ_highbit((U32)decodedBufferSize);
380 unsigned const nbBits = FUZ_rand(&randState) % maxBits;
663 unsigned maxBits = FUZ_highbit((U32)decodedBufferSize);
677 unsigned nbBits = FUZ_rand(&randState) % maxBits;
696 unsigned const nbBits = FUZ_rand(&randState) % maxBits;
    [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 377 int maxBits = 0;
382 maxBits++;
388 symbols[i] = BitReader.readFewBits(s, maxBits) % alphabetSize;
    [all...]
  /external/libopus/src/
opus_encoder.c     [all...]
  /external/brotli/csharp/org/brotli/dec/
Decode.cs 264 int maxBits = 0;
270 maxBits++;
276 symbols[i] = Org.Brotli.Dec.BitReader.ReadBits(br, maxBits) % alphabetSize;
    [all...]
  /external/brotli/js/
decode.js 362 var /** !number */ maxBits = 0;
367 maxBits++;
374 symbols[i] = readFewBits(s, maxBits) % alphabetSize;
    [all...]

Completed in 1233 milliseconds