HomeSort by relevance Sort by last modified time
    Searched refs:alp_h (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
levinson.cpp 478 Word16 alp_h, alp_l, alp_exp; // Prediction gain; hi lo and exponent
510 L_Extract (t0, &alp_h, &alp_l); // DPF format
533 t2 = Div_32 (t1, alp_h, alp_l); // abs(t0)/Alpha
580 t0 = Mpy_32 (alp_h, alp_l, hi, lo);
586 L_Extract (t0, &alp_h, &alp_l); // DPF format
647 Word16 alp_h; /* Prediction gain; hi lo and exponent*/ local
708 alp_h = (Word16)(t0 >> 16);
709 alp_l = (Word16)((t0 >> 1) - ((Word32)(alp_h) << 15));
739 t2 = Div_32(t1, alp_h, alp_l, pOverflow); /* abs(t0)/Alpha */
794 t0 = (((Word32)alp_h * lo) >> 15)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
levinson.c 118 Word16 alp_h, alp_l, alp_exp; /* Prediction gain; hi lo and exponent */ local
158 alp_h = t0 >> 16;
177 t2 = Div_32(t1, alp_h, alp_l); /* abs(t0)/Alpha */
220 t0 = Mpy_32(alp_h, alp_l, hi, lo); /* Alpha in Q31 */
225 alp_h = t0 >> 16;

Completed in 554 milliseconds