isomp4: fix incorrect masking for multiple tags
Coverity 206058
This commit is contained in:
parent
a5b7c12e35
commit
595a9cb5c5
@ -7362,7 +7362,7 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
|
||||
GST_LOG_OBJECT (qtdemux, "stsd type len: %d", len);
|
||||
|
||||
if ((fourcc == FOURCC_drms) || (fourcc == FOURCC_drmi) ||
|
||||
((fourcc & 0xFFFFFF00) == GST_MAKE_FOURCC ('e', 'n', 'c', 0)))
|
||||
((fourcc & 0x00FFFFFF) == GST_MAKE_FOURCC ('e', 'n', 'c', 0)))
|
||||
goto error_encrypted;
|
||||
|
||||
if (stream->subtype == FOURCC_vide) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user