From 63177e073100ce81a14338c464bb1cb83c27c3a7 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 11 May 2005 12:01:10 +0000 Subject: gst/rtsp/: Added README Original commit message from CVS: * gst/rtsp/README: * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type), (gst_rtspsrc_class_init), (gst_rtspsrc_create_stream), (gst_rtspsrc_add_element), (gst_rtspsrc_set_state), (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_stream_configure_transport), (find_stream), (gst_rtspsrc_loop), (gst_rtspsrc_open), (gst_rtspsrc_play): * gst/rtsp/rtsp.h: * gst/rtsp/rtspconnection.c: (rtsp_connection_create), (rtsp_connection_send), (read_line), (parse_request_line), (parse_line), (read_body), (rtsp_connection_receive), (rtsp_connection_free): * gst/rtsp/rtspconnection.h: * gst/rtsp/rtspdefs.c: (rtsp_find_method): * gst/rtsp/rtspdefs.h: * gst/rtsp/rtspmessage.c: (rtsp_message_set_body), (rtsp_message_take_body): * gst/rtsp/rtspmessage.h: * gst/rtsp/rtspstream.h: * gst/rtsp/sdpmessage.c: (sdp_parse_line): Added README Some cleanups. --- gst/rtsp/sdpmessage.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'gst/rtsp/sdpmessage.c') diff --git a/gst/rtsp/sdpmessage.c b/gst/rtsp/sdpmessage.c index a9044c96..dda12eb9 100644 --- a/gst/rtsp/sdpmessage.c +++ b/gst/rtsp/sdpmessage.c @@ -462,7 +462,7 @@ sdp_parse_line (SDPContext * c, gchar type, guint8 * buffer) switch (type) { case 'v': if (buffer[0] != '0') - g_print ("wrong SDP version\n"); + g_warning ("wrong SDP version"); sdp_message_set_version (c->msg, buffer); break; case 'o': @@ -550,11 +550,9 @@ sdp_parse_line (SDPContext * c, gchar type, guint8 * buffer) sdp_media_add_format (&nmedia, str); } while (*p != '\0'); - g_print ("%p\n", &nmedia); sdp_message_add_media (c->msg, &nmedia); c->media = &g_array_index (c->msg->medias, SDPMedia, c->msg->medias->len - 1); - g_print ("%p\n", c->media); break; } default: -- cgit