mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 19:55:32 +00:00
riff: treat JUNQ chunks like JUNK chunks
This commit is contained in:
parent
8d7304b12c
commit
5a2ae53bae
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ skip_junk:
|
|||
GST_FOURCC_ARGS (*tag), size);
|
||||
|
||||
/* skip 'JUNK' chunks */
|
||||
if (*tag == GST_RIFF_TAG_JUNK) {
|
||||
if (*tag == GST_RIFF_TAG_JUNK || *tag == GST_RIFF_TAG_JUNQ) {
|
||||
size = GST_ROUND_UP_2 (size);
|
||||
*_offset += 8 + size;
|
||||
offset += 8 + size;
|
||||
|
|
Loading…
Reference in a new issue