You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
5.3KB

  1. /*
  2. * RTSP definitions
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef FFMPEG_RTSP_H
  22. #define FFMPEG_RTSP_H
  23. #include <stdint.h>
  24. #include "avformat.h"
  25. #include "rtspcodes.h"
  26. #include "rtp.h"
  27. #include "network.h"
  28. enum RTSPLowerTransport {
  29. RTSP_LOWER_TRANSPORT_UDP = 0,
  30. RTSP_LOWER_TRANSPORT_TCP = 1,
  31. RTSP_LOWER_TRANSPORT_UDP_MULTICAST = 2,
  32. /**
  33. * This is not part of public API and shouldn't be used outside of ffmpeg.
  34. */
  35. RTSP_LOWER_TRANSPORT_LAST
  36. };
  37. #define RTSP_DEFAULT_PORT 554
  38. #define RTSP_MAX_TRANSPORTS 8
  39. #define RTSP_TCP_MAX_PACKET_SIZE 1472
  40. #define RTSP_DEFAULT_NB_AUDIO_CHANNELS 2
  41. #define RTSP_DEFAULT_AUDIO_SAMPLERATE 44100
  42. #define RTSP_RTP_PORT_MIN 5000
  43. #define RTSP_RTP_PORT_MAX 10000
  44. typedef struct RTSPTransportField {
  45. int interleaved_min, interleaved_max; /**< interleave ids, if TCP transport */
  46. int port_min, port_max; /**< RTP ports */
  47. int client_port_min, client_port_max; /**< RTP ports */
  48. int server_port_min, server_port_max; /**< RTP ports */
  49. int ttl; /**< ttl value */
  50. uint32_t destination; /**< destination IP address */
  51. int transport;
  52. enum RTSPLowerTransport lower_transport;
  53. } RTSPTransportField;
  54. typedef struct RTSPHeader {
  55. int content_length;
  56. enum RTSPStatusCode status_code; /**< response code from server */
  57. int nb_transports;
  58. /** in AV_TIME_BASE unit, AV_NOPTS_VALUE if not used */
  59. int64_t range_start, range_end;
  60. RTSPTransportField transports[RTSP_MAX_TRANSPORTS];
  61. int seq; /**< sequence number */
  62. char session_id[512];
  63. char real_challenge[64]; /**< the RealChallenge1 field from the server */
  64. char server[64];
  65. } RTSPHeader;
  66. enum RTSPClientState {
  67. RTSP_STATE_IDLE,
  68. RTSP_STATE_PLAYING,
  69. RTSP_STATE_PAUSED,
  70. };
  71. enum RTSPServerType {
  72. RTSP_SERVER_RTP, /**< Standards-compliant RTP-server */
  73. RTSP_SERVER_REAL, /**< Realmedia-style server */
  74. RTSP_SERVER_WMS, /**< Windows Media server */
  75. RTSP_SERVER_LAST
  76. };
  77. enum RTSPTransport {
  78. RTSP_TRANSPORT_RTP,
  79. RTSP_TRANSPORT_RDT,
  80. RTSP_TRANSPORT_LAST
  81. };
  82. typedef struct RTSPState {
  83. URLContext *rtsp_hd; /* RTSP TCP connexion handle */
  84. int nb_rtsp_streams;
  85. struct RTSPStream **rtsp_streams;
  86. enum RTSPClientState state;
  87. int64_t seek_timestamp;
  88. /* XXX: currently we use unbuffered input */
  89. // ByteIOContext rtsp_gb;
  90. int seq; /* RTSP command sequence number */
  91. char session_id[512];
  92. enum RTSPTransport transport;
  93. enum RTSPLowerTransport lower_transport;
  94. enum RTSPServerType server_type;
  95. char last_reply[2048]; /* XXX: allocate ? */
  96. void *cur_tx;
  97. int need_subscription;
  98. enum AVDiscard real_setup_cache[MAX_STREAMS];
  99. char last_subscription[1024];
  100. } RTSPState;
  101. typedef struct RTSPStream {
  102. URLContext *rtp_handle; /* RTP stream handle */
  103. void *tx_ctx; /* RTP/RDT parse context */
  104. int stream_index; /* corresponding stream index, if any. -1 if none (MPEG2TS case) */
  105. int interleaved_min, interleaved_max; /* interleave ids, if TCP transport */
  106. char control_url[1024]; /* url for this stream (from SDP) */
  107. int sdp_port; /* port (from SDP content - not used in RTSP) */
  108. struct in_addr sdp_ip; /* IP address (from SDP content - not used in RTSP) */
  109. int sdp_ttl; /* IP TTL (from SDP content - not used in RTSP) */
  110. int sdp_payload_type; /* payload type - only used in SDP */
  111. RTPPayloadData rtp_payload_data; /* rtp payload parsing infos from SDP */
  112. RTPDynamicProtocolHandler *dynamic_handler; ///< Only valid if it's a dynamic protocol. (This is the handler structure)
  113. PayloadContext *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol)
  114. } RTSPStream;
  115. /** the callback can be used to extend the connection setup/teardown step */
  116. enum RTSPCallbackAction {
  117. RTSP_ACTION_SERVER_SETUP,
  118. RTSP_ACTION_SERVER_TEARDOWN,
  119. RTSP_ACTION_CLIENT_SETUP,
  120. RTSP_ACTION_CLIENT_TEARDOWN,
  121. };
  122. typedef struct RTSPActionServerSetup {
  123. uint32_t ipaddr;
  124. char transport_option[512];
  125. } RTSPActionServerSetup;
  126. typedef int FFRTSPCallback(enum RTSPCallbackAction action,
  127. const char *session_id,
  128. char *buf, int buf_size,
  129. void *arg);
  130. int rtsp_init(void);
  131. void rtsp_parse_line(RTSPHeader *reply, const char *buf);
  132. #if LIBAVFORMAT_VERSION_INT < (53 << 16)
  133. extern int rtsp_default_protocols;
  134. #endif
  135. extern int rtsp_rtp_port_min;
  136. extern int rtsp_rtp_port_max;
  137. int rtsp_pause(AVFormatContext *s);
  138. int rtsp_resume(AVFormatContext *s);
  139. #endif /* FFMPEG_RTSP_H */