mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/vaapi: mask unused bits in bitplane_present.value
Due to the union construct, unused bits in bitplane_present.value might be uninitialized even when the used bits are all set to a value. Masking the unused bits prevents spurious true values when all used bits are unset, e.g. skipped pictures. Signed-off-by: Jerome Borsboom <jerome.borsboom@carpalis.nl>
This commit is contained in:
parent
883bdc5fb7
commit
0ec7eb9305
@ -383,7 +383,7 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t
|
||||
if (err)
|
||||
goto fail;
|
||||
|
||||
if (pic_param.bitplane_present.value) {
|
||||
if (pic_param.bitplane_present.value & 0x7f) {
|
||||
uint8_t *bitplane;
|
||||
const uint8_t *ff_bp[3];
|
||||
int x, y, n;
|
||||
|
Loading…
Reference in New Issue
Block a user