mirror of https://git.ffmpeg.org/ffmpeg.git
avresample: Make sure the even check does not overflow
CC: libav-stable@libav.org Bug-Id: CID 732225
This commit is contained in:
parent
daef7feb09
commit
c246b0b4c3
|
@ -60,7 +60,7 @@
|
||||||
|
|
||||||
static av_always_inline int even(uint64_t layout)
|
static av_always_inline int even(uint64_t layout)
|
||||||
{
|
{
|
||||||
return (!layout || (layout & (layout - 1)));
|
return (!layout || !!(layout & (layout - 1)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sane_layout(uint64_t layout)
|
static int sane_layout(uint64_t layout)
|
||||||
|
|
Loading…
Reference in New Issue