Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
H A Dadpcm.c1979 int32_t sampledat; in adpcm_decode_frame()
1982 sampledat = sign_extend(byte, 4); in adpcm_decode_frame()
1985 sampledat = sign_extend(byte >> 4, 4); in adpcm_decode_frame()
1988 sampledat = ((prev1 * factor1 + prev2 * factor2) >> 11) + in adpcm_decode_frame()
1989 sampledat * scale; in adpcm_decode_frame()
1990 *samples = av_clip_int16(sampledat); in adpcm_decode_frame()
2055 int32_t sampledat; in adpcm_decode_frame() local
2058 sampledat = sign_extend(byte, 4); in adpcm_decode_frame()
2061 sampledat = sign_extend(byte >> 4, 4); in adpcm_decode_frame()
2064 sampledat in adpcm_decode_frame()
[all...]

Completed in 5 milliseconds