From 46d9a8a5e69743f571b0c4ea0a8a1ce1fcd8d937 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 21 Sep 2006 09:35:13 +0000 Subject: gst/rtp/README: Update README with some examples. Original commit message from CVS: * gst/rtp/README: Update README with some examples. * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps): * gst/rtp/gstrtpmp4gpay.h: Make optional RTP parameters of type STRING, as required by the application/x-rtp caps specification. --- gst/rtp/gstrtpmp4gpay.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gst/rtp/gstrtpmp4gpay.h') diff --git a/gst/rtp/gstrtpmp4gpay.h b/gst/rtp/gstrtpmp4gpay.h index bb0bb8fd..b1557f5a 100644 --- a/gst/rtp/gstrtpmp4gpay.h +++ b/gst/rtp/gstrtpmp4gpay.h @@ -49,9 +49,9 @@ struct _GstRtpMP4GPay GstClockTime duration; gint rate; - gint params; - gint profile; - gint streamtype; + gchar *params; + gchar *profile; + const gchar *streamtype; const gchar *mode; GstBuffer *config; }; -- cgit