Home
last modified time | relevance | path

Searched refs:ylint (Results 1 – 2 of 2) sorted by relevance

/third_party/libsnd/src/G72x/
Dg72x.c424 short ylint, thr2, dqthr ; in update() local
432 ylint = state_ptr->yl >> 15 ; /* exponent part of yl */ in update()
434 thr1 = (32 + ylfrac) << ylint ; /* threshold */ in update()
435 thr2 = (ylint > 9) ? 31 << 10 : thr1 ; /* limit thr2 to 31 << 10 */ in update()
/third_party/ffmpeg/libavcodec/
Dg726.c195 int dq, re_signal, pk0, fa1, i, tr, ylint, ylfrac, thr2, al, dq0; in g726_decode() local
202 ylint = (c->yl >> 15); in g726_decode()
204 thr2 = (ylint > 9) ? 0x1f << 10 : (0x20 + ylfrac) << ylint; in g726_decode()