This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
libavfilter/af_hdcd: fixed negative signed value shift
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
dsmudhar
Michael Niedermayer
9 years ago
parent
89806e0b9a
commit
5836a5037e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/af_hdcd.c
+ 1
- 1
libavfilter/af_hdcd.c
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 & ~(-1 << 8)];
state->readahead = readaheadtab[bits & ~(
(unsigned)
-1 << 8)];
else
state->readahead = 31; /* ffwd over digisilence */
}
Write
Preview
Loading…
Cancel
Save