Lines Matching refs:adpcm_ima_expand_nibble

399 static inline int16_t adpcm_ima_expand_nibble(ADPCMChannelStatus *c, int8_t nibble, int shift)
1188 samples[m ] = adpcm_ima_expand_nibble(cs, v & 0x0F, 3);
1189 samples[m + 1] = adpcm_ima_expand_nibble(cs, v >> 4 , 3);
1213 *samples++ = adpcm_ima_expand_nibble(cs, v & 0x0F, 4);
1214 *samples++ = adpcm_ima_expand_nibble(cs, v >> 4 , 4);
1329 *samples++ = adpcm_ima_expand_nibble(&c->status[0 ], v >> 4 , 3);
1330 *samples++ = adpcm_ima_expand_nibble(&c->status[st], v & 0x0F, 3);
1371 adpcm_ima_expand_nibble(&c->status[0], nibble, 3);
1375 adpcm_ima_expand_nibble(&c->status[1], nibble, 3);
1384 adpcm_ima_expand_nibble(&c->status[0], nibble, 3);
1418 *samples++ = adpcm_ima_expand_nibble(&c->status[0 ], v1, 3);
1419 *samples++ = adpcm_ima_expand_nibble(&c->status[st], v2, 3);
1439 *samples++ = adpcm_ima_expand_nibble(&c->status[channel], v & 0x0F, 3);
1440 *samples++ = adpcm_ima_expand_nibble(&c->status[channel], v >> 4 , 3);
1452 *samples++ = adpcm_ima_expand_nibble(cs, v >> 4 , 3);
1453 *samples++ = adpcm_ima_expand_nibble(cs, v & 0x0F, 3);
1460 *samples++ = adpcm_ima_expand_nibble(&c->status[0], v >> 4 , 3);
1461 *samples++ = adpcm_ima_expand_nibble(&c->status[st], v & 0x0F, 3);
1526 *samples++ = adpcm_ima_expand_nibble(&c->status[channel], byte[channel] & 0x0F, 3);
1529 *samples++ = adpcm_ima_expand_nibble(&c->status[channel], byte[channel] >> 4 , 3);
1540 *smp++ = adpcm_ima_expand_nibble(&c->status[channel], v & 0x0F, 3);
1541 *smp++ = adpcm_ima_expand_nibble(&c->status[channel], v >> 4 , 3);
1548 *samples++ = adpcm_ima_expand_nibble(&c->status[channel], v & 0x0F, 3);
1549 samples[st] = adpcm_ima_expand_nibble(&c->status[channel], v >> 4 , 3);
1594 *samples++ = adpcm_ima_expand_nibble(&c->status[0], byte >> 4, 3);
1595 *samples++ = adpcm_ima_expand_nibble(&c->status[st], byte & 0x0F, 3);
1601 *samples++ = adpcm_ima_expand_nibble(&c->status[0], byte >> 4, 6);
1602 *samples++ = adpcm_ima_expand_nibble(&c->status[st], byte & 0x0F, 6);
1814 *samples++ = adpcm_ima_expand_nibble(&c->status[0], byte & 0x0F, 3);
1815 *samples++ = adpcm_ima_expand_nibble(&c->status[st], byte >> 4, 3);
1843 *samples++ = adpcm_ima_expand_nibble(&c->status[0], v >> 4, 3);
1844 *samples++ = adpcm_ima_expand_nibble(&c->status[0], v & 0xf, 3);
1849 *samples++ = adpcm_ima_expand_nibble(&c->status[0], v >> 4, 3);