mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
dvdspu: Fix PGS window parsing
Fix a problem introduced in the last PGS parsing patch by skipping the window count byte after reading it.
This commit is contained in:
parent
e5dd78e0ca
commit
454539a10e
1 changed files with 1 additions and 0 deletions
|
@ -529,6 +529,7 @@ parse_set_window (GstDVDSpu * dvdspu, guint8 type, guint8 * payload,
|
|||
dump_bytes (payload, len);
|
||||
|
||||
win_count = payload[0];
|
||||
payload++;
|
||||
|
||||
for (i = 0; i < win_count; i++) {
|
||||
if (payload + 9 > end)
|
||||
|
|
Loading…
Reference in a new issue