mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
avcodec/wavpackenc: use put_sbits
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
4a3cf186b2
commit
4c4ebeb587
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user