mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-08-03 22:50:36 +00:00
wavpackenc: simplify "sign = ((sample) < 0) ? 1 : 0;"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -2049,7 +2049,7 @@ static void wavpack_encode_sample(WavPackEncodeContext *s, WvChannel *c, int32_t
|
||||
{
|
||||
WavPackWords *w = &s->w;
|
||||
uint32_t ones_count, low, high;
|
||||
int sign = ((sample) < 0) ? 1 : 0;
|
||||
int sign = sample < 0;
|
||||
|
||||
if (s->w.c[0].median[0] < 2 && !s->w.holding_zero && s->w.c[1].median[0] < 2) {
|
||||
if (w->zeros_acc) {
|
||||
|
||||
Reference in New Issue
Block a user