Mercurial > libavformat.hg
annotate rtsp.c @ 3854:8b2b84b5ef74 libavformat
Implement RTSPServerType enum as a way to identify the flavour of RTSP that
the server will send to us (standard-compliant RTP or Realmedia-style RDT).
author | rbultje |
---|---|
date | Sun, 31 Aug 2008 17:30:15 +0000 |
parents | 8137bcada0cd |
children | c9550824fd1c |
rev | line source |
---|---|
0 | 1 /* |
2 * RTSP/SDP client | |
3 * Copyright (c) 2002 Fabrice Bellard. | |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
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:
1169
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:
1169
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:
1169
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:
887
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
3286 | 21 |
3722
68749aaea50f
ensure we get explicit definition of various _XOPEN_SOURCE functions we use
aurel
parents:
3714
diff
changeset
|
22 /* needed by inet_aton() */ |
68749aaea50f
ensure we get explicit definition of various _XOPEN_SOURCE functions we use
aurel
parents:
3714
diff
changeset
|
23 #define _SVID_SOURCE |
68749aaea50f
ensure we get explicit definition of various _XOPEN_SOURCE functions we use
aurel
parents:
3714
diff
changeset
|
24 |
3286 | 25 #include "libavutil/avstring.h" |
0 | 26 #include "avformat.h" |
27 | |
1808
572ce77d7333
Fix compilation on Mac OS X, patch by Marc Hoffman, mmh pleasantst com.
diego
parents:
1754
diff
changeset
|
28 #include <sys/time.h> |
182 | 29 #include <unistd.h> /* for select() prototype */ |
3714 | 30 #include <strings.h> |
1754 | 31 #include "network.h" |
2681
6037eb4919fb
Remove the inclusion of rtsp.h and rtp.h from avformat.h, and
lucabe
parents:
2408
diff
changeset
|
32 #include "rtsp.h" |
0 | 33 |
1419 | 34 #include "rtp_internal.h" |
35 | |
0 | 36 //#define DEBUG |
172 | 37 //#define DEBUG_RTP_TCP |
0 | 38 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
39 enum RTSPClientState { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
40 RTSP_STATE_IDLE, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
41 RTSP_STATE_PLAYING, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
42 RTSP_STATE_PAUSED, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
43 }; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
44 |
3854
8b2b84b5ef74
Implement RTSPServerType enum as a way to identify the flavour of RTSP that
rbultje
parents:
3853
diff
changeset
|
45 enum RTSPServerType { |
8b2b84b5ef74
Implement RTSPServerType enum as a way to identify the flavour of RTSP that
rbultje
parents:
3853
diff
changeset
|
46 RTSP_SERVER_RTP, /*< Standard-compliant RTP-server */ |
8b2b84b5ef74
Implement RTSPServerType enum as a way to identify the flavour of RTSP that
rbultje
parents:
3853
diff
changeset
|
47 RTSP_SERVER_RDT, /*< Realmedia-style server */ |
8b2b84b5ef74
Implement RTSPServerType enum as a way to identify the flavour of RTSP that
rbultje
parents:
3853
diff
changeset
|
48 RTSP_SERVER_LAST |
8b2b84b5ef74
Implement RTSPServerType enum as a way to identify the flavour of RTSP that
rbultje
parents:
3853
diff
changeset
|
49 }; |
8b2b84b5ef74
Implement RTSPServerType enum as a way to identify the flavour of RTSP that
rbultje
parents:
3853
diff
changeset
|
50 |
0 | 51 typedef struct RTSPState { |
52 URLContext *rtsp_hd; /* RTSP TCP connexion handle */ | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
53 int nb_rtsp_streams; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
54 struct RTSPStream **rtsp_streams; |
885 | 55 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
56 enum RTSPClientState state; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
57 int64_t seek_timestamp; |
885 | 58 |
172 | 59 /* XXX: currently we use unbuffered input */ |
60 // ByteIOContext rtsp_gb; | |
0 | 61 int seq; /* RTSP command sequence number */ |
62 char session_id[512]; | |
63 enum RTSPProtocol protocol; | |
3854
8b2b84b5ef74
Implement RTSPServerType enum as a way to identify the flavour of RTSP that
rbultje
parents:
3853
diff
changeset
|
64 enum RTSPServerType server_type; |
0 | 65 char last_reply[2048]; /* XXX: allocate ? */ |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
66 RTPDemuxContext *cur_rtp; |
0 | 67 } RTSPState; |
68 | |
69 typedef struct RTSPStream { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
70 URLContext *rtp_handle; /* RTP stream handle */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
71 RTPDemuxContext *rtp_ctx; /* RTP parse context */ |
885 | 72 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
73 int stream_index; /* corresponding stream index, if any. -1 if none (MPEG2TS case) */ |
0 | 74 int interleaved_min, interleaved_max; /* interleave ids, if TCP transport */ |
75 char control_url[1024]; /* url for this stream (from SDP) */ | |
76 | |
77 int sdp_port; /* port (from SDP content - not used in RTSP) */ | |
78 struct in_addr sdp_ip; /* IP address (from SDP content - not used in RTSP) */ | |
79 int sdp_ttl; /* IP TTL (from SDP content - not used in RTSP) */ | |
80 int sdp_payload_type; /* payload type - only used in SDP */ | |
774 | 81 rtp_payload_data_t rtp_payload_data; /* rtp payload parsing infos from SDP */ |
1419 | 82 |
83 RTPDynamicProtocolHandler *dynamic_handler; ///< Only valid if it's a dynamic protocol. (This is the handler structure) | |
84 void *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol) | |
0 | 85 } RTSPStream; |
86 | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
87 static int rtsp_read_play(AVFormatContext *s); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
88 |
0 | 89 /* XXX: currently, the only way to change the protocols consists in |
90 changing this variable */ | |
91 | |
2884 | 92 #if LIBAVFORMAT_VERSION_INT < (53 << 16) |
774 | 93 int rtsp_default_protocols = (1 << RTSP_PROTOCOL_RTP_UDP); |
2884 | 94 #endif |
0 | 95 |
96 static int rtsp_probe(AVProbeData *p) | |
97 { | |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
98 if (av_strstart(p->filename, "rtsp:", NULL)) |
0 | 99 return AVPROBE_SCORE_MAX; |
100 return 0; | |
101 } | |
102 | |
103 static int redir_isspace(int c) | |
104 { | |
3278 | 105 return c == ' ' || c == '\t' || c == '\n' || c == '\r'; |
0 | 106 } |
107 | |
108 static void skip_spaces(const char **pp) | |
109 { | |
110 const char *p; | |
111 p = *pp; | |
112 while (redir_isspace(*p)) | |
113 p++; | |
114 *pp = p; | |
115 } | |
116 | |
885 | 117 static void get_word_sep(char *buf, int buf_size, const char *sep, |
0 | 118 const char **pp) |
119 { | |
120 const char *p; | |
121 char *q; | |
122 | |
123 p = *pp; | |
774 | 124 if (*p == '/') |
125 p++; | |
0 | 126 skip_spaces(&p); |
127 q = buf; | |
128 while (!strchr(sep, *p) && *p != '\0') { | |
129 if ((q - buf) < buf_size - 1) | |
130 *q++ = *p; | |
131 p++; | |
132 } | |
133 if (buf_size > 0) | |
134 *q = '\0'; | |
135 *pp = p; | |
136 } | |
137 | |
138 static void get_word(char *buf, int buf_size, const char **pp) | |
139 { | |
140 const char *p; | |
141 char *q; | |
142 | |
143 p = *pp; | |
144 skip_spaces(&p); | |
145 q = buf; | |
146 while (!redir_isspace(*p) && *p != '\0') { | |
147 if ((q - buf) < buf_size - 1) | |
148 *q++ = *p; | |
149 p++; | |
150 } | |
151 if (buf_size > 0) | |
152 *q = '\0'; | |
153 *pp = p; | |
154 } | |
155 | |
156 /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other | |
157 params>] */ | |
1419 | 158 static int sdp_parse_rtpmap(AVCodecContext *codec, RTSPStream *rtsp_st, int payload_type, const char *p) |
0 | 159 { |
160 char buf[256]; | |
774 | 161 int i; |
162 AVCodec *c; | |
1124
d3aff2c607f9
Add const to (mostly) char* and make some functions static, which aren't used
diego
parents:
1003
diff
changeset
|
163 const char *c_name; |
0 | 164 |
774 | 165 /* Loop into AVRtpDynamicPayloadTypes[] and AVRtpPayloadTypes[] and |
166 see if we can handle this kind of payload */ | |
0 | 167 get_word_sep(buf, sizeof(buf), "/", &p); |
774 | 168 if (payload_type >= RTP_PT_PRIVATE) { |
1419 | 169 RTPDynamicProtocolHandler *handler= RTPFirstDynamicPayloadHandler; |
170 while(handler) { | |
171 if (!strcmp(buf, handler->enc_name) && (codec->codec_type == handler->codec_type)) { | |
172 codec->codec_id = handler->codec_id; | |
173 rtsp_st->dynamic_handler= handler; | |
174 if(handler->open) { | |
175 rtsp_st->dynamic_protocol_context= handler->open(); | |
176 } | |
774 | 177 break; |
178 } | |
1419 | 179 handler= handler->next; |
180 } | |
774 | 181 } else { |
182 /* We are in a standard case ( from http://www.iana.org/assignments/rtp-parameters) */ | |
183 /* search into AVRtpPayloadTypes[] */ | |
2759
b252e318023a
Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents:
2711
diff
changeset
|
184 codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type); |
774 | 185 } |
186 | |
187 c = avcodec_find_decoder(codec->codec_id); | |
188 if (c && c->name) | |
1124
d3aff2c607f9
Add const to (mostly) char* and make some functions static, which aren't used
diego
parents:
1003
diff
changeset
|
189 c_name = c->name; |
774 | 190 else |
191 c_name = (char *)NULL; | |
192 | |
193 if (c_name) { | |
194 get_word_sep(buf, sizeof(buf), "/", &p); | |
195 i = atoi(buf); | |
196 switch (codec->codec_type) { | |
197 case CODEC_TYPE_AUDIO: | |
198 av_log(codec, AV_LOG_DEBUG, " audio codec set to : %s\n", c_name); | |
199 codec->sample_rate = RTSP_DEFAULT_AUDIO_SAMPLERATE; | |
200 codec->channels = RTSP_DEFAULT_NB_AUDIO_CHANNELS; | |
201 if (i > 0) { | |
202 codec->sample_rate = i; | |
203 get_word_sep(buf, sizeof(buf), "/", &p); | |
204 i = atoi(buf); | |
205 if (i > 0) | |
206 codec->channels = i; | |
1431
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
207 // TODO: there is a bug here; if it is a mono stream, and less than 22000Hz, faad upconverts to stereo and twice the |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
208 // frequency. No problem, but the sample rate is being set here by the sdp line. Upcoming patch forthcoming. (rdm) |
774 | 209 } |
210 av_log(codec, AV_LOG_DEBUG, " audio samplerate set to : %i\n", codec->sample_rate); | |
211 av_log(codec, AV_LOG_DEBUG, " audio channels set to : %i\n", codec->channels); | |
212 break; | |
213 case CODEC_TYPE_VIDEO: | |
214 av_log(codec, AV_LOG_DEBUG, " video codec set to : %s\n", c_name); | |
215 break; | |
216 default: | |
217 break; | |
218 } | |
0 | 219 return 0; |
220 } | |
774 | 221 |
222 return -1; | |
0 | 223 } |
224 | |
225 /* return the length and optionnaly the data */ | |
226 static int hex_to_data(uint8_t *data, const char *p) | |
227 { | |
228 int c, len, v; | |
229 | |
230 len = 0; | |
231 v = 1; | |
232 for(;;) { | |
233 skip_spaces(&p); | |
234 if (p == '\0') | |
235 break; | |
236 c = toupper((unsigned char)*p++); | |
237 if (c >= '0' && c <= '9') | |
238 c = c - '0'; | |
239 else if (c >= 'A' && c <= 'F') | |
240 c = c - 'A' + 10; | |
241 else | |
242 break; | |
243 v = (v << 4) | c; | |
244 if (v & 0x100) { | |
245 if (data) | |
246 data[len] = v; | |
247 len++; | |
248 v = 1; | |
249 } | |
250 } | |
251 return len; | |
252 } | |
253 | |
774 | 254 static void sdp_parse_fmtp_config(AVCodecContext *codec, char *attr, char *value) |
255 { | |
256 switch (codec->codec_id) { | |
257 case CODEC_ID_MPEG4: | |
1472
49d5a5ca2987
get rid of CODEC_ID_MPEG4AAC after next version bump, and change it to CODEC_ID_AAC where used
bcoudurier
parents:
1453
diff
changeset
|
258 case CODEC_ID_AAC: |
774 | 259 if (!strcmp(attr, "config")) { |
260 /* decode the hexa encoded parameter */ | |
261 int len = hex_to_data(NULL, value); | |
262 codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE); | |
263 if (!codec->extradata) | |
264 return; | |
265 codec->extradata_size = len; | |
266 hex_to_data(codec->extradata, value); | |
267 } | |
268 break; | |
269 default: | |
270 break; | |
271 } | |
272 return; | |
273 } | |
274 | |
275 typedef struct attrname_map | |
276 { | |
1124
d3aff2c607f9
Add const to (mostly) char* and make some functions static, which aren't used
diego
parents:
1003
diff
changeset
|
277 const char *str; |
774 | 278 uint16_t type; |
279 uint32_t offset; | |
280 } attrname_map_t; | |
281 | |
282 /* All known fmtp parmeters and the corresping RTPAttrTypeEnum */ | |
283 #define ATTR_NAME_TYPE_INT 0 | |
284 #define ATTR_NAME_TYPE_STR 1 | |
285 static attrname_map_t attr_names[]= | |
286 { | |
287 {"SizeLength", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, sizelength)}, | |
288 {"IndexLength", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, indexlength)}, | |
289 {"IndexDeltaLength", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, indexdeltalength)}, | |
290 {"profile-level-id", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, profile_level_id)}, | |
291 {"StreamType", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, streamtype)}, | |
292 {"mode", ATTR_NAME_TYPE_STR, offsetof(rtp_payload_data_t, mode)}, | |
293 {NULL, -1, -1}, | |
294 }; | |
295 | |
1431
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
296 /** parse the attribute line from the fmtp a line of an sdp resonse. This is broken out as a function |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
297 * because it is used in rtp_h264.c, which is forthcoming. |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
298 */ |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
299 int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size) |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
300 { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
301 skip_spaces(p); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
302 if(**p) |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
303 { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
304 get_word_sep(attr, attr_size, "=", p); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
305 if (**p == '=') |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
306 (*p)++; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
307 get_word_sep(value, value_size, ";", p); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
308 if (**p == ';') |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
309 (*p)++; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
310 return 1; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
311 } |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
312 return 0; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
313 } |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
314 |
774 | 315 /* parse a SDP line and save stream attributes */ |
316 static void sdp_parse_fmtp(AVStream *st, const char *p) | |
0 | 317 { |
318 char attr[256]; | |
319 char value[4096]; | |
774 | 320 int i; |
321 | |
322 RTSPStream *rtsp_st = st->priv_data; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
774
diff
changeset
|
323 AVCodecContext *codec = st->codec; |
774 | 324 rtp_payload_data_t *rtp_payload_data = &rtsp_st->rtp_payload_data; |
0 | 325 |
326 /* loop on each attribute */ | |
1514
958decd51c1f
remove duplicate code, patch by Ryan Martell rdm4 A martellventures P com
gpoirier
parents:
1472
diff
changeset
|
327 while(rtsp_next_attr_and_value(&p, attr, sizeof(attr), value, sizeof(value))) |
958decd51c1f
remove duplicate code, patch by Ryan Martell rdm4 A martellventures P com
gpoirier
parents:
1472
diff
changeset
|
328 { |
887 | 329 /* grab the codec extra_data from the config parameter of the fmtp line */ |
774 | 330 sdp_parse_fmtp_config(codec, attr, value); |
331 /* Looking for a known attribute */ | |
332 for (i = 0; attr_names[i].str; ++i) { | |
333 if (!strcasecmp(attr, attr_names[i].str)) { | |
334 if (attr_names[i].type == ATTR_NAME_TYPE_INT) | |
335 *(int *)((char *)rtp_payload_data + attr_names[i].offset) = atoi(value); | |
336 else if (attr_names[i].type == ATTR_NAME_TYPE_STR) | |
337 *(char **)((char *)rtp_payload_data + attr_names[i].offset) = av_strdup(value); | |
887 | 338 } |
0 | 339 } |
340 } | |
341 } | |
342 | |
1453
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
343 /** Parse a string \p in the form of Range:npt=xx-xx, and determine the start |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
344 * and end time. |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
345 * Used for seeking in the rtp stream. |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
346 */ |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
347 static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end) |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
348 { |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
349 char buf[256]; |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
350 |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
351 skip_spaces(&p); |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
352 if (!av_stristart(p, "npt=", &p)) |
1453
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
353 return; |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
354 |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
355 *start = AV_NOPTS_VALUE; |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
356 *end = AV_NOPTS_VALUE; |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
357 |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
358 get_word_sep(buf, sizeof(buf), "-", &p); |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
359 *start = parse_date(buf, 1); |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
360 if (*p == '-') { |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
361 p++; |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
362 get_word_sep(buf, sizeof(buf), "-", &p); |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
363 *end = parse_date(buf, 1); |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
364 } |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
365 // av_log(NULL, AV_LOG_DEBUG, "Range Start: %lld\n", *start); |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
366 // av_log(NULL, AV_LOG_DEBUG, "Range End: %lld\n", *end); |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
367 } |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
368 |
0 | 369 typedef struct SDPParseState { |
370 /* SDP only */ | |
371 struct in_addr default_ip; | |
372 int default_ttl; | |
373 } SDPParseState; | |
374 | |
375 static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1, | |
376 int letter, const char *buf) | |
377 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
378 RTSPState *rt = s->priv_data; |
0 | 379 char buf1[64], st_type[64]; |
380 const char *p; | |
381 int codec_type, payload_type, i; | |
382 AVStream *st; | |
383 RTSPStream *rtsp_st; | |
384 struct in_addr sdp_ip; | |
385 int ttl; | |
386 | |
387 #ifdef DEBUG | |
388 printf("sdp: %c='%s'\n", letter, buf); | |
389 #endif | |
390 | |
391 p = buf; | |
392 switch(letter) { | |
393 case 'c': | |
394 get_word(buf1, sizeof(buf1), &p); | |
395 if (strcmp(buf1, "IN") != 0) | |
396 return; | |
397 get_word(buf1, sizeof(buf1), &p); | |
398 if (strcmp(buf1, "IP4") != 0) | |
399 return; | |
400 get_word_sep(buf1, sizeof(buf1), "/", &p); | |
401 if (inet_aton(buf1, &sdp_ip) == 0) | |
402 return; | |
403 ttl = 16; | |
404 if (*p == '/') { | |
405 p++; | |
406 get_word_sep(buf1, sizeof(buf1), "/", &p); | |
407 ttl = atoi(buf1); | |
408 } | |
409 if (s->nb_streams == 0) { | |
410 s1->default_ip = sdp_ip; | |
411 s1->default_ttl = ttl; | |
412 } else { | |
413 st = s->streams[s->nb_streams - 1]; | |
414 rtsp_st = st->priv_data; | |
415 rtsp_st->sdp_ip = sdp_ip; | |
416 rtsp_st->sdp_ttl = ttl; | |
417 } | |
418 break; | |
419 case 's': | |
2189 | 420 av_strlcpy(s->title, p, sizeof(s->title)); |
0 | 421 break; |
422 case 'i': | |
423 if (s->nb_streams == 0) { | |
2189 | 424 av_strlcpy(s->comment, p, sizeof(s->comment)); |
0 | 425 break; |
426 } | |
427 break; | |
428 case 'm': | |
429 /* new stream */ | |
430 get_word(st_type, sizeof(st_type), &p); | |
431 if (!strcmp(st_type, "audio")) { | |
432 codec_type = CODEC_TYPE_AUDIO; | |
433 } else if (!strcmp(st_type, "video")) { | |
434 codec_type = CODEC_TYPE_VIDEO; | |
435 } else { | |
436 return; | |
437 } | |
438 rtsp_st = av_mallocz(sizeof(RTSPStream)); | |
439 if (!rtsp_st) | |
440 return; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
441 rtsp_st->stream_index = -1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
442 dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st); |
0 | 443 |
444 rtsp_st->sdp_ip = s1->default_ip; | |
445 rtsp_st->sdp_ttl = s1->default_ttl; | |
446 | |
447 get_word(buf1, sizeof(buf1), &p); /* port */ | |
448 rtsp_st->sdp_port = atoi(buf1); | |
449 | |
450 get_word(buf1, sizeof(buf1), &p); /* protocol (ignored) */ | |
885 | 451 |
0 | 452 /* XXX: handle list of formats */ |
453 get_word(buf1, sizeof(buf1), &p); /* format list */ | |
454 rtsp_st->sdp_payload_type = atoi(buf1); | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
455 |
2759
b252e318023a
Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents:
2711
diff
changeset
|
456 if (!strcmp(ff_rtp_enc_name(rtsp_st->sdp_payload_type), "MP2T")) { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
457 /* no corresponding stream */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
458 } else { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
459 st = av_new_stream(s, 0); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
460 if (!st) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
461 return; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
462 st->priv_data = rtsp_st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
463 rtsp_st->stream_index = st->index; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
774
diff
changeset
|
464 st->codec->codec_type = codec_type; |
774 | 465 if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
466 /* if standard payload type, we can find the codec right now */ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
774
diff
changeset
|
467 rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
468 } |
0 | 469 } |
470 /* put a default control url */ | |
2189 | 471 av_strlcpy(rtsp_st->control_url, s->filename, sizeof(rtsp_st->control_url)); |
0 | 472 break; |
473 case 'a': | |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
474 if (av_strstart(p, "control:", &p) && s->nb_streams > 0) { |
0 | 475 char proto[32]; |
476 /* get the control url */ | |
477 st = s->streams[s->nb_streams - 1]; | |
478 rtsp_st = st->priv_data; | |
885 | 479 |
0 | 480 /* XXX: may need to add full url resolution */ |
511
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
391
diff
changeset
|
481 url_split(proto, sizeof(proto), NULL, 0, NULL, 0, NULL, NULL, 0, p); |
0 | 482 if (proto[0] == '\0') { |
483 /* relative control URL */ | |
2189 | 484 av_strlcat(rtsp_st->control_url, "/", sizeof(rtsp_st->control_url)); |
485 av_strlcat(rtsp_st->control_url, p, sizeof(rtsp_st->control_url)); | |
0 | 486 } else { |
2189 | 487 av_strlcpy(rtsp_st->control_url, p, sizeof(rtsp_st->control_url)); |
0 | 488 } |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
489 } else if (av_strstart(p, "rtpmap:", &p)) { |
0 | 490 /* NOTE: rtpmap is only supported AFTER the 'm=' tag */ |
885 | 491 get_word(buf1, sizeof(buf1), &p); |
0 | 492 payload_type = atoi(buf1); |
493 for(i = 0; i < s->nb_streams;i++) { | |
494 st = s->streams[i]; | |
495 rtsp_st = st->priv_data; | |
496 if (rtsp_st->sdp_payload_type == payload_type) { | |
1419 | 497 sdp_parse_rtpmap(st->codec, rtsp_st, payload_type, p); |
0 | 498 } |
499 } | |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
500 } else if (av_strstart(p, "fmtp:", &p)) { |
0 | 501 /* NOTE: fmtp is only supported AFTER the 'a=rtpmap:xxx' tag */ |
885 | 502 get_word(buf1, sizeof(buf1), &p); |
0 | 503 payload_type = atoi(buf1); |
504 for(i = 0; i < s->nb_streams;i++) { | |
505 st = s->streams[i]; | |
506 rtsp_st = st->priv_data; | |
507 if (rtsp_st->sdp_payload_type == payload_type) { | |
1419 | 508 if(rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->parse_sdp_a_line) { |
509 if(!rtsp_st->dynamic_handler->parse_sdp_a_line(st, rtsp_st->dynamic_protocol_context, buf)) { | |
510 sdp_parse_fmtp(st, p); | |
511 } | |
512 } else { | |
1424
1c39ce5c6a5d
indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents:
1419
diff
changeset
|
513 sdp_parse_fmtp(st, p); |
1419 | 514 } |
0 | 515 } |
516 } | |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
517 } else if(av_strstart(p, "framesize:", &p)) { |
1431
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
518 // let dynamic protocol handlers have a stab at the line. |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
519 get_word(buf1, sizeof(buf1), &p); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
520 payload_type = atoi(buf1); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
521 for(i = 0; i < s->nb_streams;i++) { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
522 st = s->streams[i]; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
523 rtsp_st = st->priv_data; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
524 if (rtsp_st->sdp_payload_type == payload_type) { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
525 if(rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->parse_sdp_a_line) { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
526 rtsp_st->dynamic_handler->parse_sdp_a_line(st, rtsp_st->dynamic_protocol_context, buf); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
527 } |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
528 } |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
529 } |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
530 } else if(av_strstart(p, "range:", &p)) { |
1453
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
531 int64_t start, end; |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
532 |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
533 // this is so that seeking on a streamed file can work. |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
534 rtsp_parse_range_npt(p, &start, &end); |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
535 s->start_time= start; |
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
536 s->duration= (end==AV_NOPTS_VALUE)?AV_NOPTS_VALUE:end-start; // AV_NOPTS_VALUE means live broadcast (and can't seek) |
3784
d370d80ad1df
Use RTPDynamicProtocol parse_sdp_a_line() handlers in case of unknown SDP
rbultje
parents:
3722
diff
changeset
|
537 } else if (s->nb_streams > 0) { |
d370d80ad1df
Use RTPDynamicProtocol parse_sdp_a_line() handlers in case of unknown SDP
rbultje
parents:
3722
diff
changeset
|
538 rtsp_st = s->streams[s->nb_streams - 1]->priv_data; |
d370d80ad1df
Use RTPDynamicProtocol parse_sdp_a_line() handlers in case of unknown SDP
rbultje
parents:
3722
diff
changeset
|
539 if (rtsp_st->dynamic_handler && |
d370d80ad1df
Use RTPDynamicProtocol parse_sdp_a_line() handlers in case of unknown SDP
rbultje
parents:
3722
diff
changeset
|
540 rtsp_st->dynamic_handler->parse_sdp_a_line) |
d370d80ad1df
Use RTPDynamicProtocol parse_sdp_a_line() handlers in case of unknown SDP
rbultje
parents:
3722
diff
changeset
|
541 rtsp_st->dynamic_handler->parse_sdp_a_line(s->streams[s->nb_streams - 1], |
d370d80ad1df
Use RTPDynamicProtocol parse_sdp_a_line() handlers in case of unknown SDP
rbultje
parents:
3722
diff
changeset
|
542 rtsp_st->dynamic_protocol_context, buf); |
0 | 543 } |
544 break; | |
545 } | |
546 } | |
547 | |
64 | 548 static int sdp_parse(AVFormatContext *s, const char *content) |
0 | 549 { |
550 const char *p; | |
551 int letter; | |
552 char buf[1024], *q; | |
553 SDPParseState sdp_parse_state, *s1 = &sdp_parse_state; | |
885 | 554 |
0 | 555 memset(s1, 0, sizeof(SDPParseState)); |
556 p = content; | |
557 for(;;) { | |
558 skip_spaces(&p); | |
559 letter = *p; | |
560 if (letter == '\0') | |
561 break; | |
562 p++; | |
563 if (*p != '=') | |
564 goto next_line; | |
565 p++; | |
566 /* get the content */ | |
567 q = buf; | |
172 | 568 while (*p != '\n' && *p != '\r' && *p != '\0') { |
0 | 569 if ((q - buf) < sizeof(buf) - 1) |
570 *q++ = *p; | |
571 p++; | |
572 } | |
573 *q = '\0'; | |
574 sdp_parse_line(s, s1, letter, buf); | |
575 next_line: | |
576 while (*p != '\n' && *p != '\0') | |
577 p++; | |
578 if (*p == '\n') | |
579 p++; | |
580 } | |
581 return 0; | |
582 } | |
583 | |
584 static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp) | |
585 { | |
586 const char *p; | |
587 int v; | |
588 | |
589 p = *pp; | |
590 skip_spaces(&p); | |
591 v = strtol(p, (char **)&p, 10); | |
592 if (*p == '-') { | |
593 p++; | |
594 *min_ptr = v; | |
595 v = strtol(p, (char **)&p, 10); | |
596 *max_ptr = v; | |
597 } else { | |
598 *min_ptr = v; | |
599 *max_ptr = v; | |
600 } | |
601 *pp = p; | |
602 } | |
603 | |
604 /* XXX: only one transport specification is parsed */ | |
605 static void rtsp_parse_transport(RTSPHeader *reply, const char *p) | |
606 { | |
607 char transport_protocol[16]; | |
608 char profile[16]; | |
609 char lower_transport[16]; | |
610 char parameter[16]; | |
611 RTSPTransportField *th; | |
612 char buf[256]; | |
885 | 613 |
0 | 614 reply->nb_transports = 0; |
885 | 615 |
0 | 616 for(;;) { |
617 skip_spaces(&p); | |
618 if (*p == '\0') | |
619 break; | |
620 | |
621 th = &reply->transports[reply->nb_transports]; | |
622 | |
885 | 623 get_word_sep(transport_protocol, sizeof(transport_protocol), |
0 | 624 "/", &p); |
625 if (*p == '/') | |
626 p++; | |
2865
51aa1054528c
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 2 x-pn-tng support
lu_zero
parents:
2864
diff
changeset
|
627 if (!strcasecmp (transport_protocol, "rtp")) { |
2866
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
628 get_word_sep(profile, sizeof(profile), "/;,", &p); |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
629 lower_transport[0] = '\0'; |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
630 /* rtp/avp/<protocol> */ |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
631 if (*p == '/') { |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
632 p++; |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
633 get_word_sep(lower_transport, sizeof(lower_transport), |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
634 ";,", &p); |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
635 } |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
636 } else if (!strcasecmp (transport_protocol, "x-pn-tng")) { |
ccbca87ccd5e
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 3 Reindent
lu_zero
parents:
2865
diff
changeset
|
637 /* x-pn-tng/<protocol> */ |
2865
51aa1054528c
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 2 x-pn-tng support
lu_zero
parents:
2864
diff
changeset
|
638 get_word_sep(lower_transport, sizeof(lower_transport), "/;,", &p); |
51aa1054528c
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 2 x-pn-tng support
lu_zero
parents:
2864
diff
changeset
|
639 profile[0] = '\0'; |
0 | 640 } |
172 | 641 if (!strcasecmp(lower_transport, "TCP")) |
0 | 642 th->protocol = RTSP_PROTOCOL_RTP_TCP; |
643 else | |
644 th->protocol = RTSP_PROTOCOL_RTP_UDP; | |
885 | 645 |
0 | 646 if (*p == ';') |
647 p++; | |
648 /* get each parameter */ | |
649 while (*p != '\0' && *p != ',') { | |
650 get_word_sep(parameter, sizeof(parameter), "=;,", &p); | |
651 if (!strcmp(parameter, "port")) { | |
652 if (*p == '=') { | |
653 p++; | |
654 rtsp_parse_range(&th->port_min, &th->port_max, &p); | |
655 } | |
656 } else if (!strcmp(parameter, "client_port")) { | |
657 if (*p == '=') { | |
658 p++; | |
885 | 659 rtsp_parse_range(&th->client_port_min, |
0 | 660 &th->client_port_max, &p); |
661 } | |
662 } else if (!strcmp(parameter, "server_port")) { | |
663 if (*p == '=') { | |
664 p++; | |
885 | 665 rtsp_parse_range(&th->server_port_min, |
0 | 666 &th->server_port_max, &p); |
667 } | |
668 } else if (!strcmp(parameter, "interleaved")) { | |
669 if (*p == '=') { | |
670 p++; | |
885 | 671 rtsp_parse_range(&th->interleaved_min, |
0 | 672 &th->interleaved_max, &p); |
673 } | |
674 } else if (!strcmp(parameter, "multicast")) { | |
675 if (th->protocol == RTSP_PROTOCOL_RTP_UDP) | |
676 th->protocol = RTSP_PROTOCOL_RTP_UDP_MULTICAST; | |
677 } else if (!strcmp(parameter, "ttl")) { | |
678 if (*p == '=') { | |
679 p++; | |
680 th->ttl = strtol(p, (char **)&p, 10); | |
681 } | |
682 } else if (!strcmp(parameter, "destination")) { | |
683 struct in_addr ipaddr; | |
684 | |
685 if (*p == '=') { | |
686 p++; | |
687 get_word_sep(buf, sizeof(buf), ";,", &p); | |
885 | 688 if (inet_aton(buf, &ipaddr)) |
0 | 689 th->destination = ntohl(ipaddr.s_addr); |
690 } | |
691 } | |
692 while (*p != ';' && *p != '\0' && *p != ',') | |
693 p++; | |
694 if (*p == ';') | |
695 p++; | |
696 } | |
697 if (*p == ',') | |
698 p++; | |
699 | |
700 reply->nb_transports++; | |
701 } | |
702 } | |
703 | |
704 void rtsp_parse_line(RTSPHeader *reply, const char *buf) | |
705 { | |
706 const char *p; | |
707 | |
708 /* NOTE: we do case independent match for broken servers */ | |
709 p = buf; | |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
710 if (av_stristart(p, "Session:", &p)) { |
0 | 711 get_word_sep(reply->session_id, sizeof(reply->session_id), ";", &p); |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
712 } else if (av_stristart(p, "Content-Length:", &p)) { |
0 | 713 reply->content_length = strtol(p, NULL, 10); |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
714 } else if (av_stristart(p, "Transport:", &p)) { |
0 | 715 rtsp_parse_transport(reply, p); |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
716 } else if (av_stristart(p, "CSeq:", &p)) { |
0 | 717 reply->seq = strtol(p, NULL, 10); |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
718 } else if (av_stristart(p, "Range:", &p)) { |
1453
c0235bab9e92
Add support for getting duration of a RTP stream (for seeking in stream)
gpoirier
parents:
1431
diff
changeset
|
719 rtsp_parse_range_npt(p, &reply->range_start, &reply->range_end); |
0 | 720 } |
721 } | |
722 | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
723 static int url_readbuf(URLContext *h, unsigned char *buf, int size) |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
724 { |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
725 int ret, len; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
726 |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
727 len = 0; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
728 while (len < size) { |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
729 ret = url_read(h, buf+len, size-len); |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
730 if (ret < 1) |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
731 return ret; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
732 len += ret; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
733 } |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
734 return len; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
735 } |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
736 |
179 | 737 /* skip a RTP/TCP interleaved packet */ |
738 static void rtsp_skip_packet(AVFormatContext *s) | |
739 { | |
740 RTSPState *rt = s->priv_data; | |
741 int ret, len, len1; | |
742 uint8_t buf[1024]; | |
743 | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
744 ret = url_readbuf(rt->rtsp_hd, buf, 3); |
179 | 745 if (ret != 3) |
746 return; | |
2222 | 747 len = AV_RB16(buf + 1); |
179 | 748 #ifdef DEBUG |
749 printf("skipping RTP packet len=%d\n", len); | |
750 #endif | |
751 /* skip payload */ | |
752 while (len > 0) { | |
753 len1 = len; | |
754 if (len1 > sizeof(buf)) | |
755 len1 = sizeof(buf); | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
756 ret = url_readbuf(rt->rtsp_hd, buf, len1); |
179 | 757 if (ret != len1) |
758 return; | |
759 len -= len1; | |
760 } | |
761 } | |
0 | 762 |
885 | 763 static void rtsp_send_cmd(AVFormatContext *s, |
764 const char *cmd, RTSPHeader *reply, | |
0 | 765 unsigned char **content_ptr) |
766 { | |
767 RTSPState *rt = s->priv_data; | |
768 char buf[4096], buf1[1024], *q; | |
769 unsigned char ch; | |
770 const char *p; | |
771 int content_length, line_count; | |
772 unsigned char *content = NULL; | |
773 | |
774 memset(reply, 0, sizeof(RTSPHeader)); | |
775 | |
776 rt->seq++; | |
2189 | 777 av_strlcpy(buf, cmd, sizeof(buf)); |
172 | 778 snprintf(buf1, sizeof(buf1), "CSeq: %d\r\n", rt->seq); |
2189 | 779 av_strlcat(buf, buf1, sizeof(buf)); |
0 | 780 if (rt->session_id[0] != '\0' && !strstr(cmd, "\nIf-Match:")) { |
172 | 781 snprintf(buf1, sizeof(buf1), "Session: %s\r\n", rt->session_id); |
2189 | 782 av_strlcat(buf, buf1, sizeof(buf)); |
0 | 783 } |
2189 | 784 av_strlcat(buf, "\r\n", sizeof(buf)); |
0 | 785 #ifdef DEBUG |
786 printf("Sending:\n%s--\n", buf); | |
787 #endif | |
788 url_write(rt->rtsp_hd, buf, strlen(buf)); | |
789 | |
790 /* parse reply (XXX: use buffers) */ | |
791 line_count = 0; | |
792 rt->last_reply[0] = '\0'; | |
793 for(;;) { | |
794 q = buf; | |
795 for(;;) { | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
796 if (url_readbuf(rt->rtsp_hd, &ch, 1) != 1) |
0 | 797 break; |
798 if (ch == '\n') | |
799 break; | |
179 | 800 if (ch == '$') { |
801 /* XXX: only parse it if first char on line ? */ | |
802 rtsp_skip_packet(s); | |
803 } else if (ch != '\r') { | |
0 | 804 if ((q - buf) < sizeof(buf) - 1) |
805 *q++ = ch; | |
806 } | |
807 } | |
808 *q = '\0'; | |
809 #ifdef DEBUG | |
810 printf("line='%s'\n", buf); | |
811 #endif | |
812 /* test if last line */ | |
813 if (buf[0] == '\0') | |
814 break; | |
815 p = buf; | |
816 if (line_count == 0) { | |
817 /* get reply code */ | |
818 get_word(buf1, sizeof(buf1), &p); | |
819 get_word(buf1, sizeof(buf1), &p); | |
820 reply->status_code = atoi(buf1); | |
821 } else { | |
822 rtsp_parse_line(reply, p); | |
2189 | 823 av_strlcat(rt->last_reply, p, sizeof(rt->last_reply)); |
824 av_strlcat(rt->last_reply, "\n", sizeof(rt->last_reply)); | |
0 | 825 } |
826 line_count++; | |
827 } | |
885 | 828 |
0 | 829 if (rt->session_id[0] == '\0' && reply->session_id[0] != '\0') |
2189 | 830 av_strlcpy(rt->session_id, reply->session_id, sizeof(rt->session_id)); |
885 | 831 |
0 | 832 content_length = reply->content_length; |
833 if (content_length > 0) { | |
834 /* leave some room for a trailing '\0' (useful for simple parsing) */ | |
835 content = av_malloc(content_length + 1); | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
836 (void)url_readbuf(rt->rtsp_hd, content, content_length); |
0 | 837 content[content_length] = '\0'; |
838 } | |
839 if (content_ptr) | |
840 *content_ptr = content; | |
2263 | 841 else |
842 av_free(content); | |
0 | 843 } |
844 | |
845 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
846 /* close and free RTSP streams */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
847 static void rtsp_close_streams(RTSPState *rt) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
848 { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
849 int i; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
850 RTSPStream *rtsp_st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
851 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
852 for(i=0;i<rt->nb_rtsp_streams;i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
853 rtsp_st = rt->rtsp_streams[i]; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
854 if (rtsp_st) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
855 if (rtsp_st->rtp_ctx) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
856 rtp_parse_close(rtsp_st->rtp_ctx); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
857 if (rtsp_st->rtp_handle) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
858 url_close(rtsp_st->rtp_handle); |
1419 | 859 if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context) |
860 rtsp_st->dynamic_handler->close(rtsp_st->dynamic_protocol_context); | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
861 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
862 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
863 av_free(rt->rtsp_streams); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
864 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
865 |
3147
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
866 /** |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
867 * @returns 0 on success, <0 on error, 1 if protocol is unavailable. |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
868 */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
869 static int |
3150
095003bbe73e
Change protocol_mask into protocol, since we always just try a single one per
rbultje
parents:
3149
diff
changeset
|
870 make_setup_request (AVFormatContext *s, const char *host, int port, int protocol) |
0 | 871 { |
872 RTSPState *rt = s->priv_data; | |
3147
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
873 int j, i, err; |
0 | 874 RTSPStream *rtsp_st; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
875 AVStream *st; |
3147
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
876 RTSPHeader reply1, *reply = &reply1; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
877 char cmd[2048]; |
885 | 878 |
0 | 879 /* for each stream, make the setup request */ |
880 /* XXX: we assume the same server is used for the control of each | |
881 RTSP stream */ | |
774 | 882 |
883 for(j = RTSP_RTP_PORT_MIN, i = 0; i < rt->nb_rtsp_streams; ++i) { | |
0 | 884 char transport[2048]; |
885 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
886 rtsp_st = rt->rtsp_streams[i]; |
0 | 887 |
888 /* compute available transports */ | |
889 transport[0] = '\0'; | |
890 | |
891 /* RTP/UDP */ | |
3150
095003bbe73e
Change protocol_mask into protocol, since we always just try a single one per
rbultje
parents:
3149
diff
changeset
|
892 if (protocol == RTSP_PROTOCOL_RTP_UDP) { |
0 | 893 char buf[256]; |
894 | |
895 /* first try in specified port range */ | |
774 | 896 if (RTSP_RTP_PORT_MIN != 0) { |
897 while(j <= RTSP_RTP_PORT_MAX) { | |
2711
0ff7c5289e68
Specify the server address when opening an rtp:// URL in rtsp.c, so
lucabe
parents:
2684
diff
changeset
|
898 snprintf(buf, sizeof(buf), "rtp://%s?localport=%d", host, j); |
2684
3dd4b622f4e3
If local port n is not available, try n + 2 instead of continuing to bind
lucabe
parents:
2681
diff
changeset
|
899 j += 2; /* we will use two port by rtp stream (rtp and rtcp) */ |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
900 if (url_open(&rtsp_st->rtp_handle, buf, URL_RDWR) == 0) { |
0 | 901 goto rtp_opened; |
774 | 902 } |
0 | 903 } |
904 } | |
905 | |
774 | 906 /* then try on any port |
907 ** if (url_open(&rtsp_st->rtp_handle, "rtp://", URL_RDONLY) < 0) { | |
908 ** err = AVERROR_INVALIDDATA; | |
909 ** goto fail; | |
910 ** } | |
911 */ | |
0 | 912 |
913 rtp_opened: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
914 port = rtp_get_local_port(rtsp_st->rtp_handle); |
0 | 915 if (transport[0] != '\0') |
2189 | 916 av_strlcat(transport, ",", sizeof(transport)); |
0 | 917 snprintf(transport + strlen(transport), sizeof(transport) - strlen(transport) - 1, |
918 "RTP/AVP/UDP;unicast;client_port=%d-%d", | |
919 port, port + 1); | |
920 } | |
921 | |
922 /* RTP/TCP */ | |
3150
095003bbe73e
Change protocol_mask into protocol, since we always just try a single one per
rbultje
parents:
3149
diff
changeset
|
923 else if (protocol == RTSP_PROTOCOL_RTP_TCP) { |
0 | 924 if (transport[0] != '\0') |
2189 | 925 av_strlcat(transport, ",", sizeof(transport)); |
0 | 926 snprintf(transport + strlen(transport), sizeof(transport) - strlen(transport) - 1, |
927 "RTP/AVP/TCP"); | |
928 } | |
929 | |
3150
095003bbe73e
Change protocol_mask into protocol, since we always just try a single one per
rbultje
parents:
3149
diff
changeset
|
930 else if (protocol == RTSP_PROTOCOL_RTP_UDP_MULTICAST) { |
0 | 931 if (transport[0] != '\0') |
2189 | 932 av_strlcat(transport, ",", sizeof(transport)); |
885 | 933 snprintf(transport + strlen(transport), |
0 | 934 sizeof(transport) - strlen(transport) - 1, |
935 "RTP/AVP/UDP;multicast"); | |
936 } | |
885 | 937 snprintf(cmd, sizeof(cmd), |
172 | 938 "SETUP %s RTSP/1.0\r\n" |
939 "Transport: %s\r\n", | |
0 | 940 rtsp_st->control_url, transport); |
941 rtsp_send_cmd(s, cmd, reply, NULL); | |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
942 if (reply->status_code == 461 /* Unsupported protocol */ && i == 0) { |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
943 err = 1; |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
944 goto fail; |
3151 | 945 } else if (reply->status_code != RTSP_STATUS_OK || |
946 reply->nb_transports != 1) { | |
0 | 947 err = AVERROR_INVALIDDATA; |
948 goto fail; | |
949 } | |
950 | |
951 /* XXX: same protocol for all streams is required */ | |
952 if (i > 0) { | |
953 if (reply->transports[0].protocol != rt->protocol) { | |
954 err = AVERROR_INVALIDDATA; | |
955 goto fail; | |
956 } | |
957 } else { | |
958 rt->protocol = reply->transports[0].protocol; | |
959 } | |
960 | |
961 /* close RTP connection if not choosen */ | |
962 if (reply->transports[0].protocol != RTSP_PROTOCOL_RTP_UDP && | |
3150
095003bbe73e
Change protocol_mask into protocol, since we always just try a single one per
rbultje
parents:
3149
diff
changeset
|
963 (protocol == RTSP_PROTOCOL_RTP_UDP)) { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
964 url_close(rtsp_st->rtp_handle); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
965 rtsp_st->rtp_handle = NULL; |
0 | 966 } |
967 | |
968 switch(reply->transports[0].protocol) { | |
969 case RTSP_PROTOCOL_RTP_TCP: | |
970 rtsp_st->interleaved_min = reply->transports[0].interleaved_min; | |
971 rtsp_st->interleaved_max = reply->transports[0].interleaved_max; | |
972 break; | |
885 | 973 |
0 | 974 case RTSP_PROTOCOL_RTP_UDP: |
975 { | |
976 char url[1024]; | |
885 | 977 |
0 | 978 /* XXX: also use address if specified */ |
885 | 979 snprintf(url, sizeof(url), "rtp://%s:%d", |
0 | 980 host, reply->transports[0].server_port_min); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
981 if (rtp_set_remote_url(rtsp_st->rtp_handle, url) < 0) { |
0 | 982 err = AVERROR_INVALIDDATA; |
983 goto fail; | |
984 } | |
985 } | |
986 break; | |
987 case RTSP_PROTOCOL_RTP_UDP_MULTICAST: | |
988 { | |
989 char url[1024]; | |
2246
6dade35dc9b3
rtsp multicast fix by Thijs Vermeir $1$2@gmail.com
lu_zero
parents:
2222
diff
changeset
|
990 struct in_addr in; |
0 | 991 |
2246
6dade35dc9b3
rtsp multicast fix by Thijs Vermeir $1$2@gmail.com
lu_zero
parents:
2222
diff
changeset
|
992 in.s_addr = htonl(reply->transports[0].destination); |
3221 | 993 snprintf(url, sizeof(url), "rtp://%s:%d?ttl=%d", |
2246
6dade35dc9b3
rtsp multicast fix by Thijs Vermeir $1$2@gmail.com
lu_zero
parents:
2222
diff
changeset
|
994 inet_ntoa(in), |
6dade35dc9b3
rtsp multicast fix by Thijs Vermeir $1$2@gmail.com
lu_zero
parents:
2222
diff
changeset
|
995 reply->transports[0].port_min, |
6dade35dc9b3
rtsp multicast fix by Thijs Vermeir $1$2@gmail.com
lu_zero
parents:
2222
diff
changeset
|
996 reply->transports[0].ttl); |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
997 if (url_open(&rtsp_st->rtp_handle, url, URL_RDWR) < 0) { |
0 | 998 err = AVERROR_INVALIDDATA; |
999 goto fail; | |
1000 } | |
1001 } | |
1002 break; | |
1003 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1004 /* open the RTP context */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1005 st = NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1006 if (rtsp_st->stream_index >= 0) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1007 st = s->streams[rtsp_st->stream_index]; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1008 if (!st) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1009 s->ctx_flags |= AVFMTCTX_NOHEADER; |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1010 rtsp_st->rtp_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data); |
774 | 1011 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1012 if (!rtsp_st->rtp_ctx) { |
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2263
diff
changeset
|
1013 err = AVERROR(ENOMEM); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1014 goto fail; |
1419 | 1015 } else { |
1016 if(rtsp_st->dynamic_handler) { | |
1017 rtsp_st->rtp_ctx->dynamic_protocol_context= rtsp_st->dynamic_protocol_context; | |
1018 rtsp_st->rtp_ctx->parse_packet= rtsp_st->dynamic_handler->parse_packet; | |
1019 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1020 } |
0 | 1021 } |
1022 | |
3147
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1023 return 0; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1024 |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1025 fail: |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1026 for (i=0; i<rt->nb_rtsp_streams; i++) { |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1027 if (rt->rtsp_streams[i]->rtp_handle) { |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1028 url_close(rt->rtsp_streams[i]->rtp_handle); |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1029 rt->rtsp_streams[i]->rtp_handle = NULL; |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1030 } |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1031 } |
3147
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1032 return err; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1033 } |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1034 |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1035 static int rtsp_read_header(AVFormatContext *s, |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1036 AVFormatParameters *ap) |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1037 { |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1038 RTSPState *rt = s->priv_data; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1039 char host[1024], path[1024], tcpname[1024], cmd[2048], *option_list, *option; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1040 URLContext *rtsp_hd; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1041 int port, ret, err; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1042 RTSPHeader reply1, *reply = &reply1; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1043 unsigned char *content = NULL; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1044 int protocol_mask = 0; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1045 |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1046 /* extract hostname and port */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1047 url_split(NULL, 0, NULL, 0, |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1048 host, sizeof(host), &port, path, sizeof(path), s->filename); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1049 if (port < 0) |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1050 port = RTSP_DEFAULT_PORT; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1051 |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1052 /* search for options */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1053 option_list = strchr(path, '?'); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1054 if (option_list) { |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1055 /* remove the options from the path */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1056 *option_list++ = 0; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1057 while(option_list) { |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1058 /* move the option pointer */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1059 option = option_list; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1060 option_list = strchr(option_list, '&'); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1061 if (option_list) |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1062 *(option_list++) = 0; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1063 /* handle the options */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1064 if (strcmp(option, "udp") == 0) |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1065 protocol_mask = (1<< RTSP_PROTOCOL_RTP_UDP); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1066 else if (strcmp(option, "multicast") == 0) |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1067 protocol_mask = (1<< RTSP_PROTOCOL_RTP_UDP_MULTICAST); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1068 else if (strcmp(option, "tcp") == 0) |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1069 protocol_mask = (1<< RTSP_PROTOCOL_RTP_TCP); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1070 } |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1071 } |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1072 |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1073 if (!protocol_mask) |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1074 protocol_mask = (1 << RTSP_PROTOCOL_RTP_LAST) - 1; |
3147
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1075 |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1076 /* open the tcp connexion */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1077 snprintf(tcpname, sizeof(tcpname), "tcp://%s:%d", host, port); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1078 if (url_open(&rtsp_hd, tcpname, URL_RDWR) < 0) |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1079 return AVERROR(EIO); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1080 rt->rtsp_hd = rtsp_hd; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1081 rt->seq = 0; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1082 |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1083 /* describe the stream */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1084 snprintf(cmd, sizeof(cmd), |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1085 "DESCRIBE %s RTSP/1.0\r\n" |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1086 "Accept: application/sdp\r\n", |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1087 s->filename); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1088 rtsp_send_cmd(s, cmd, reply, &content); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1089 if (!content) { |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1090 err = AVERROR_INVALIDDATA; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1091 goto fail; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1092 } |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1093 if (reply->status_code != RTSP_STATUS_OK) { |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1094 err = AVERROR_INVALIDDATA; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1095 goto fail; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1096 } |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1097 |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1098 /* now we got the SDP description, we parse it */ |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1099 ret = sdp_parse(s, (const char *)content); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1100 av_freep(&content); |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1101 if (ret < 0) { |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1102 err = AVERROR_INVALIDDATA; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1103 goto fail; |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1104 } |
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1105 |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1106 do { |
3150
095003bbe73e
Change protocol_mask into protocol, since we always just try a single one per
rbultje
parents:
3149
diff
changeset
|
1107 int protocol = ff_log2_tab[protocol_mask & ~(protocol_mask - 1)]; |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1108 |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1109 err = make_setup_request(s, host, port, protocol); |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1110 if (err < 0) |
3151 | 1111 goto fail; |
3150
095003bbe73e
Change protocol_mask into protocol, since we always just try a single one per
rbultje
parents:
3149
diff
changeset
|
1112 protocol_mask &= ~(1 << protocol); |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1113 if (protocol_mask == 0 && err == 1) { |
3202
98e633b72d38
use FF_NETERROR to make winsock happy, patch from prossATxvidDoTorg
lu_zero
parents:
3151
diff
changeset
|
1114 err = AVERROR(FF_NETERROR(EPROTONOSUPPORT)); |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1115 goto fail; |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1116 } |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
3147
diff
changeset
|
1117 } while (err); |
3147
91d65fdf91e1
Split the SETUP request into a separate function, as a prelude into allowing
rbultje
parents:
2884
diff
changeset
|
1118 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1119 rt->state = RTSP_STATE_IDLE; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1120 rt->seek_timestamp = 0; /* default is to start stream at position |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1121 zero */ |
1003 | 1122 if (ap->initial_pause) { |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1123 /* do not start immediately */ |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1124 } else { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1125 if (rtsp_read_play(s) < 0) { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1126 err = AVERROR_INVALIDDATA; |
0 | 1127 goto fail; |
1128 } | |
1129 } | |
1130 return 0; | |
1131 fail: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1132 rtsp_close_streams(rt); |
0 | 1133 av_freep(&content); |
1134 url_close(rt->rtsp_hd); | |
1135 return err; | |
1136 } | |
1137 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1138 static int tcp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st, |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1139 uint8_t *buf, int buf_size) |
0 | 1140 { |
1141 RTSPState *rt = s->priv_data; | |
172 | 1142 int id, len, i, ret; |
0 | 1143 RTSPStream *rtsp_st; |
1144 | |
172 | 1145 #ifdef DEBUG_RTP_TCP |
1146 printf("tcp_read_packet:\n"); | |
1147 #endif | |
0 | 1148 redo: |
1149 for(;;) { | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
1150 ret = url_readbuf(rt->rtsp_hd, buf, 1); |
172 | 1151 #ifdef DEBUG_RTP_TCP |
1152 printf("ret=%d c=%02x [%c]\n", ret, buf[0], buf[0]); | |
1153 #endif | |
1154 if (ret != 1) | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1155 return -1; |
172 | 1156 if (buf[0] == '$') |
0 | 1157 break; |
1158 } | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
1159 ret = url_readbuf(rt->rtsp_hd, buf, 3); |
172 | 1160 if (ret != 3) |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1161 return -1; |
172 | 1162 id = buf[0]; |
2222 | 1163 len = AV_RB16(buf + 1); |
172 | 1164 #ifdef DEBUG_RTP_TCP |
1165 printf("id=%d len=%d\n", id, len); | |
1166 #endif | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1167 if (len > buf_size || len < 12) |
0 | 1168 goto redo; |
1169 /* get the data */ | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
1170 ret = url_readbuf(rt->rtsp_hd, buf, len); |
172 | 1171 if (ret != len) |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1172 return -1; |
885 | 1173 |
0 | 1174 /* find the matching stream */ |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1175 for(i = 0; i < rt->nb_rtsp_streams; i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1176 rtsp_st = rt->rtsp_streams[i]; |
885 | 1177 if (id >= rtsp_st->interleaved_min && |
1178 id <= rtsp_st->interleaved_max) | |
0 | 1179 goto found; |
1180 } | |
1181 goto redo; | |
1182 found: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1183 *prtsp_st = rtsp_st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1184 return len; |
0 | 1185 } |
1186 | |
885 | 1187 static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st, |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1188 uint8_t *buf, int buf_size) |
0 | 1189 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1190 RTSPState *rt = s->priv_data; |
0 | 1191 RTSPStream *rtsp_st; |
1192 fd_set rfds; | |
1193 int fd1, fd2, fd_max, n, i, ret; | |
1194 struct timeval tv; | |
1195 | |
1196 for(;;) { | |
179 | 1197 if (url_interrupt_cb()) |
2772
b43dc2901f83
Make av_read_frame with rtsp client return EINTR on interrupt
lu_zero
parents:
2771
diff
changeset
|
1198 return AVERROR(EINTR); |
0 | 1199 FD_ZERO(&rfds); |
1200 fd_max = -1; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1201 for(i = 0; i < rt->nb_rtsp_streams; i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1202 rtsp_st = rt->rtsp_streams[i]; |
0 | 1203 /* currently, we cannot probe RTCP handle because of blocking restrictions */ |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1204 rtp_get_file_handles(rtsp_st->rtp_handle, &fd1, &fd2); |
0 | 1205 if (fd1 > fd_max) |
1206 fd_max = fd1; | |
1207 FD_SET(fd1, &rfds); | |
1208 } | |
1209 tv.tv_sec = 0; | |
179 | 1210 tv.tv_usec = 100 * 1000; |
0 | 1211 n = select(fd_max + 1, &rfds, NULL, NULL, &tv); |
1212 if (n > 0) { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1213 for(i = 0; i < rt->nb_rtsp_streams; i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1214 rtsp_st = rt->rtsp_streams[i]; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1215 rtp_get_file_handles(rtsp_st->rtp_handle, &fd1, &fd2); |
0 | 1216 if (FD_ISSET(fd1, &rfds)) { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1217 ret = url_read(rtsp_st->rtp_handle, buf, buf_size); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1218 if (ret > 0) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1219 *prtsp_st = rtsp_st; |
0 | 1220 return ret; |
1221 } | |
1222 } | |
1223 } | |
1224 } | |
1225 } | |
1226 } | |
1227 | |
1228 static int rtsp_read_packet(AVFormatContext *s, | |
1229 AVPacket *pkt) | |
1230 { | |
1231 RTSPState *rt = s->priv_data; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1232 RTSPStream *rtsp_st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1233 int ret, len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1234 uint8_t buf[RTP_MAX_PACKET_LENGTH]; |
0 | 1235 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1236 /* get next frames from the same RTP packet */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1237 if (rt->cur_rtp) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1238 ret = rtp_parse_packet(rt->cur_rtp, pkt, NULL, 0); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1239 if (ret == 0) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1240 rt->cur_rtp = NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1241 return 0; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1242 } else if (ret == 1) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1243 return 0; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1244 } else { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1245 rt->cur_rtp = NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1246 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1247 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1248 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1249 /* read next RTP packet */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1250 redo: |
0 | 1251 switch(rt->protocol) { |
1252 default: | |
1253 case RTSP_PROTOCOL_RTP_TCP: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1254 len = tcp_read_packet(s, &rtsp_st, buf, sizeof(buf)); |
0 | 1255 break; |
1256 case RTSP_PROTOCOL_RTP_UDP: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1257 case RTSP_PROTOCOL_RTP_UDP_MULTICAST: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1258 len = udp_read_packet(s, &rtsp_st, buf, sizeof(buf)); |
2219
fa6c59a5ab0d
check udp_read_packet return value not to access uninitialized memory
benoit
parents:
2193
diff
changeset
|
1259 if (len >=0 && rtsp_st->rtp_ctx) |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1260 rtp_check_and_send_back_rr(rtsp_st->rtp_ctx, len); |
0 | 1261 break; |
1262 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1263 if (len < 0) |
2775
1301147d9450
Make av_read_frame with rtsp client return EINTR on interrupt
lu_zero
parents:
2772
diff
changeset
|
1264 return len; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1265 ret = rtp_parse_packet(rtsp_st->rtp_ctx, pkt, buf, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1266 if (ret < 0) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1267 goto redo; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1268 if (ret == 1) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1269 /* more packets may follow, so we save the RTP context */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1270 rt->cur_rtp = rtsp_st->rtp_ctx; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1271 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1272 return 0; |
0 | 1273 } |
1274 | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1275 static int rtsp_read_play(AVFormatContext *s) |
179 | 1276 { |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1277 RTSPState *rt = s->priv_data; |
179 | 1278 RTSPHeader reply1, *reply = &reply1; |
1279 char cmd[1024]; | |
1280 | |
370
845f9de2c883
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
304
diff
changeset
|
1281 av_log(s, AV_LOG_DEBUG, "hello state=%d\n", rt->state); |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1282 |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1283 if (rt->state == RTSP_STATE_PAUSED) { |
885 | 1284 snprintf(cmd, sizeof(cmd), |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1285 "PLAY %s RTSP/1.0\r\n", |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1286 s->filename); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1287 } else { |
885 | 1288 snprintf(cmd, sizeof(cmd), |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1289 "PLAY %s RTSP/1.0\r\n" |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1290 "Range: npt=%0.3f-\r\n", |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1291 s->filename, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1292 (double)rt->seek_timestamp / AV_TIME_BASE); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1293 } |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1294 rtsp_send_cmd(s, cmd, reply, NULL); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1295 if (reply->status_code != RTSP_STATUS_OK) { |
179 | 1296 return -1; |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1297 } else { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1298 rt->state = RTSP_STATE_PLAYING; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1299 return 0; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1300 } |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1301 } |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1302 |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1303 /* pause the stream */ |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1304 static int rtsp_read_pause(AVFormatContext *s) |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1305 { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1306 RTSPState *rt = s->priv_data; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1307 RTSPHeader reply1, *reply = &reply1; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1308 char cmd[1024]; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1309 |
179 | 1310 rt = s->priv_data; |
885 | 1311 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1312 if (rt->state != RTSP_STATE_PLAYING) |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1313 return 0; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1314 |
885 | 1315 snprintf(cmd, sizeof(cmd), |
179 | 1316 "PAUSE %s RTSP/1.0\r\n", |
1317 s->filename); | |
1318 rtsp_send_cmd(s, cmd, reply, NULL); | |
1319 if (reply->status_code != RTSP_STATUS_OK) { | |
1320 return -1; | |
1321 } else { | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1322 rt->state = RTSP_STATE_PAUSED; |
179 | 1323 return 0; |
1324 } | |
1325 } | |
1326 | |
885 | 1327 static int rtsp_read_seek(AVFormatContext *s, int stream_index, |
558 | 1328 int64_t timestamp, int flags) |
179 | 1329 { |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1330 RTSPState *rt = s->priv_data; |
885 | 1331 |
2408 | 1332 rt->seek_timestamp = av_rescale_q(timestamp, s->streams[stream_index]->time_base, AV_TIME_BASE_Q); |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1333 switch(rt->state) { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1334 default: |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1335 case RTSP_STATE_IDLE: |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1336 break; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1337 case RTSP_STATE_PLAYING: |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1338 if (rtsp_read_play(s) != 0) |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1339 return -1; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1340 break; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1341 case RTSP_STATE_PAUSED: |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1342 rt->state = RTSP_STATE_IDLE; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1343 break; |
179 | 1344 } |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1345 return 0; |
179 | 1346 } |
1347 | |
0 | 1348 static int rtsp_read_close(AVFormatContext *s) |
1349 { | |
1350 RTSPState *rt = s->priv_data; | |
1351 RTSPHeader reply1, *reply = &reply1; | |
1352 char cmd[1024]; | |
1353 | |
172 | 1354 #if 0 |
0 | 1355 /* NOTE: it is valid to flush the buffer here */ |
1356 if (rt->protocol == RTSP_PROTOCOL_RTP_TCP) { | |
1357 url_fclose(&rt->rtsp_gb); | |
1358 } | |
172 | 1359 #endif |
885 | 1360 snprintf(cmd, sizeof(cmd), |
172 | 1361 "TEARDOWN %s RTSP/1.0\r\n", |
0 | 1362 s->filename); |
1363 rtsp_send_cmd(s, cmd, reply, NULL); | |
1364 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1365 rtsp_close_streams(rt); |
0 | 1366 url_close(rt->rtsp_hd); |
1367 return 0; | |
1368 } | |
1369 | |
2054 | 1370 #ifdef CONFIG_RTSP_DEMUXER |
1167 | 1371 AVInputFormat rtsp_demuxer = { |
0 | 1372 "rtsp", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3286
diff
changeset
|
1373 NULL_IF_CONFIG_SMALL("RTSP input format"), |
0 | 1374 sizeof(RTSPState), |
1375 rtsp_probe, | |
1376 rtsp_read_header, | |
1377 rtsp_read_packet, | |
1378 rtsp_read_close, | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1379 rtsp_read_seek, |
0 | 1380 .flags = AVFMT_NOFILE, |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1381 .read_play = rtsp_read_play, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1382 .read_pause = rtsp_read_pause, |
0 | 1383 }; |
2054 | 1384 #endif |
0 | 1385 |
1386 static int sdp_probe(AVProbeData *p1) | |
1387 { | |
706
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1388 const char *p = p1->buf, *p_end = p1->buf + p1->buf_size; |
0 | 1389 |
1390 /* we look for a line beginning "c=IN IP4" */ | |
706
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1391 while (p < p_end && *p != '\0') { |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
1392 if (p + sizeof("c=IN IP4") - 1 < p_end && av_strstart(p, "c=IN IP4", NULL)) |
0 | 1393 return AVPROBE_SCORE_MAX / 2; |
706
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1394 |
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1395 while(p < p_end - 1 && *p != '\n') p++; |
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1396 if (++p >= p_end) |
0 | 1397 break; |
1398 if (*p == '\r') | |
1399 p++; | |
1400 } | |
1401 return 0; | |
1402 } | |
1403 | |
1404 #define SDP_MAX_SIZE 8192 | |
1405 | |
1406 static int sdp_read_header(AVFormatContext *s, | |
1407 AVFormatParameters *ap) | |
1408 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1409 RTSPState *rt = s->priv_data; |
0 | 1410 RTSPStream *rtsp_st; |
1411 int size, i, err; | |
1412 char *content; | |
1413 char url[1024]; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1414 AVStream *st; |
0 | 1415 |
1416 /* read the whole sdp file */ | |
1417 /* XXX: better loading */ | |
1418 content = av_malloc(SDP_MAX_SIZE); | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2759
diff
changeset
|
1419 size = get_buffer(s->pb, content, SDP_MAX_SIZE - 1); |
0 | 1420 if (size <= 0) { |
1421 av_free(content); | |
1422 return AVERROR_INVALIDDATA; | |
1423 } | |
1424 content[size] ='\0'; | |
1425 | |
1426 sdp_parse(s, content); | |
1427 av_free(content); | |
1428 | |
1429 /* open each RTP stream */ | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1430 for(i=0;i<rt->nb_rtsp_streams;i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1431 rtsp_st = rt->rtsp_streams[i]; |
885 | 1432 |
3222 | 1433 snprintf(url, sizeof(url), "rtp://%s:%d?localport=%d&ttl=%d", |
885 | 1434 inet_ntoa(rtsp_st->sdp_ip), |
0 | 1435 rtsp_st->sdp_port, |
3222 | 1436 rtsp_st->sdp_port, |
0 | 1437 rtsp_st->sdp_ttl); |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1438 if (url_open(&rtsp_st->rtp_handle, url, URL_RDWR) < 0) { |
0 | 1439 err = AVERROR_INVALIDDATA; |
1440 goto fail; | |
1441 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1442 /* open the RTP context */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1443 st = NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1444 if (rtsp_st->stream_index >= 0) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1445 st = s->streams[rtsp_st->stream_index]; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1446 if (!st) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1447 s->ctx_flags |= AVFMTCTX_NOHEADER; |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1448 rtsp_st->rtp_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1449 if (!rtsp_st->rtp_ctx) { |
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2263
diff
changeset
|
1450 err = AVERROR(ENOMEM); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1451 goto fail; |
1419 | 1452 } else { |
1453 if(rtsp_st->dynamic_handler) { | |
1454 rtsp_st->rtp_ctx->dynamic_protocol_context= rtsp_st->dynamic_protocol_context; | |
1455 rtsp_st->rtp_ctx->parse_packet= rtsp_st->dynamic_handler->parse_packet; | |
1456 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1457 } |
0 | 1458 } |
1459 return 0; | |
1460 fail: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1461 rtsp_close_streams(rt); |
0 | 1462 return err; |
1463 } | |
1464 | |
1465 static int sdp_read_packet(AVFormatContext *s, | |
1466 AVPacket *pkt) | |
1467 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1468 return rtsp_read_packet(s, pkt); |
0 | 1469 } |
1470 | |
1471 static int sdp_read_close(AVFormatContext *s) | |
1472 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1473 RTSPState *rt = s->priv_data; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1474 rtsp_close_streams(rt); |
0 | 1475 return 0; |
1476 } | |
1477 | |
1169 | 1478 #ifdef CONFIG_SDP_DEMUXER |
1479 AVInputFormat sdp_demuxer = { | |
0 | 1480 "sdp", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3286
diff
changeset
|
1481 NULL_IF_CONFIG_SMALL("SDP"), |
0 | 1482 sizeof(RTSPState), |
1483 sdp_probe, | |
1484 sdp_read_header, | |
1485 sdp_read_packet, | |
1486 sdp_read_close, | |
1487 }; | |
1169 | 1488 #endif |
0 | 1489 |
2053 | 1490 #ifdef CONFIG_REDIR_DEMUXER |
0 | 1491 /* dummy redirector format (used directly in av_open_input_file now) */ |
1492 static int redir_probe(AVProbeData *pd) | |
1493 { | |
1494 const char *p; | |
1495 p = pd->buf; | |
1496 while (redir_isspace(*p)) | |
1497 p++; | |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
1498 if (av_strstart(p, "http://", NULL) || |
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
2189
diff
changeset
|
1499 av_strstart(p, "rtsp://", NULL)) |
0 | 1500 return AVPROBE_SCORE_MAX; |
1501 return 0; | |
1502 } | |
1503 | |
2785
d3b3cfb538d8
Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),
lucabe
parents:
2775
diff
changeset
|
1504 static int redir_read_header(AVFormatContext *s, AVFormatParameters *ap) |
0 | 1505 { |
1506 char buf[4096], *q; | |
1507 int c; | |
1508 AVFormatContext *ic = NULL; | |
2785
d3b3cfb538d8
Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),
lucabe
parents:
2775
diff
changeset
|
1509 ByteIOContext *f = s->pb; |
0 | 1510 |
1511 /* parse each URL and try to open it */ | |
1512 c = url_fgetc(f); | |
1513 while (c != URL_EOF) { | |
1514 /* skip spaces */ | |
1515 for(;;) { | |
1516 if (!redir_isspace(c)) | |
1517 break; | |
1518 c = url_fgetc(f); | |
1519 } | |
1520 if (c == URL_EOF) | |
1521 break; | |
1522 /* record url */ | |
1523 q = buf; | |
1524 for(;;) { | |
1525 if (c == URL_EOF || redir_isspace(c)) | |
1526 break; | |
1527 if ((q - buf) < sizeof(buf) - 1) | |
1528 *q++ = c; | |
1529 c = url_fgetc(f); | |
1530 } | |
1531 *q = '\0'; | |
1532 //printf("URL='%s'\n", buf); | |
1533 /* try to open the media file */ | |
1534 if (av_open_input_file(&ic, buf, NULL, 0, NULL) == 0) | |
1535 break; | |
1536 } | |
1537 if (!ic) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
1538 return AVERROR(EIO); |
2785
d3b3cfb538d8
Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),
lucabe
parents:
2775
diff
changeset
|
1539 |
d3b3cfb538d8
Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),
lucabe
parents:
2775
diff
changeset
|
1540 *s = *ic; |
d3b3cfb538d8
Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),
lucabe
parents:
2775
diff
changeset
|
1541 url_fclose(f); |
d3b3cfb538d8
Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),
lucabe
parents:
2775
diff
changeset
|
1542 |
d3b3cfb538d8
Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),
lucabe
parents:
2775
diff
changeset
|
1543 return 0; |
0 | 1544 } |
1545 | |
1167 | 1546 AVInputFormat redir_demuxer = { |
0 | 1547 "redir", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3286
diff
changeset
|
1548 NULL_IF_CONFIG_SMALL("Redirector format"), |
0 | 1549 0, |
1550 redir_probe, | |
2785
d3b3cfb538d8
Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),
lucabe
parents:
2775
diff
changeset
|
1551 redir_read_header, |
0 | 1552 NULL, |
1553 NULL, | |
1554 }; | |
2053 | 1555 #endif |