Home
last modified time | relevance | path

Searched refs:adpcm_ima_qt_expand_nibble (Results 1 - 1 of 1) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dadpcm.c507 static inline int adpcm_ima_qt_expand_nibble(ADPCMChannelStatus *c, int nibble) in adpcm_ima_qt_expand_nibble() function
1139 samples[m ] = adpcm_ima_qt_expand_nibble(cs, byte & 0x0F); in adpcm_decode_frame()
1140 samples[m + 1] = adpcm_ima_qt_expand_nibble(cs, byte >> 4 ); in adpcm_decode_frame()
1467 *samples++ = adpcm_ima_qt_expand_nibble(&c->status[0], v >> 4 ); in adpcm_decode_frame()
1468 *samples++ = adpcm_ima_qt_expand_nibble(&c->status[st], v & 0x0F); in adpcm_decode_frame()
1475 *samples++ = adpcm_ima_qt_expand_nibble(&c->status[channel], v >> 4 ); in adpcm_decode_frame()
1476 samples[st] = adpcm_ima_qt_expand_nibble(&c->status[channel], v & 0x0F); in adpcm_decode_frame()
1873 *samples++ = adpcm_ima_qt_expand_nibble(&c->status[0 ], v >> 4 ); in adpcm_decode_frame()
1874 *samples++ = adpcm_ima_qt_expand_nibble(&c->status[st], v & 0xf); in adpcm_decode_frame()

Completed in 5 milliseconds