diff options
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/adpcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 1c3fdc4..56d1660 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -1498,7 +1498,7 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data, prev = 0; } - prev = av_clip((prev + 0x20) >> 6, -0x200000, 0x1fffff); + prev = av_clip_intp2((prev + 0x20) >> 6, 21); byte = bytestream2_get_byteu(&gb); if (!channel) |