Home | History | Annotate | Download | only in lib_src

Lines Matching refs:nibble

51 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble);
110 /* if high nibble, decode */
117 /* low nibble, need to fetch another byte */
186 /* decode the low nibble */
225 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble)
235 if (nibble & 4)
238 if (nibble & 2)
242 if (nibble & 1)
250 if (nibble & 8)
263 pState->step += imaIndexTable[nibble];
270 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "In=%u, Pred=%d, Step=%d\n", nibble, pState->acc, imaStepSizeTable[pState->step]); */ }