From 4c4ebeb587cc0ba53d7c90b5b574c7b1378886ff Mon Sep 17 00:00:00 2001 From: James Almer Date: Mon, 18 Jan 2016 18:38:18 -0300 Subject: [PATCH] avcodec/wavpackenc: use put_sbits Reviewed-by: Paul B Mahol Signed-off-by: James Almer --- libavcodec/wavpackenc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/wavpackenc.c b/libavcodec/wavpackenc.c index 98a011fe18e..979b92165b2 100644 --- a/libavcodec/wavpackenc.c +++ b/libavcodec/wavpackenc.c @@ -2216,8 +2216,7 @@ static void pack_float_sample(WavPackEncodeContext *s, int32_t *sample) } } else if (shift_count) { if (s->float_flags & FLOAT_SHIFT_SENT) { - int32_t data = get_mantissa(*sample) & ((1 << shift_count) - 1); - put_bits(pb, shift_count, data); + put_sbits(pb, shift_count, get_mantissa(*sample)); } else if (s->float_flags & FLOAT_SHIFT_SAME) { put_bits(pb, 1, get_mantissa(*sample) & 1); } -- 2.39.5