Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
H A Dadpcm.c628 static inline int16_t adpcm_mtaf_expand_nibble(ADPCMChannelStatus *c, uint8_t nibble) in adpcm_mtaf_expand_nibble() function
1306 samples_p[channel][n ] = adpcm_mtaf_expand_nibble(&c->status[channel], v & 0x0F); in adpcm_decode_frame()
1307 samples_p[channel][n + 1] = adpcm_mtaf_expand_nibble(&c->status[channel], v >> 4 ); in adpcm_decode_frame()
1311 samples_p[channel + 1][n ] = adpcm_mtaf_expand_nibble(&c->status[channel + 1], v & 0x0F); in adpcm_decode_frame()
1312 samples_p[channel + 1][n + 1] = adpcm_mtaf_expand_nibble(&c->status[channel + 1], v >> 4 ); in adpcm_decode_frame()

Completed in 3 milliseconds