/external/chromium_org/third_party/opus/src/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 | 437 opus_int maxBits, useCBR; 440 maxBits = encControl->maxBits; 442 maxBits = maxBits * 3 / 5; 445 maxBits = maxBits * 2 / 5; 447 maxBits = maxBits * 3 / 4; 459 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 | 109 qcInit.maxBits = (Word16) (MAXBITS_COEF*elInfo->nChannelsInEl); 110 qcInit.bitRes = qcInit.maxBits;
|
qc_main.c | 225 hQC->maxBitsTot = init->maxBits; 463 elBits->bitResLevel = elBits->maxBits;
|
adj_thr.c | [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1BitString.java | 105 private final int maxBits; 109 this.maxBits = INDEFINITE_SIZE; 118 if (maxBits == INDEFINITE_SIZE) { 129 if (bitsNumber > maxBits) { 132 value = new boolean[maxBits];
|
/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;
|
/external/chromium_org/third_party/opus/src/silk/fixed/ |
encode_frame_FIX.c | 82 opus_int maxBits, /* I If > 0: maximum number of output bits */ 219 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) { 225 if( found_lower && ( gainsID == gainsID_lower || nBits > maxBits ) ) { 236 if( nBits > maxBits ) { 248 } else if( nBits < maxBits - 5 ) { 269 gain_factor_Q16 = silk_log2lin( silk_LSHIFT( nBits - maxBits, 7 ) / psEnc->sCmn.frame_length + SILK_FIX_CONST( 16, 7 ) ); 271 if( nBits > maxBits ) { 277 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/chromium_org/third_party/opus/src/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/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/aac/libAACenc/src/ |
qc_data.h | 143 INT maxBits; /* maximum number of bits in reservoir */
|
aacenc.cpp | 564 qcInit.maxBits = MIN_BUFSIZE_PER_EFF_CHAN*cm->nChannelsEff; 574 qcInit.maxBits = fixMin(MIN_BUFSIZE_PER_EFF_CHAN*cm->nChannelsEff, ((averageBitsPerFrame+7)&~7)+qcInit.bitRes); 575 qcInit.maxBits = (config->maxBitsPerFrame!=-1) ? fixMin(qcInit.maxBits, config->maxBitsPerFrame) : qcInit.maxBits; [all...] |
qc_main.cpp | 372 hQC->maxBitsPerFrame = init->maxBits; [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/ |
xm_api.c | 466 GLint maxBits; 495 maxBits = rBits; 496 if (gBits > maxBits) maxBits = gBits; 497 if (bBits > maxBits) maxBits = bBits; 499 v->Kernel[i] = kernel[i] >> maxBits; [all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
xm_api.c | 466 GLint maxBits; 495 maxBits = rBits; 496 if (gBits > maxBits) maxBits = gBits; 497 if (bBits > maxBits) maxBits = bBits; 499 v->Kernel[i] = kernel[i] >> maxBits; [all...] |
/external/chromium_org/third_party/opus/src/src/ |
opus_encoder.c | [all...] |