mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
lavc/vp9_raw_reorder_bsf: Fix operator ordering
Fixes CID 1413024.
This commit is contained in:
parent
177a90b1a3
commit
e1b5620b62
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user