diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/sdp/gstsdpdemux.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2007-10-02 Wim Taymans <wim.taymans@gmail.com> + * gst/sdp/gstsdpdemux.h: + Change signature of pt to fix compilation on some platforms. + +2007-10-02 Wim Taymans <wim.taymans@gmail.com> + * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_flush_start), (gst_rtp_jitter_buffer_flush_stop), diff --git a/gst/sdp/gstsdpdemux.h b/gst/sdp/gstsdpdemux.h index 1c184419..0ae60742 100644 --- a/gst/sdp/gstsdpdemux.h +++ b/gst/sdp/gstsdpdemux.h @@ -74,7 +74,7 @@ struct _GstSDPStream { GstPad *rtcppad; /* state */ - guint8 pt; + gint pt; gboolean container; }; |