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

  /external/libopus/celt/
entcode.h 57 # define BITRES 3
118 Return: The number of bits scaled by 2**BITRES.
celt_decoder.c 918 total_bits<<=BITRES;
928 quanta = IMIN(width<<BITRES, IMAX(6<<BITRES, width));
931 while (tell+(dynalloc_loop_logp<<BITRES) < total_bits && boost < cap[i])
949 alloc_trim = tell+(6<<BITRES) <= total_bits ?
952 bits = (((opus_int32)len*8)<<BITRES) - ec_tell_frac(dec) - 1;
953 anti_collapse_rsv = isTransient&&LM>=2&&bits>=((LM+2)<<BITRES) ? (1<<BITRES) : 0;
982 len*(8<<BITRES)-anti_collapse_rsv, balance, dec, LM, codedBands, &st->rng, st->arch);
    [all...]
celt_encoder.c 1037 boost_bits = boost*width<<BITRES;
1040 boost_bits = (boost*width<<BITRES)/8;
1043 boost_bits = boost*6<<BITRES;
1047 && (tot_boost+boost_bits)>>BITRES>>3 > effectiveBytes/4)
1049 opus_int32 cap = ((effectiveBytes/4)<<BITRES<<3);
    [all...]

Completed in 281 milliseconds