mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
wavparse: Update offset after parsing adtl chunk
Otherwise we will parse it over and over again without ever getting past it. https://bugzilla.gnome.org/show_bug.cgi?id=731533
This commit is contained in:
parent
93653ae5f9
commit
efaf996b1a
1 changed files with 1 additions and 0 deletions
|
@ -1451,6 +1451,7 @@ gst_wavparse_stream_headers (GstWavParse * wav)
|
|||
data_size);
|
||||
gst_buffer_unmap (buf, &map);
|
||||
}
|
||||
wav->offset += GST_ROUND_UP_2 (data_size);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue