Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
H A Dadpcm.c533 static inline int16_t adpcm_ms_expand_nibble(ADPCMChannelStatus *c, int nibble) in adpcm_ms_expand_nibble() function
1251 *samples++ = adpcm_ms_expand_nibble(&c->status[channel], byte >> 4 ); in adpcm_decode_frame()
1252 *samples++ = adpcm_ms_expand_nibble(&c->status[channel], byte & 0x0F); in adpcm_decode_frame()
1290 *samples++ = adpcm_ms_expand_nibble(&c->status[0 ], byte >> 4 ); in adpcm_decode_frame()
1291 *samples++ = adpcm_ms_expand_nibble(&c->status[st], byte & 0x0F); in adpcm_decode_frame()

Completed in 4 milliseconds