Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
H A Dadpcm.c399 static inline int16_t adpcm_ima_expand_nibble(ADPCMChannelStatus *c, int8_t nibble, int shift) in adpcm_ima_expand_nibble() function
1188 samples[m ] = adpcm_ima_expand_nibble(cs, v & 0x0F, 3); in adpcm_decode_frame()
1189 samples[m + 1] = adpcm_ima_expand_nibble(cs, v >> 4 , 3); in adpcm_decode_frame()
1213 *samples++ = adpcm_ima_expand_nibble(cs, v & 0x0F, 4); in adpcm_decode_frame()
1214 *samples++ = adpcm_ima_expand_nibble(cs, v >> 4 , 4); in adpcm_decode_frame()
1329 *samples++ = adpcm_ima_expand_nibble(&c->status[0 ], v >> 4 , 3); in adpcm_decode_frame()
1330 *samples++ = adpcm_ima_expand_nibble(&c->status[st], v & 0x0F, 3); in adpcm_decode_frame()
1371 adpcm_ima_expand_nibble(&c->status[0], nibble, 3); in adpcm_decode_frame()
1375 adpcm_ima_expand_nibble(&c->status[1], nibble, 3); in adpcm_decode_frame()
1384 adpcm_ima_expand_nibble( in adpcm_decode_frame()
[all...]

Completed in 3 milliseconds