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