diff --git a/libavcodec/takdec.c b/libavcodec/takdec.c index 43b3c92077..14e51b166c 100644 --- a/libavcodec/takdec.c +++ b/libavcodec/takdec.c @@ -851,7 +851,7 @@ static int tak_decode_frame(AVCodecContext *avctx, void *data, if (s->sample_shift[chan] > 0) for (i = 0; i < s->nb_samples; i++) - decoded[i] <<= s->sample_shift[chan]; + decoded[i] *= 1 << s->sample_shift[chan]; } }