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.

100 lines
3.2KB

  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. enum RTSPLowerTransport {
  27. RTSP_LOWER_TRANSPORT_UDP = 0,
  28. RTSP_LOWER_TRANSPORT_TCP = 1,
  29. RTSP_LOWER_TRANSPORT_UDP_MULTICAST = 2,
  30. /**
  31. * This is not part of public API and shouldn't be used outside of ffmpeg.
  32. */
  33. RTSP_LOWER_TRANSPORT_LAST
  34. };
  35. #define RTSP_DEFAULT_PORT 554
  36. #define RTSP_MAX_TRANSPORTS 8
  37. #define RTSP_TCP_MAX_PACKET_SIZE 1472
  38. #define RTSP_DEFAULT_NB_AUDIO_CHANNELS 2
  39. #define RTSP_DEFAULT_AUDIO_SAMPLERATE 44100
  40. #define RTSP_RTP_PORT_MIN 5000
  41. #define RTSP_RTP_PORT_MAX 10000
  42. typedef struct RTSPTransportField {
  43. int interleaved_min, interleaved_max; /**< interleave ids, if TCP transport */
  44. int port_min, port_max; /**< RTP ports */
  45. int client_port_min, client_port_max; /**< RTP ports */
  46. int server_port_min, server_port_max; /**< RTP ports */
  47. int ttl; /**< ttl value */
  48. uint32_t destination; /**< destination IP address */
  49. int transport;
  50. enum RTSPLowerTransport lower_transport;
  51. } RTSPTransportField;
  52. typedef struct RTSPHeader {
  53. int content_length;
  54. enum RTSPStatusCode status_code; /**< response code from server */
  55. int nb_transports;
  56. /** in AV_TIME_BASE unit, AV_NOPTS_VALUE if not used */
  57. int64_t range_start, range_end;
  58. RTSPTransportField transports[RTSP_MAX_TRANSPORTS];
  59. int seq; /**< sequence number */
  60. char session_id[512];
  61. char real_challenge[64]; /**< the RealChallenge1 field from the server */
  62. } RTSPHeader;
  63. /** the callback can be used to extend the connection setup/teardown step */
  64. enum RTSPCallbackAction {
  65. RTSP_ACTION_SERVER_SETUP,
  66. RTSP_ACTION_SERVER_TEARDOWN,
  67. RTSP_ACTION_CLIENT_SETUP,
  68. RTSP_ACTION_CLIENT_TEARDOWN,
  69. };
  70. typedef struct RTSPActionServerSetup {
  71. uint32_t ipaddr;
  72. char transport_option[512];
  73. } RTSPActionServerSetup;
  74. typedef int FFRTSPCallback(enum RTSPCallbackAction action,
  75. const char *session_id,
  76. char *buf, int buf_size,
  77. void *arg);
  78. int rtsp_init(void);
  79. void rtsp_parse_line(RTSPHeader *reply, const char *buf);
  80. #if LIBAVFORMAT_VERSION_INT < (53 << 16)
  81. extern int rtsp_default_protocols;
  82. #endif
  83. extern int rtsp_rtp_port_min;
  84. extern int rtsp_rtp_port_max;
  85. int rtsp_pause(AVFormatContext *s);
  86. int rtsp_resume(AVFormatContext *s);
  87. #endif /* FFMPEG_RTSP_H */