Searched refs:_nbits (Results 1 - 2 of 2) sorted by relevance

/external/libopus/celt/
H A Dentenc.h85 In order for this to work, at least _nbits bits must have already been
89 _val: The bits to encode (in the least _nbits significant bits).
91 _nbits: The number of bits to overwrite.
93 void ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits);
H A Dentenc.c214 void ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits){ argument
217 celt_assert(_nbits<=EC_SYM_BITS);
218 shift=EC_SYM_BITS-_nbits;
219 mask=((1<<_nbits)-1)<<shift;
228 else if(_this->rng<=(EC_CODE_TOP>>_nbits)){
233 /*The encoder hasn't even encoded _nbits of data yet.*/

Completed in 102 milliseconds