mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
isomp4: fix incorrect masking for multiple tags
Coverity 206058
This commit is contained in:
parent
a5b7c12e35
commit
595a9cb5c5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue