avfilter/af_hdcd: Replace complexer expression by litteral constant

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-05-24 19:56:55 +02:00
parent 4c82ccad2b
commit 35b37591c0
1 changed files with 1 additions and 1 deletions

View File

@ -893,7 +893,7 @@ static int integrate(hdcd_state_t *state, int *flag, const int32_t *samples, int
state->code_counterC++;
} else {
if (bits)
state->readahead = readaheadtab[bits & ~((unsigned) -1 << 8)];
state->readahead = readaheadtab[bits & 0xff];
else
state->readahead = 31; /* ffwd over digisilence */
}