lavc/vp9_raw_reorder_bsf: Fix operator ordering

Fixes CID 1413024.
This commit is contained in:
Mark Thompson 2019-09-29 17:46:01 +01:00
parent 177a90b1a3
commit e1b5620b62
1 changed files with 1 additions and 1 deletions

View File

@ -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);