From 784ffd1b4fcb53ed798c3e902865208e3da6cff9 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 27 Jul 2005 19:00:36 +0000 Subject: [PATCH] gdp: Fix serialization of seek events. Original commit message from CVS: * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event), (gst_dp_event_from_packet): Fix serialization of seek events. --- gst/gdp/dataprotocol.c | 60 +++++++++++++++++++++++++++++++------------------- 1 file changed, 37 insertions(+), 23 deletions(-) diff --git a/gst/gdp/dataprotocol.c b/gst/gdp/dataprotocol.c index babefbd..c4a3f6a 100644 --- a/gst/gdp/dataprotocol.c +++ b/gst/gdp/dataprotocol.c @@ -329,18 +329,27 @@ gst_dp_packet_from_event (const GstEvent * event, GstDPHeaderFlag flags, *payload = NULL; break; case GST_EVENT_SEEK: - pl_length = 4 + 8 + 8 + 4; + { + gdouble rate; + GstFormat format; + GstSeekFlags flags; + GstSeekType cur_type, stop_type; + gint64 cur, stop; + + gst_event_parse_seek ((GstEvent *) event, &rate, &format, &flags, + &cur_type, &cur, &stop_type, &stop); + + pl_length = 4 + 4 + 4 + 8 + 4 + 8; *payload = g_malloc0 (pl_length); - /* - GST_WRITE_UINT32_BE (*payload, (guint32) GST_EVENT_SEEK_TYPE (event)); - GST_WRITE_UINT64_BE (*payload + 4, - (guint64) GST_EVENT_SEEK_OFFSET (event)); - GST_WRITE_UINT64_BE (*payload + 12, - (guint64) GST_EVENT_SEEK_ENDOFFSET (event)); - GST_WRITE_UINT32_BE (*payload + 20, - (guint32) GST_EVENT_SEEK_ACCURACY (event)); - */ + /* FIXME write rate */ + GST_WRITE_UINT32_BE (*payload, (guint32) format); + GST_WRITE_UINT32_BE (*payload + 4, (guint32) flags); + GST_WRITE_UINT32_BE (*payload + 8, (guint32) cur_type); + GST_WRITE_UINT64_BE (*payload + 12, (guint64) cur); + GST_WRITE_UINT32_BE (*payload + 20, (guint32) stop_type); + GST_WRITE_UINT64_BE (*payload + 24, (guint64) stop); break; + } case GST_EVENT_QOS: case GST_EVENT_NAVIGATION: case GST_EVENT_TAG: @@ -481,19 +490,24 @@ gst_dp_event_from_packet (guint header_length, const guint8 * header, break; case GST_EVENT_SEEK: { - /* - GstSeekType type; - gint64 offset, endoffset; - GstSeekAccuracy accuracy; - - type = (GstSeekType) GST_READ_UINT32_BE (payload); - offset = (gint64) GST_READ_UINT64_BE (payload + 4); - endoffset = (gint64) GST_READ_UINT64_BE (payload + 12); - accuracy = (GstSeekAccuracy) GST_READ_UINT32_BE (payload + 20); - event = gst_event_new_segment_seek (type, offset, endoffset); - GST_EVENT_TIMESTAMP (event) = GST_DP_HEADER_TIMESTAMP (header); - GST_EVENT_SEEK_ACCURACY (event) = accuracy; - */ + gdouble rate; + GstFormat format; + GstSeekFlags flags; + GstSeekType cur_type, stop_type; + gint64 cur, stop; + + /* FIXME, read rate */ + rate = 1.0; + format = (GstFormat) GST_READ_UINT32_BE (payload); + flags = (GstSeekFlags) GST_READ_UINT32_BE (payload + 4); + cur_type = (GstSeekType) GST_READ_UINT32_BE (payload + 8); + cur = (gint64) GST_READ_UINT64_BE (payload + 12); + stop_type = (GstSeekType) GST_READ_UINT32_BE (payload + 20); + stop = (gint64) GST_READ_UINT64_BE (payload + 24); + + event = gst_event_new_seek (rate, format, flags, cur_type, cur, + stop_type, stop); + GST_EVENT_TIMESTAMP (event) = GST_DP_HEADER_TIMESTAMP (header); break; } case GST_EVENT_QOS: -- 2.7.4