rtp.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * rtp.h: rtp stream output module header
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2007 the VideoLAN team
  5.  * $Id: b3da88459feba686dda5db7d5e1a1180b874779e $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Rémi Denis-Courmont
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. typedef struct rtsp_stream_t rtsp_stream_t;
  25. typedef struct rtsp_stream_id_t rtsp_stream_id_t;
  26. rtsp_stream_t *RtspSetup( sout_stream_t *p_stream, const vlc_url_t *url );
  27. void RtspUnsetup( rtsp_stream_t *rtsp );
  28. rtsp_stream_id_t *RtspAddId( rtsp_stream_t *rtsp, sout_stream_id_t *sid,
  29.                              unsigned i, uint32_t ssrc,
  30.                              const char *dst, int ttl,
  31.                              unsigned loport, unsigned hiport );
  32. void RtspDelId( rtsp_stream_t *rtsp, rtsp_stream_id_t * );
  33. char *SDPGenerate( const sout_stream_t *p_stream, const char *rtsp_url );
  34. int rtp_add_sink( sout_stream_id_t *id, int fd, bool rtcp_mux );
  35. void rtp_del_sink( sout_stream_id_t *id, int fd );
  36. uint16_t rtp_get_seq( const sout_stream_id_t *id );
  37. uint32_t rtp_get_ts( const sout_stream_id_t *id );
  38. unsigned rtp_get_num( const sout_stream_id_t *id );
  39. /* RTP packetization */
  40. void rtp_packetize_common (sout_stream_id_t *id, block_t *out,
  41.                            int b_marker, int64_t i_pts);
  42. void rtp_packetize_send (sout_stream_id_t *id, block_t *out);
  43. size_t rtp_mtu (const sout_stream_id_t *id);
  44. int rtp_packetize_mpa  (sout_stream_id_t *, block_t *);
  45. int rtp_packetize_mpv  (sout_stream_id_t *, block_t *);
  46. int rtp_packetize_ac3  (sout_stream_id_t *, block_t *);
  47. int rtp_packetize_split(sout_stream_id_t *, block_t *);
  48. int rtp_packetize_mp4a (sout_stream_id_t *, block_t *);
  49. int rtp_packetize_mp4a_latm (sout_stream_id_t *, block_t *);
  50. int rtp_packetize_h263 (sout_stream_id_t *, block_t *);
  51. int rtp_packetize_h264 (sout_stream_id_t *, block_t *);
  52. int rtp_packetize_amr  (sout_stream_id_t *, block_t *);
  53. int rtp_packetize_spx  (sout_stream_id_t *, block_t *);
  54. int rtp_packetize_t140 (sout_stream_id_t *, block_t *);
  55. int rtp_packetize_g726_16 (sout_stream_id_t *, block_t *);
  56. int rtp_packetize_g726_24 (sout_stream_id_t *, block_t *);
  57. int rtp_packetize_g726_32 (sout_stream_id_t *, block_t *);
  58. int rtp_packetize_g726_40 (sout_stream_id_t *, block_t *);
  59. /* RTCP */
  60. typedef struct rtcp_sender_t rtcp_sender_t;
  61. rtcp_sender_t *OpenRTCP (vlc_object_t *obj, int rtp_fd, int proto,
  62.                          bool mux);
  63. void CloseRTCP (rtcp_sender_t *rtcp);
  64. void SendRTCP (rtcp_sender_t *restrict rtcp, const block_t *rtp);