00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 typedef struct rtsp_stream_t rtsp_stream_t;
00026 typedef struct rtsp_stream_id_t rtsp_stream_id_t;
00027
00028 rtsp_stream_t *RtspSetup( sout_stream_t *p_stream, const vlc_url_t *url );
00029 void RtspUnsetup( rtsp_stream_t *rtsp );
00030
00031 rtsp_stream_id_t *RtspAddId( rtsp_stream_t *rtsp, sout_stream_id_t *sid,
00032 unsigned i, uint32_t ssrc,
00033 const char *dst, int ttl,
00034 unsigned loport, unsigned hiport );
00035 void RtspDelId( rtsp_stream_t *rtsp, rtsp_stream_id_t * );
00036
00037 char *SDPGenerate( const sout_stream_t *p_stream, const char *rtsp_url );
00038
00039 int rtp_add_sink( sout_stream_id_t *id, int fd, bool rtcp_mux );
00040 void rtp_del_sink( sout_stream_id_t *id, int fd );
00041 uint16_t rtp_get_seq( const sout_stream_id_t *id );
00042 unsigned rtp_get_num( const sout_stream_id_t *id );
00043
00044
00045 void rtp_packetize_common (sout_stream_id_t *id, block_t *out,
00046 int b_marker, int64_t i_pts);
00047 void rtp_packetize_send (sout_stream_id_t *id, block_t *out);
00048 size_t rtp_mtu (const sout_stream_id_t *id);
00049
00050 int rtp_packetize_mpa (sout_stream_id_t *, block_t *);
00051 int rtp_packetize_mpv (sout_stream_id_t *, block_t *);
00052 int rtp_packetize_ac3 (sout_stream_id_t *, block_t *);
00053 int rtp_packetize_split(sout_stream_id_t *, block_t *);
00054 int rtp_packetize_mp4a (sout_stream_id_t *, block_t *);
00055 int rtp_packetize_mp4a_latm (sout_stream_id_t *, block_t *);
00056 int rtp_packetize_h263 (sout_stream_id_t *, block_t *);
00057 int rtp_packetize_h264 (sout_stream_id_t *, block_t *);
00058 int rtp_packetize_amr (sout_stream_id_t *, block_t *);
00059 int rtp_packetize_spx (sout_stream_id_t *, block_t *);
00060 int rtp_packetize_t140 (sout_stream_id_t *, block_t *);
00061
00062
00063 typedef struct rtcp_sender_t rtcp_sender_t;
00064 rtcp_sender_t *OpenRTCP (vlc_object_t *obj, int rtp_fd, int proto,
00065 bool mux);
00066 void CloseRTCP (rtcp_sender_t *rtcp);
00067 void SendRTCP (rtcp_sender_t *restrict rtcp, const block_t *rtp);