From 91ce2b294e5538313bea3ddf7adaf1373d778384 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 11 May 2005 09:18:25 +0000 Subject: gst/rtsp/gstrtspsrc.*: Setup UDP sources correctly, receives raw data from RTSP compliant servers now. Original commit message from CVS: * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type), (gst_rtspsrc_class_init), (gst_rtspsrc_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_close), (gst_rtspsrc_play), (gst_rtspsrc_change_state): * gst/rtsp/gstrtspsrc.h: Setup UDP sources correctly, receives raw data from RTSP compliant servers now. --- gst/rtsp/gstrtspsrc.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gst/rtsp/gstrtspsrc.h') diff --git a/gst/rtsp/gstrtspsrc.h b/gst/rtsp/gstrtspsrc.h index 0a64e023..1cc1bb5c 100644 --- a/gst/rtsp/gstrtspsrc.h +++ b/gst/rtsp/gstrtspsrc.h @@ -55,6 +55,8 @@ typedef enum typedef struct _GstRTSPStream GstRTSPStream; struct _GstRTSPStream { + gint id; + gint rtpchannel; gint rtcpchannel; @@ -79,6 +81,7 @@ struct _GstRTSPSrc { gboolean interleaved; GstTask *task; + gint numstreams; GList *streams; gchar *location; -- cgit