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.

93 lines
2.8KB

  1. /*
  2. * RTSP definitions
  3. * Copyright (c) 2002 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #ifndef RTSP_H
  20. #define RTSP_H
  21. /* RTSP handling */
  22. enum RTSPStatusCode {
  23. #define DEF(n, c, s) c = n,
  24. #include "rtspcodes.h"
  25. #undef DEF
  26. };
  27. enum RTSPProtocol {
  28. RTSP_PROTOCOL_RTP_UDP = 0,
  29. RTSP_PROTOCOL_RTP_TCP = 1,
  30. RTSP_PROTOCOL_RTP_UDP_MULTICAST = 2,
  31. };
  32. #define RTSP_DEFAULT_PORT 554
  33. #define RTSP_MAX_TRANSPORTS 8
  34. #define RTSP_TCP_MAX_PACKET_SIZE 1472
  35. typedef struct RTSPTransportField {
  36. int interleaved_min, interleaved_max; /* interleave ids, if TCP transport */
  37. int port_min, port_max; /* RTP ports */
  38. int client_port_min, client_port_max; /* RTP ports */
  39. int server_port_min, server_port_max; /* RTP ports */
  40. int ttl; /* ttl value */
  41. uint32_t destination; /* destination IP address */
  42. enum RTSPProtocol protocol;
  43. } RTSPTransportField;
  44. typedef struct RTSPHeader {
  45. int content_length;
  46. enum RTSPStatusCode status_code; /* response code from server */
  47. int nb_transports;
  48. /* in AV_TIME_BASE unit, AV_NOPTS_VALUE if not used */
  49. int64_t range_start, range_end;
  50. RTSPTransportField transports[RTSP_MAX_TRANSPORTS];
  51. int seq; /* sequence number */
  52. char session_id[512];
  53. } RTSPHeader;
  54. /* the callback can be used to extend the connection setup/teardown step */
  55. enum RTSPCallbackAction {
  56. RTSP_ACTION_SERVER_SETUP,
  57. RTSP_ACTION_SERVER_TEARDOWN,
  58. RTSP_ACTION_CLIENT_SETUP,
  59. RTSP_ACTION_CLIENT_TEARDOWN,
  60. };
  61. typedef struct RTSPActionServerSetup {
  62. uint32_t ipaddr;
  63. char transport_option[512];
  64. } RTSPActionServerSetup;
  65. typedef int FFRTSPCallback(enum RTSPCallbackAction action,
  66. const char *session_id,
  67. char *buf, int buf_size,
  68. void *arg);
  69. void rtsp_set_callback(FFRTSPCallback *rtsp_cb);
  70. int rtsp_init(void);
  71. void rtsp_parse_line(RTSPHeader *reply, const char *buf);
  72. extern int rtsp_default_protocols;
  73. extern int rtsp_rtp_port_min;
  74. extern int rtsp_rtp_port_max;
  75. extern FFRTSPCallback *ff_rtsp_callback;
  76. extern AVInputFormat rtsp_demux;
  77. int rtsp_pause(AVFormatContext *s);
  78. int rtsp_resume(AVFormatContext *s);
  79. #endif /* RTSP_H */