rtsp.h 2.9 KB

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