search for: _ftb

Displaying 1 result from an estimated 1 matches for "_ftb".

Did you mean: _ft
2011 Mar 03
0
[PATCH] Eliminate the ec_int32 and ec_uint32 typedefs.
...; - int ret; + celt_uint32 r; + celt_uint32 d; + celt_uint32 s; + int ret; r=_this->rng; d=_this->val; s=r>>_logp; @@ -184,11 +184,11 @@ int ec_dec_bit_logp(ec_dec *_this,unsigned _logp){ } int ec_dec_icdf(ec_dec *_this,const unsigned char *_icdf,unsigned _ftb){ - ec_uint32 r; - ec_uint32 d; - ec_uint32 s; - ec_uint32 t; - int ret; + celt_uint32 r; + celt_uint32 d; + celt_uint32 s; + celt_uint32 t; + int ret; s=_this->rng; d=_this->val; r=s>>_ftb; @@ -204,7 +204,7 @@ int ec_dec_icdf(ec_dec *_this,const unsigne...