Commit e1b5620b authored by Mark Thompson's avatar Mark Thompson

lavc/vp9_raw_reorder_bsf: Fix operator ordering

Fixes CID 1413024.
parent 177a90b1
......@@ -292,7 +292,7 @@ static int vp9_raw_reorder_filter(AVBSFContext *bsf, AVPacket *out)
return err;
}
if (in->data[in->size - 1] & 0xe0 == 0xc0) {
if ((in->data[in->size - 1] & 0xe0) == 0xc0) {
av_log(bsf, AV_LOG_ERROR, "Input in superframes is not "
"supported.\n");
av_packet_free(&in);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment