HomeSort by relevance Sort by last modified time
    Searched defs:BITRES (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/opus/src/celt/
entcode.h 50 # define BITRES 3
111 Return: The number of bits scaled by 2**BITRES.
celt_decoder.c 847 total_bits<<=BITRES;
857 quanta = IMIN(width<<BITRES, IMAX(6<<BITRES, width));
860 while (tell+(dynalloc_loop_logp<<BITRES) < total_bits && boost < cap[i])
878 alloc_trim = tell+(6<<BITRES) <= total_bits ?
881 bits = (((opus_int32)len*8)<<BITRES) - ec_tell_frac(dec) - 1;
882 anti_collapse_rsv = isTransient&&LM>=2&&bits>=((LM+2)<<BITRES) ? (1<<BITRES) : 0;
900 len*(8<<BITRES)-anti_collapse_rsv, balance, dec, LM, codedBands, &st->rng);
    [all...]
celt_encoder.c 967 boost_bits = boost*width<<BITRES;
970 boost_bits = (boost*width<<BITRES)/8;
973 boost_bits = boost*6<<BITRES;
977 && (tot_boost+boost_bits)>>BITRES>>3 > effectiveBytes/4)
979 opus_int32 cap = ((effectiveBytes/4)<<BITRES<<3);
    [all...]

Completed in 622 milliseconds