Mercurial > libavformat.hg
annotate rtsp.h @ 4225:0231b1d5cd15 libavformat
move actual writing before so new size can be taken into account
author | bcoudurier |
---|---|
date | Fri, 16 Jan 2009 01:12:32 +0000 |
parents | 6af3e7ab7cbb |
children | 77e0c7511d41 |
rev | line source |
---|---|
0 | 1 /* |
2 * RTSP definitions | |
3 * Copyright (c) 2002 Fabrice Bellard. | |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1167
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1167
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1167
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1167
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1167
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 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 | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1167
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
3853 | 21 #ifndef FFMPEG_RTSP_H |
22 #define FFMPEG_RTSP_H | |
0 | 23 |
2171 | 24 #include <stdint.h> |
25 #include "avformat.h" | |
0 | 26 #include "rtspcodes.h" |
4168
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
27 #include "rtp.h" |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
28 #include "network.h" |
0 | 29 |
3957
9f943bb755f9
Rename RTSPProtocol to RTSPLowerTransport, so that its name properly tells us
rbultje
parents:
3855
diff
changeset
|
30 enum RTSPLowerTransport { |
9f943bb755f9
Rename RTSPProtocol to RTSPLowerTransport, so that its name properly tells us
rbultje
parents:
3855
diff
changeset
|
31 RTSP_LOWER_TRANSPORT_UDP = 0, |
9f943bb755f9
Rename RTSPProtocol to RTSPLowerTransport, so that its name properly tells us
rbultje
parents:
3855
diff
changeset
|
32 RTSP_LOWER_TRANSPORT_TCP = 1, |
9f943bb755f9
Rename RTSPProtocol to RTSPLowerTransport, so that its name properly tells us
rbultje
parents:
3855
diff
changeset
|
33 RTSP_LOWER_TRANSPORT_UDP_MULTICAST = 2, |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
2884
diff
changeset
|
34 /** |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
2884
diff
changeset
|
35 * This is not part of public API and shouldn't be used outside of ffmpeg. |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
2884
diff
changeset
|
36 */ |
3957
9f943bb755f9
Rename RTSPProtocol to RTSPLowerTransport, so that its name properly tells us
rbultje
parents:
3855
diff
changeset
|
37 RTSP_LOWER_TRANSPORT_LAST |
0 | 38 }; |
39 | |
40 #define RTSP_DEFAULT_PORT 554 | |
41 #define RTSP_MAX_TRANSPORTS 8 | |
179 | 42 #define RTSP_TCP_MAX_PACKET_SIZE 1472 |
774 | 43 #define RTSP_DEFAULT_NB_AUDIO_CHANNELS 2 |
44 #define RTSP_DEFAULT_AUDIO_SAMPLERATE 44100 | |
45 #define RTSP_RTP_PORT_MIN 5000 | |
46 #define RTSP_RTP_PORT_MAX 10000 | |
0 | 47 |
48 typedef struct RTSPTransportField { | |
1871 | 49 int interleaved_min, interleaved_max; /**< interleave ids, if TCP transport */ |
50 int port_min, port_max; /**< RTP ports */ | |
51 int client_port_min, client_port_max; /**< RTP ports */ | |
52 int server_port_min, server_port_max; /**< RTP ports */ | |
53 int ttl; /**< ttl value */ | |
54 uint32_t destination; /**< destination IP address */ | |
3960
13e9b0d3a314
Implement a RTSPTransport field, which allows proper separation of server
rbultje
parents:
3957
diff
changeset
|
55 int transport; |
3957
9f943bb755f9
Rename RTSPProtocol to RTSPLowerTransport, so that its name properly tells us
rbultje
parents:
3855
diff
changeset
|
56 enum RTSPLowerTransport lower_transport; |
0 | 57 } RTSPTransportField; |
58 | |
59 typedef struct RTSPHeader { | |
60 int content_length; | |
1871 | 61 enum RTSPStatusCode status_code; /**< response code from server */ |
0 | 62 int nb_transports; |
1871 | 63 /** in AV_TIME_BASE unit, AV_NOPTS_VALUE if not used */ |
885 | 64 int64_t range_start, range_end; |
0 | 65 RTSPTransportField transports[RTSP_MAX_TRANSPORTS]; |
1871 | 66 int seq; /**< sequence number */ |
0 | 67 char session_id[512]; |
3855 | 68 char real_challenge[64]; /**< the RealChallenge1 field from the server */ |
4169
619845a9bab3
Use the "server" RTSP field to detect whether the server that we're talking
rbultje
parents:
4168
diff
changeset
|
69 char server[64]; |
0 | 70 } RTSPHeader; |
71 | |
4168
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
72 enum RTSPClientState { |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
73 RTSP_STATE_IDLE, |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
74 RTSP_STATE_PLAYING, |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
75 RTSP_STATE_PAUSED, |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
76 }; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
77 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
78 enum RTSPServerType { |
4171
6af3e7ab7cbb
Fix typo ("Standard-compliant" -> "Standards-compliant"), as noticed by
rbultje
parents:
4170
diff
changeset
|
79 RTSP_SERVER_RTP, /**< Standards-compliant RTP-server */ |
4170 | 80 RTSP_SERVER_REAL, /**< Realmedia-style server */ |
81 RTSP_SERVER_WMS, /**< Windows Media server */ | |
4168
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
82 RTSP_SERVER_LAST |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
83 }; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
84 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
85 enum RTSPTransport { |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
86 RTSP_TRANSPORT_RTP, |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
87 RTSP_TRANSPORT_RDT, |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
88 RTSP_TRANSPORT_LAST |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
89 }; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
90 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
91 typedef struct RTSPState { |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
92 URLContext *rtsp_hd; /* RTSP TCP connexion handle */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
93 int nb_rtsp_streams; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
94 struct RTSPStream **rtsp_streams; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
95 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
96 enum RTSPClientState state; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
97 int64_t seek_timestamp; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
98 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
99 /* XXX: currently we use unbuffered input */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
100 // ByteIOContext rtsp_gb; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
101 int seq; /* RTSP command sequence number */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
102 char session_id[512]; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
103 enum RTSPTransport transport; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
104 enum RTSPLowerTransport lower_transport; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
105 enum RTSPServerType server_type; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
106 char last_reply[2048]; /* XXX: allocate ? */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
107 void *cur_tx; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
108 int need_subscription; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
109 enum AVDiscard real_setup_cache[MAX_STREAMS]; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
110 char last_subscription[1024]; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
111 } RTSPState; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
112 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
113 typedef struct RTSPStream { |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
114 URLContext *rtp_handle; /* RTP stream handle */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
115 void *tx_ctx; /* RTP/RDT parse context */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
116 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
117 int stream_index; /* corresponding stream index, if any. -1 if none (MPEG2TS case) */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
118 int interleaved_min, interleaved_max; /* interleave ids, if TCP transport */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
119 char control_url[1024]; /* url for this stream (from SDP) */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
120 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
121 int sdp_port; /* port (from SDP content - not used in RTSP) */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
122 struct in_addr sdp_ip; /* IP address (from SDP content - not used in RTSP) */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
123 int sdp_ttl; /* IP TTL (from SDP content - not used in RTSP) */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
124 int sdp_payload_type; /* payload type - only used in SDP */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
125 RTPPayloadData rtp_payload_data; /* rtp payload parsing infos from SDP */ |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
126 |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
127 RTPDynamicProtocolHandler *dynamic_handler; ///< Only valid if it's a dynamic protocol. (This is the handler structure) |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
128 PayloadContext *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol) |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
129 } RTSPStream; |
0ebf63d12ea4
Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows future
rbultje
parents:
3960
diff
changeset
|
130 |
1871 | 131 /** the callback can be used to extend the connection setup/teardown step */ |
0 | 132 enum RTSPCallbackAction { |
133 RTSP_ACTION_SERVER_SETUP, | |
134 RTSP_ACTION_SERVER_TEARDOWN, | |
135 RTSP_ACTION_CLIENT_SETUP, | |
136 RTSP_ACTION_CLIENT_TEARDOWN, | |
137 }; | |
138 | |
139 typedef struct RTSPActionServerSetup { | |
65 | 140 uint32_t ipaddr; |
0 | 141 char transport_option[512]; |
142 } RTSPActionServerSetup; | |
143 | |
885 | 144 typedef int FFRTSPCallback(enum RTSPCallbackAction action, |
0 | 145 const char *session_id, |
146 char *buf, int buf_size, | |
147 void *arg); | |
148 | |
149 int rtsp_init(void); | |
150 void rtsp_parse_line(RTSPHeader *reply, const char *buf); | |
151 | |
2884 | 152 #if LIBAVFORMAT_VERSION_INT < (53 << 16) |
0 | 153 extern int rtsp_default_protocols; |
2884 | 154 #endif |
0 | 155 extern int rtsp_rtp_port_min; |
156 extern int rtsp_rtp_port_max; | |
179 | 157 |
158 int rtsp_pause(AVFormatContext *s); | |
159 int rtsp_resume(AVFormatContext *s); | |
0 | 160 |
3853 | 161 #endif /* FFMPEG_RTSP_H */ |