Revert "wavpack: Clip samples after shifting"

This reverts commit 8d055e9079.

The original commit introduced ticket #871, do not import the problem
into the release branch.
This commit is contained in:
Carl Eugen Hoyos
2012-01-04 20:34:45 +01:00
parent 103cb461b0
commit 9f561ec398

View File

@@ -405,12 +405,12 @@ static inline int wv_get_value_integer(WavpackFrameContext *s, uint32_t *crc, in
}
bit = (S & s->and) | s->or;
bit = (((S + bit) << s->shift) - bit) << s->post_shift;
bit = (((S + bit) << s->shift) - bit);
if(s->hybrid)
bit = av_clip(bit, -s->hybrid_maxclip - 1, s->hybrid_maxclip);
return bit;
return bit << s->post_shift;
}
static float wv_get_value_float(WavpackFrameContext *s, uint32_t *crc, int S)