summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2009-09-22 12:16:37 +0100
committerJan Schmidt <thaytan@noraisin.net>2009-09-28 10:32:02 +0100
commit25837289c4cbf5381e40bcb80e94cf14f57e9f59 (patch)
treec94c83b37820ba8147ac3a9d55b69f75c24b5f44
parentf248986ba4f2f979dc289e2a3593d010f5333397 (diff)
dvdspu: Improve PGS parsing
Improve (slightly) the interpretation of PGS set-window blocks to avoid printing warnings about unused bytes when there are multiple window definitions.
-rw-r--r--gst/dvdspu/gstspu-pgs.c35
1 files changed, 21 insertions, 14 deletions
diff --git a/gst/dvdspu/gstspu-pgs.c b/gst/dvdspu/gstspu-pgs.c
index fc5a0bbf5..365e0c81a 100644
--- a/gst/dvdspu/gstspu-pgs.c
+++ b/gst/dvdspu/gstspu-pgs.c
@@ -520,25 +520,32 @@ parse_set_window (GstDVDSpu * dvdspu, guint8 type, guint8 * payload,
{
SpuState *state = &dvdspu->spu_state;
guint8 *end = payload + len;
- guint8 win_id, win_ver;
+ guint8 win_count, win_id;
+ gint i;
- if (payload + 10 > end)
+ if (payload + 1 > end)
return 0;
dump_bytes (payload, len);
- /* FIXME: This is just a guess as to what the numbers mean: */
- win_id = payload[0];
- win_ver = payload[1];
- state->pgs.win_x = GST_READ_UINT16_BE (payload + 2);
- state->pgs.win_y = GST_READ_UINT16_BE (payload + 4);
- state->pgs.win_w = GST_READ_UINT16_BE (payload + 6);
- state->pgs.win_h = GST_READ_UINT16_BE (payload + 8);
- payload += 10;
-
- PGS_DUMP ("Win ID %u version %d x %d y %d w %d h %d\n",
- win_id, win_ver, state->pgs.win_x, state->pgs.win_y, state->pgs.win_w,
- state->pgs.win_h);
+ win_count = payload[0];
+
+ for (i = 0; i < win_count; i++) {
+ if (payload + 9 > end)
+ return 0;
+
+ /* FIXME: Store each window ID separately into an array */
+ win_id = payload[0];
+ state->pgs.win_x = GST_READ_UINT16_BE (payload + 1);
+ state->pgs.win_y = GST_READ_UINT16_BE (payload + 3);
+ state->pgs.win_w = GST_READ_UINT16_BE (payload + 5);
+ state->pgs.win_h = GST_READ_UINT16_BE (payload + 7);
+ payload += 9;
+
+ PGS_DUMP ("Win ID %u x %d y %d w %d h %d\n",
+ win_id, state->pgs.win_x, state->pgs.win_y, state->pgs.win_w,
+ state->pgs.win_h);
+ }
if (payload != end) {
GST_ERROR ("PGS Set Window: %" G_GSSIZE_FORMAT " bytes not consumed",