2 * Multiple format streaming server
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #define HAVE_AV_CONFIG_H
27 #include <sys/ioctl.h>
28 #ifdef HAVE_SYS_POLL_H
33 #undef time //needed because HAVE_AV_CONFIG_H is defined on top
35 #include <sys/types.h>
36 #include <sys/socket.h>
38 #include <netinet/in.h>
39 #include <arpa/inet.h>
50 /* maximum number of simultaneous HTTP connections */
51 #define HTTP_MAX_CONNECTIONS 2000
54 HTTPSTATE_WAIT_REQUEST
,
55 HTTPSTATE_SEND_HEADER
,
56 HTTPSTATE_SEND_DATA_HEADER
,
57 HTTPSTATE_SEND_DATA
, /* sending TCP or UDP data */
58 HTTPSTATE_SEND_DATA_TRAILER
,
59 HTTPSTATE_RECEIVE_DATA
,
60 HTTPSTATE_WAIT_FEED
, /* wait for data from the feed */
63 RTSPSTATE_WAIT_REQUEST
,
65 RTSPSTATE_SEND_PACKET
,
68 const char *http_state
[] = {
84 #define IOBUFFER_INIT_SIZE 8192
86 /* coef for exponential mean for bitrate estimation in statistics */
89 /* timeouts are in ms */
90 #define HTTP_REQUEST_TIMEOUT (15 * 1000)
91 #define RTSP_REQUEST_TIMEOUT (3600 * 24 * 1000)
93 #define SYNC_TIMEOUT (10 * 1000)
96 int64_t count1
, count2
;
100 /* context associated with one connection */
101 typedef struct HTTPContext
{
102 enum HTTPState state
;
103 int fd
; /* socket file descriptor */
104 struct sockaddr_in from_addr
; /* origin */
105 struct pollfd
*poll_entry
; /* used when polling */
107 uint8_t *buffer_ptr
, *buffer_end
;
110 struct HTTPContext
*next
;
111 int got_key_frame
; /* stream 0 => 1, stream 1 => 2, stream 2=> 4 */
115 /* input format handling */
116 AVFormatContext
*fmt_in
;
117 int64_t start_time
; /* In milliseconds - this wraps fairly often */
118 int64_t first_pts
; /* initial pts value */
119 int64_t cur_pts
; /* current pts value from the stream in us */
120 int64_t cur_frame_duration
; /* duration of the current frame in us */
121 int cur_frame_bytes
; /* output frame size, needed to compute
122 the time at which we send each
124 int pts_stream_index
; /* stream we choose as clock reference */
125 int64_t cur_clock
; /* current clock reference value in us */
126 /* output format handling */
127 struct FFStream
*stream
;
128 /* -1 is invalid stream */
129 int feed_streams
[MAX_STREAMS
]; /* index of streams in the feed */
130 int switch_feed_streams
[MAX_STREAMS
]; /* index of streams in the feed */
132 AVFormatContext fmt_ctx
; /* instance of FFStream for one user */
133 int last_packet_sent
; /* true if last data packet was sent */
135 DataRateData datarate
;
142 int is_packetized
; /* if true, the stream is packetized */
143 int packet_stream_index
; /* current stream for output in state machine */
145 /* RTSP state specific */
146 uint8_t *pb_buffer
; /* XXX: use that in all the code */
148 int seq
; /* RTSP sequence number */
150 /* RTP state specific */
151 enum RTSPProtocol rtp_protocol
;
152 char session_id
[32]; /* session id */
153 AVFormatContext
*rtp_ctx
[MAX_STREAMS
];
155 /* RTP/UDP specific */
156 URLContext
*rtp_handles
[MAX_STREAMS
];
158 /* RTP/TCP specific */
159 struct HTTPContext
*rtsp_c
;
160 uint8_t *packet_buffer
, *packet_buffer_ptr
, *packet_buffer_end
;
163 static AVFrame dummy_frame
;
165 /* each generated stream is described here */
169 STREAM_TYPE_REDIRECT
,
172 enum IPAddressAction
{
177 typedef struct IPAddressACL
{
178 struct IPAddressACL
*next
;
179 enum IPAddressAction action
;
180 /* These are in host order */
181 struct in_addr first
;
185 /* description of each stream of the ffserver.conf file */
186 typedef struct FFStream
{
187 enum StreamType stream_type
;
188 char filename
[1024]; /* stream filename */
189 struct FFStream
*feed
; /* feed we are using (can be null if
191 AVFormatParameters
*ap_in
; /* input parameters */
192 AVInputFormat
*ifmt
; /* if non NULL, force input format */
196 int prebuffer
; /* Number of millseconds early to start */
197 int64_t max_time
; /* Number of milliseconds to run */
199 AVStream
*streams
[MAX_STREAMS
];
200 int feed_streams
[MAX_STREAMS
]; /* index of streams in the feed */
201 char feed_filename
[1024]; /* file name of the feed storage, or
202 input file name for a stream */
207 pid_t pid
; /* Of ffmpeg process */
208 time_t pid_start
; /* Of ffmpeg process */
210 struct FFStream
*next
;
211 int bandwidth
; /* bandwidth, in kbits/s */
214 /* multicast specific */
216 struct in_addr multicast_ip
;
217 int multicast_port
; /* first port used for multicast */
219 int loop
; /* if true, send the stream in loops (only meaningful if file) */
222 int feed_opened
; /* true if someone is writing to the feed */
223 int is_feed
; /* true if it is a feed */
224 int readonly
; /* True if writing is prohibited to the file */
226 int64_t bytes_served
;
227 int64_t feed_max_size
; /* maximum storage size, zero means unlimited */
228 int64_t feed_write_index
; /* current write position in feed (it wraps round) */
229 int64_t feed_size
; /* current size of feed */
230 struct FFStream
*next_feed
;
233 typedef struct FeedData
{
234 long long data_count
;
235 float avg_frame_size
; /* frame size averraged over last frames with exponential mean */
238 struct sockaddr_in my_http_addr
;
239 struct sockaddr_in my_rtsp_addr
;
241 static char logfilename
[1024];
242 static HTTPContext
*first_http_ctx
;
243 static FFStream
*first_feed
; /* contains only feeds */
244 static FFStream
*first_stream
; /* contains all streams, including feeds */
246 static void new_connection(int server_fd
, int is_rtsp
);
247 static void close_connection(HTTPContext
*c
);
250 static int handle_connection(HTTPContext
*c
);
251 static int http_parse_request(HTTPContext
*c
);
252 static int http_send_data(HTTPContext
*c
);
253 static void compute_stats(HTTPContext
*c
);
254 static int open_input_stream(HTTPContext
*c
, const char *info
);
255 static int http_start_receive_data(HTTPContext
*c
);
256 static int http_receive_data(HTTPContext
*c
);
259 static int rtsp_parse_request(HTTPContext
*c
);
260 static void rtsp_cmd_describe(HTTPContext
*c
, const char *url
);
261 static void rtsp_cmd_options(HTTPContext
*c
, const char *url
);
262 static void rtsp_cmd_setup(HTTPContext
*c
, const char *url
, RTSPHeader
*h
);
263 static void rtsp_cmd_play(HTTPContext
*c
, const char *url
, RTSPHeader
*h
);
264 static void rtsp_cmd_pause(HTTPContext
*c
, const char *url
, RTSPHeader
*h
);
265 static void rtsp_cmd_teardown(HTTPContext
*c
, const char *url
, RTSPHeader
*h
);
268 static int prepare_sdp_description(FFStream
*stream
, uint8_t **pbuffer
,
269 struct in_addr my_ip
);
272 static HTTPContext
*rtp_new_connection(struct sockaddr_in
*from_addr
,
273 FFStream
*stream
, const char *session_id
,
274 enum RTSPProtocol rtp_protocol
);
275 static int rtp_new_av_stream(HTTPContext
*c
,
276 int stream_index
, struct sockaddr_in
*dest_addr
,
277 HTTPContext
*rtsp_c
);
279 static const char *my_program_name
;
280 static const char *my_program_dir
;
282 static int ffserver_debug
;
283 static int ffserver_daemon
;
284 static int no_launch
;
285 static int need_to_start_children
;
287 static int nb_max_connections
;
288 static int nb_connections
;
290 static int max_bandwidth
;
291 static int current_bandwidth
;
293 static int64_t cur_time
; // Making this global saves on passing it around everywhere
295 static AVRandomState random_state
;
297 static FILE *logfile
= NULL
;
299 static void __attribute__ ((format (printf
, 1, 2))) http_log(const char *fmt
, ...)
305 vfprintf(logfile
, fmt
, ap
);
311 static char *ctime1(char *buf2
)
319 p
= buf2
+ strlen(p
) - 1;
325 static void log_connection(HTTPContext
*c
)
332 http_log("%s - - [%s] \"%s %s %s\" %d %"PRId64
"\n",
333 inet_ntoa(c
->from_addr
.sin_addr
),
334 ctime1(buf2
), c
->method
, c
->url
,
335 c
->protocol
, (c
->http_error ? c
->http_error
: 200), c
->data_count
);
338 static void update_datarate(DataRateData
*drd
, int64_t count
)
340 if (!drd
->time1
&& !drd
->count1
) {
341 drd
->time1
= drd
->time2
= cur_time
;
342 drd
->count1
= drd
->count2
= count
;
344 if (cur_time
- drd
->time2
> 5000) {
345 drd
->time1
= drd
->time2
;
346 drd
->count1
= drd
->count2
;
347 drd
->time2
= cur_time
;
353 /* In bytes per second */
354 static int compute_datarate(DataRateData
*drd
, int64_t count
)
356 if (cur_time
== drd
->time1
)
359 return ((count
- drd
->count1
) * 1000) / (cur_time
- drd
->time1
);
363 static void start_children(FFStream
*feed
)
368 for (; feed
; feed
= feed
->next
) {
369 if (feed
->child_argv
&& !feed
->pid
) {
370 feed
->pid_start
= time(0);
375 fprintf(stderr
, "Unable to create children\n");
384 for (i
= 3; i
< 256; i
++) {
388 if (!ffserver_debug
) {
389 i
= open("/dev/null", O_RDWR
);
398 pstrcpy(pathname
, sizeof(pathname
), my_program_name
);
400 slash
= strrchr(pathname
, '/');
406 strcpy(slash
, "ffmpeg");
408 /* This is needed to make relative pathnames work */
409 chdir(my_program_dir
);
411 signal(SIGPIPE
, SIG_DFL
);
413 execvp(pathname
, feed
->child_argv
);
421 /* open a listening socket */
422 static int socket_open_listen(struct sockaddr_in
*my_addr
)
426 server_fd
= socket(AF_INET
,SOCK_STREAM
,0);
433 setsockopt(server_fd
, SOL_SOCKET
, SO_REUSEADDR
, &tmp
, sizeof(tmp
));
435 if (bind (server_fd
, (struct sockaddr
*) my_addr
, sizeof (*my_addr
)) < 0) {
437 snprintf(bindmsg
, sizeof(bindmsg
), "bind(port %d)", ntohs(my_addr
->sin_port
));
439 closesocket(server_fd
);
443 if (listen (server_fd
, 5) < 0) {
445 closesocket(server_fd
);
448 fcntl(server_fd
, F_SETFL
, O_NONBLOCK
);
453 /* start all multicast streams */
454 static void start_multicast(void)
459 struct sockaddr_in dest_addr
;
460 int default_port
, stream_index
;
463 for(stream
= first_stream
; stream
!= NULL
; stream
= stream
->next
) {
464 if (stream
->is_multicast
) {
465 /* open the RTP connection */
466 snprintf(session_id
, sizeof(session_id
), "%08x%08x",
467 av_random(&random_state
), av_random(&random_state
));
469 /* choose a port if none given */
470 if (stream
->multicast_port
== 0) {
471 stream
->multicast_port
= default_port
;
475 dest_addr
.sin_family
= AF_INET
;
476 dest_addr
.sin_addr
= stream
->multicast_ip
;
477 dest_addr
.sin_port
= htons(stream
->multicast_port
);
479 rtp_c
= rtp_new_connection(&dest_addr
, stream
, session_id
,
480 RTSP_PROTOCOL_RTP_UDP_MULTICAST
);
484 if (open_input_stream(rtp_c
, "") < 0) {
485 fprintf(stderr
, "Could not open input stream for stream '%s'\n",
490 /* open each RTP stream */
491 for(stream_index
= 0; stream_index
< stream
->nb_streams
;
493 dest_addr
.sin_port
= htons(stream
->multicast_port
+
495 if (rtp_new_av_stream(rtp_c
, stream_index
, &dest_addr
, NULL
) < 0) {
496 fprintf(stderr
, "Could not open output stream '%s/streamid=%d'\n",
497 stream
->filename
, stream_index
);
502 /* change state to send data */
503 rtp_c
->state
= HTTPSTATE_SEND_DATA
;
508 /* main loop of the http server */
509 static int http_server(void)
511 int server_fd
, ret
, rtsp_server_fd
, delay
, delay1
;
512 struct pollfd poll_table
[HTTP_MAX_CONNECTIONS
+ 2], *poll_entry
;
513 HTTPContext
*c
, *c_next
;
515 server_fd
= socket_open_listen(&my_http_addr
);
519 rtsp_server_fd
= socket_open_listen(&my_rtsp_addr
);
520 if (rtsp_server_fd
< 0)
523 http_log("ffserver started.\n");
525 start_children(first_feed
);
527 first_http_ctx
= NULL
;
533 poll_entry
= poll_table
;
534 poll_entry
->fd
= server_fd
;
535 poll_entry
->events
= POLLIN
;
538 poll_entry
->fd
= rtsp_server_fd
;
539 poll_entry
->events
= POLLIN
;
542 /* wait for events on each HTTP handle */
549 case HTTPSTATE_SEND_HEADER
:
550 case RTSPSTATE_SEND_REPLY
:
551 case RTSPSTATE_SEND_PACKET
:
552 c
->poll_entry
= poll_entry
;
554 poll_entry
->events
= POLLOUT
;
557 case HTTPSTATE_SEND_DATA_HEADER
:
558 case HTTPSTATE_SEND_DATA
:
559 case HTTPSTATE_SEND_DATA_TRAILER
:
560 if (!c
->is_packetized
) {
561 /* for TCP, we output as much as we can (may need to put a limit) */
562 c
->poll_entry
= poll_entry
;
564 poll_entry
->events
= POLLOUT
;
567 /* when ffserver is doing the timing, we work by
568 looking at which packet need to be sent every
570 delay1
= 10; /* one tick wait XXX: 10 ms assumed */
575 case HTTPSTATE_WAIT_REQUEST
:
576 case HTTPSTATE_RECEIVE_DATA
:
577 case HTTPSTATE_WAIT_FEED
:
578 case RTSPSTATE_WAIT_REQUEST
:
579 /* need to catch errors */
580 c
->poll_entry
= poll_entry
;
582 poll_entry
->events
= POLLIN
;/* Maybe this will work */
586 c
->poll_entry
= NULL
;
592 /* wait for an event on one connection. We poll at least every
593 second to handle timeouts */
595 ret
= poll(poll_table
, poll_entry
- poll_table
, delay
);
596 if (ret
< 0 && errno
!= EAGAIN
&& errno
!= EINTR
)
600 cur_time
= av_gettime() / 1000;
602 if (need_to_start_children
) {
603 need_to_start_children
= 0;
604 start_children(first_feed
);
607 /* now handle the events */
608 for(c
= first_http_ctx
; c
!= NULL
; c
= c_next
) {
610 if (handle_connection(c
) < 0) {
611 /* close and free the connection */
617 poll_entry
= poll_table
;
618 /* new HTTP connection request ? */
619 if (poll_entry
->revents
& POLLIN
) {
620 new_connection(server_fd
, 0);
623 /* new RTSP connection request ? */
624 if (poll_entry
->revents
& POLLIN
) {
625 new_connection(rtsp_server_fd
, 1);
630 /* start waiting for a new HTTP/RTSP request */
631 static void start_wait_request(HTTPContext
*c
, int is_rtsp
)
633 c
->buffer_ptr
= c
->buffer
;
634 c
->buffer_end
= c
->buffer
+ c
->buffer_size
- 1; /* leave room for '\0' */
637 c
->timeout
= cur_time
+ RTSP_REQUEST_TIMEOUT
;
638 c
->state
= RTSPSTATE_WAIT_REQUEST
;
640 c
->timeout
= cur_time
+ HTTP_REQUEST_TIMEOUT
;
641 c
->state
= HTTPSTATE_WAIT_REQUEST
;
645 static void new_connection(int server_fd
, int is_rtsp
)
647 struct sockaddr_in from_addr
;
649 HTTPContext
*c
= NULL
;
651 len
= sizeof(from_addr
);
652 fd
= accept(server_fd
, (struct sockaddr
*)&from_addr
,
656 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
658 /* XXX: should output a warning page when coming
659 close to the connection limit */
660 if (nb_connections
>= nb_max_connections
)
663 /* add a new connection */
664 c
= av_mallocz(sizeof(HTTPContext
));
669 c
->poll_entry
= NULL
;
670 c
->from_addr
= from_addr
;
671 c
->buffer_size
= IOBUFFER_INIT_SIZE
;
672 c
->buffer
= av_malloc(c
->buffer_size
);
676 c
->next
= first_http_ctx
;
680 start_wait_request(c
, is_rtsp
);
692 static void close_connection(HTTPContext
*c
)
694 HTTPContext
**cp
, *c1
;
696 AVFormatContext
*ctx
;
700 /* remove connection from list */
701 cp
= &first_http_ctx
;
702 while ((*cp
) != NULL
) {
711 /* remove references, if any (XXX: do it faster) */
712 for(c1
= first_http_ctx
; c1
!= NULL
; c1
= c1
->next
) {
717 /* remove connection associated resources */
721 /* close each frame parser */
722 for(i
=0;i
<c
->fmt_in
->nb_streams
;i
++) {
723 st
= c
->fmt_in
->streams
[i
];
724 if (st
->codec
->codec
) {
725 avcodec_close(st
->codec
);
728 av_close_input_file(c
->fmt_in
);
731 /* free RTP output streams if any */
734 nb_streams
= c
->stream
->nb_streams
;
736 for(i
=0;i
<nb_streams
;i
++) {
739 av_write_trailer(ctx
);
742 h
= c
->rtp_handles
[i
];
750 if (!c
->last_packet_sent
) {
753 if (url_open_dyn_buf(&ctx
->pb
) >= 0) {
754 av_write_trailer(ctx
);
755 url_close_dyn_buf(&ctx
->pb
, &c
->pb_buffer
);
760 for(i
=0; i
<ctx
->nb_streams
; i
++)
761 av_free(ctx
->streams
[i
]) ;
763 if (c
->stream
&& !c
->post
&& c
->stream
->stream_type
== STREAM_TYPE_LIVE
)
764 current_bandwidth
-= c
->stream
->bandwidth
;
766 /* signal that there is no feed if we are the feeder socket */
767 if (c
->state
== HTTPSTATE_RECEIVE_DATA
&& c
->stream
) {
768 c
->stream
->feed_opened
= 0;
772 av_freep(&c
->pb_buffer
);
773 av_freep(&c
->packet_buffer
);
779 static int handle_connection(HTTPContext
*c
)
784 case HTTPSTATE_WAIT_REQUEST
:
785 case RTSPSTATE_WAIT_REQUEST
:
787 if ((c
->timeout
- cur_time
) < 0)
789 if (c
->poll_entry
->revents
& (POLLERR
| POLLHUP
))
792 /* no need to read if no events */
793 if (!(c
->poll_entry
->revents
& POLLIN
))
797 len
= recv(c
->fd
, c
->buffer_ptr
, 1, 0);
799 if (errno
!= EAGAIN
&& errno
!= EINTR
)
801 } else if (len
== 0) {
804 /* search for end of request. */
806 c
->buffer_ptr
+= len
;
808 if ((ptr
>= c
->buffer
+ 2 && !memcmp(ptr
-2, "\n\n", 2)) ||
809 (ptr
>= c
->buffer
+ 4 && !memcmp(ptr
-4, "\r\n\r\n", 4))) {
810 /* request found : parse it and reply */
811 if (c
->state
== HTTPSTATE_WAIT_REQUEST
) {
812 ret
= http_parse_request(c
);
814 ret
= rtsp_parse_request(c
);
818 } else if (ptr
>= c
->buffer_end
) {
819 /* request too long: cannot do anything */
821 } else goto read_loop
;
825 case HTTPSTATE_SEND_HEADER
:
826 if (c
->poll_entry
->revents
& (POLLERR
| POLLHUP
))
829 /* no need to write if no events */
830 if (!(c
->poll_entry
->revents
& POLLOUT
))
832 len
= send(c
->fd
, c
->buffer_ptr
, c
->buffer_end
- c
->buffer_ptr
, 0);
834 if (errno
!= EAGAIN
&& errno
!= EINTR
) {
835 /* error : close connection */
836 av_freep(&c
->pb_buffer
);
840 c
->buffer_ptr
+= len
;
842 c
->stream
->bytes_served
+= len
;
843 c
->data_count
+= len
;
844 if (c
->buffer_ptr
>= c
->buffer_end
) {
845 av_freep(&c
->pb_buffer
);
850 /* all the buffer was sent : synchronize to the incoming stream */
851 c
->state
= HTTPSTATE_SEND_DATA_HEADER
;
852 c
->buffer_ptr
= c
->buffer_end
= c
->buffer
;
857 case HTTPSTATE_SEND_DATA
:
858 case HTTPSTATE_SEND_DATA_HEADER
:
859 case HTTPSTATE_SEND_DATA_TRAILER
:
860 /* for packetized output, we consider we can always write (the
861 input streams sets the speed). It may be better to verify
862 that we do not rely too much on the kernel queues */
863 if (!c
->is_packetized
) {
864 if (c
->poll_entry
->revents
& (POLLERR
| POLLHUP
))
867 /* no need to read if no events */
868 if (!(c
->poll_entry
->revents
& POLLOUT
))
871 if (http_send_data(c
) < 0)
873 /* close connection if trailer sent */
874 if (c
->state
== HTTPSTATE_SEND_DATA_TRAILER
)
877 case HTTPSTATE_RECEIVE_DATA
:
878 /* no need to read if no events */
879 if (c
->poll_entry
->revents
& (POLLERR
| POLLHUP
))
881 if (!(c
->poll_entry
->revents
& POLLIN
))
883 if (http_receive_data(c
) < 0)
886 case HTTPSTATE_WAIT_FEED
:
887 /* no need to read if no events */
888 if (c
->poll_entry
->revents
& (POLLIN
| POLLERR
| POLLHUP
))
891 /* nothing to do, we'll be waken up by incoming feed packets */
894 case RTSPSTATE_SEND_REPLY
:
895 if (c
->poll_entry
->revents
& (POLLERR
| POLLHUP
)) {
896 av_freep(&c
->pb_buffer
);
899 /* no need to write if no events */
900 if (!(c
->poll_entry
->revents
& POLLOUT
))
902 len
= send(c
->fd
, c
->buffer_ptr
, c
->buffer_end
- c
->buffer_ptr
, 0);
904 if (errno
!= EAGAIN
&& errno
!= EINTR
) {
905 /* error : close connection */
906 av_freep(&c
->pb_buffer
);
910 c
->buffer_ptr
+= len
;
911 c
->data_count
+= len
;
912 if (c
->buffer_ptr
>= c
->buffer_end
) {
913 /* all the buffer was sent : wait for a new request */
914 av_freep(&c
->pb_buffer
);
915 start_wait_request(c
, 1);
919 case RTSPSTATE_SEND_PACKET
:
920 if (c
->poll_entry
->revents
& (POLLERR
| POLLHUP
)) {
921 av_freep(&c
->packet_buffer
);
924 /* no need to write if no events */
925 if (!(c
->poll_entry
->revents
& POLLOUT
))
927 len
= send(c
->fd
, c
->packet_buffer_ptr
,
928 c
->packet_buffer_end
- c
->packet_buffer_ptr
, 0);
930 if (errno
!= EAGAIN
&& errno
!= EINTR
) {
931 /* error : close connection */
932 av_freep(&c
->packet_buffer
);
936 c
->packet_buffer_ptr
+= len
;
937 if (c
->packet_buffer_ptr
>= c
->packet_buffer_end
) {
938 /* all the buffer was sent : wait for a new request */
939 av_freep(&c
->packet_buffer
);
940 c
->state
= RTSPSTATE_WAIT_REQUEST
;
944 case HTTPSTATE_READY
:
953 static int extract_rates(char *rates
, int ratelen
, const char *request
)
957 for (p
= request
; *p
&& *p
!= '\r' && *p
!= '\n'; ) {
958 if (strncasecmp(p
, "Pragma:", 7) == 0) {
959 const char *q
= p
+ 7;
961 while (*q
&& *q
!= '\n' && isspace(*q
))
964 if (strncasecmp(q
, "stream-switch-entry=", 20) == 0) {
970 memset(rates
, 0xff, ratelen
);
973 while (*q
&& *q
!= '\n' && *q
!= ':')
976 if (sscanf(q
, ":%d:%d", &stream_no
, &rate_no
) != 2) {
980 if (stream_no
< ratelen
&& stream_no
>= 0) {
981 rates
[stream_no
] = rate_no
;
984 while (*q
&& *q
!= '\n' && !isspace(*q
))
1001 static int find_stream_in_feed(FFStream
*feed
, AVCodecContext
*codec
, int bit_rate
)
1004 int best_bitrate
= 100000000;
1007 for (i
= 0; i
< feed
->nb_streams
; i
++) {
1008 AVCodecContext
*feed_codec
= feed
->streams
[i
]->codec
;
1010 if (feed_codec
->codec_id
!= codec
->codec_id
||
1011 feed_codec
->sample_rate
!= codec
->sample_rate
||
1012 feed_codec
->width
!= codec
->width
||
1013 feed_codec
->height
!= codec
->height
) {
1017 /* Potential stream */
1019 /* We want the fastest stream less than bit_rate, or the slowest
1020 * faster than bit_rate
1023 if (feed_codec
->bit_rate
<= bit_rate
) {
1024 if (best_bitrate
> bit_rate
|| feed_codec
->bit_rate
> best_bitrate
) {
1025 best_bitrate
= feed_codec
->bit_rate
;
1029 if (feed_codec
->bit_rate
< best_bitrate
) {
1030 best_bitrate
= feed_codec
->bit_rate
;
1039 static int modify_current_stream(HTTPContext
*c
, char *rates
)
1042 FFStream
*req
= c
->stream
;
1043 int action_required
= 0;
1045 /* Not much we can do for a feed */
1049 for (i
= 0; i
< req
->nb_streams
; i
++) {
1050 AVCodecContext
*codec
= req
->streams
[i
]->codec
;
1054 c
->switch_feed_streams
[i
] = req
->feed_streams
[i
];
1057 c
->switch_feed_streams
[i
] = find_stream_in_feed(req
->feed
, codec
, codec
->bit_rate
/ 2);
1060 /* Wants off or slow */
1061 c
->switch_feed_streams
[i
] = find_stream_in_feed(req
->feed
, codec
, codec
->bit_rate
/ 4);
1063 /* This doesn't work well when it turns off the only stream! */
1064 c
->switch_feed_streams
[i
] = -2;
1065 c
->feed_streams
[i
] = -2;
1070 if (c
->switch_feed_streams
[i
] >= 0 && c
->switch_feed_streams
[i
] != c
->feed_streams
[i
])
1071 action_required
= 1;
1074 return action_required
;
1078 static void do_switch_stream(HTTPContext
*c
, int i
)
1080 if (c
->switch_feed_streams
[i
] >= 0) {
1082 c
->feed_streams
[i
] = c
->switch_feed_streams
[i
];
1085 /* Now update the stream */
1087 c
->switch_feed_streams
[i
] = -1;
1090 /* XXX: factorize in utils.c ? */
1091 /* XXX: take care with different space meaning */
1092 static void skip_spaces(const char **pp
)
1096 while (*p
== ' ' || *p
== '\t')
1101 static void get_word(char *buf
, int buf_size
, const char **pp
)
1109 while (!isspace(*p
) && *p
!= '\0') {
1110 if ((q
- buf
) < buf_size
- 1)
1119 static int validate_acl(FFStream
*stream
, HTTPContext
*c
)
1121 enum IPAddressAction last_action
= IP_DENY
;
1123 struct in_addr
*src
= &c
->from_addr
.sin_addr
;
1124 unsigned long src_addr
= ntohl(src
->s_addr
);
1126 for (acl
= stream
->acl
; acl
; acl
= acl
->next
) {
1127 if (src_addr
>= acl
->first
.s_addr
&& src_addr
<= acl
->last
.s_addr
) {
1128 return (acl
->action
== IP_ALLOW
) ?
1 : 0;
1130 last_action
= acl
->action
;
1133 /* Nothing matched, so return not the last action */
1134 return (last_action
== IP_DENY
) ?
1 : 0;
1137 /* compute the real filename of a file by matching it without its
1138 extensions to all the stream filenames */
1139 static void compute_real_filename(char *filename
, int max_size
)
1146 /* compute filename by matching without the file extensions */
1147 pstrcpy(file1
, sizeof(file1
), filename
);
1148 p
= strrchr(file1
, '.');
1151 for(stream
= first_stream
; stream
!= NULL
; stream
= stream
->next
) {
1152 pstrcpy(file2
, sizeof(file2
), stream
->filename
);
1153 p
= strrchr(file2
, '.');
1156 if (!strcmp(file1
, file2
)) {
1157 pstrcpy(filename
, max_size
, stream
->filename
);
1172 /* parse http request and prepare header */
1173 static int http_parse_request(HTTPContext
*c
)
1176 enum RedirType redir_type
;
1178 char info
[1024], filename
[1024];
1182 const char *mime_type
;
1186 char *useragent
= 0;
1189 get_word(cmd
, sizeof(cmd
), (const char **)&p
);
1190 pstrcpy(c
->method
, sizeof(c
->method
), cmd
);
1192 if (!strcmp(cmd
, "GET"))
1194 else if (!strcmp(cmd
, "POST"))
1199 get_word(url
, sizeof(url
), (const char **)&p
);
1200 pstrcpy(c
->url
, sizeof(c
->url
), url
);
1202 get_word(protocol
, sizeof(protocol
), (const char **)&p
);
1203 if (strcmp(protocol
, "HTTP/1.0") && strcmp(protocol
, "HTTP/1.1"))
1206 pstrcpy(c
->protocol
, sizeof(c
->protocol
), protocol
);
1209 http_log("New connection: %s %s\n", cmd
, url
);
1211 /* find the filename and the optional info string in the request */
1212 p
= strchr(url
, '?');
1214 pstrcpy(info
, sizeof(info
), p
);
1220 pstrcpy(filename
, sizeof(filename
)-1, url
+ ((*url
== '/') ?
1 : 0));
1222 for (p
= c
->buffer
; *p
&& *p
!= '\r' && *p
!= '\n'; ) {
1223 if (strncasecmp(p
, "User-Agent:", 11) == 0) {
1225 if (*useragent
&& *useragent
!= '\n' && isspace(*useragent
))
1229 p
= strchr(p
, '\n');
1236 redir_type
= REDIR_NONE
;
1237 if (match_ext(filename
, "asx")) {
1238 redir_type
= REDIR_ASX
;
1239 filename
[strlen(filename
)-1] = 'f';
1240 } else if (match_ext(filename
, "asf") &&
1241 (!useragent
|| strncasecmp(useragent
, "NSPlayer", 8) != 0)) {
1242 /* if this isn't WMP or lookalike, return the redirector file */
1243 redir_type
= REDIR_ASF
;
1244 } else if (match_ext(filename
, "rpm,ram")) {
1245 redir_type
= REDIR_RAM
;
1246 strcpy(filename
+ strlen(filename
)-2, "m");
1247 } else if (match_ext(filename
, "rtsp")) {
1248 redir_type
= REDIR_RTSP
;
1249 compute_real_filename(filename
, sizeof(filename
) - 1);
1250 } else if (match_ext(filename
, "sdp")) {
1251 redir_type
= REDIR_SDP
;
1252 compute_real_filename(filename
, sizeof(filename
) - 1);
1255 // "redirect" / request to index.html
1256 if (!strlen(filename
))
1257 pstrcpy(filename
, sizeof(filename
) - 1, "index.html");
1259 stream
= first_stream
;
1260 while (stream
!= NULL
) {
1261 if (!strcmp(stream
->filename
, filename
) && validate_acl(stream
, c
))
1263 stream
= stream
->next
;
1265 if (stream
== NULL
) {
1266 snprintf(msg
, sizeof(msg
), "File '%s' not found", url
);
1271 memcpy(c
->feed_streams
, stream
->feed_streams
, sizeof(c
->feed_streams
));
1272 memset(c
->switch_feed_streams
, -1, sizeof(c
->switch_feed_streams
));
1274 if (stream
->stream_type
== STREAM_TYPE_REDIRECT
) {
1275 c
->http_error
= 301;
1277 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 301 Moved\r\n");
1278 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Location: %s\r\n", stream
->feed_filename
);
1279 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-type: text/html\r\n");
1280 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1281 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<html><head><title>Moved</title></head><body>\r\n");
1282 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "You should be <a href=\"%s\">redirected</a>.\r\n", stream
->feed_filename
);
1283 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "</body></html>\r\n");
1285 /* prepare output buffer */
1286 c
->buffer_ptr
= c
->buffer
;
1288 c
->state
= HTTPSTATE_SEND_HEADER
;
1292 /* If this is WMP, get the rate information */
1293 if (extract_rates(ratebuf
, sizeof(ratebuf
), c
->buffer
)) {
1294 if (modify_current_stream(c
, ratebuf
)) {
1295 for (i
= 0; i
< sizeof(c
->feed_streams
) / sizeof(c
->feed_streams
[0]); i
++) {
1296 if (c
->switch_feed_streams
[i
] >= 0)
1297 do_switch_stream(c
, i
);
1302 /* If already streaming this feed, dont let start an another feeder */
1303 if (stream
->feed_opened
) {
1304 snprintf(msg
, sizeof(msg
), "This feed is already being received.");
1308 if (c
->post
== 0 && stream
->stream_type
== STREAM_TYPE_LIVE
) {
1309 current_bandwidth
+= stream
->bandwidth
;
1312 if (c
->post
== 0 && max_bandwidth
< current_bandwidth
) {
1313 c
->http_error
= 200;
1315 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 200 Server too busy\r\n");
1316 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-type: text/html\r\n");
1317 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1318 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<html><head><title>Too busy</title></head><body>\r\n");
1319 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<p>The server is too busy to serve your request at this time.</p>\r\n");
1320 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<p>The bandwidth being served (including your stream) is %dkbit/sec, and this exceeds the limit of %dkbit/sec.</p>\r\n",
1321 current_bandwidth
, max_bandwidth
);
1322 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "</body></html>\r\n");
1324 /* prepare output buffer */
1325 c
->buffer_ptr
= c
->buffer
;
1327 c
->state
= HTTPSTATE_SEND_HEADER
;
1331 if (redir_type
!= REDIR_NONE
) {
1334 for (p
= c
->buffer
; *p
&& *p
!= '\r' && *p
!= '\n'; ) {
1335 if (strncasecmp(p
, "Host:", 5) == 0) {
1339 p
= strchr(p
, '\n');
1350 while (isspace(*hostinfo
))
1353 eoh
= strchr(hostinfo
, '\n');
1355 if (eoh
[-1] == '\r')
1358 if (eoh
- hostinfo
< sizeof(hostbuf
) - 1) {
1359 memcpy(hostbuf
, hostinfo
, eoh
- hostinfo
);
1360 hostbuf
[eoh
- hostinfo
] = 0;
1362 c
->http_error
= 200;
1364 switch(redir_type
) {
1366 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 200 ASX Follows\r\n");
1367 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-type: video/x-ms-asf\r\n");
1368 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1369 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<ASX Version=\"3\">\r\n");
1370 //q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<!-- Autogenerated by ffserver -->\r\n");
1371 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<ENTRY><REF HREF=\"http://%s/%s%s\"/></ENTRY>\r\n",
1372 hostbuf
, filename
, info
);
1373 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "</ASX>\r\n");
1376 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 200 RAM Follows\r\n");
1377 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-type: audio/x-pn-realaudio\r\n");
1378 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1379 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "# Autogenerated by ffserver\r\n");
1380 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "http://%s/%s%s\r\n",
1381 hostbuf
, filename
, info
);
1384 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 200 ASF Redirect follows\r\n");
1385 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-type: video/x-ms-asf\r\n");
1386 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1387 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "[Reference]\r\n");
1388 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Ref1=http://%s/%s%s\r\n",
1389 hostbuf
, filename
, info
);
1393 char hostname
[256], *p
;
1394 /* extract only hostname */
1395 pstrcpy(hostname
, sizeof(hostname
), hostbuf
);
1396 p
= strrchr(hostname
, ':');
1399 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 200 RTSP Redirect follows\r\n");
1400 /* XXX: incorrect mime type ? */
1401 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-type: application/x-rtsp\r\n");
1402 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1403 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "rtsp://%s:%d/%s\r\n",
1404 hostname
, ntohs(my_rtsp_addr
.sin_port
),
1411 int sdp_data_size
, len
;
1412 struct sockaddr_in my_addr
;
1414 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 200 OK\r\n");
1415 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-type: application/sdp\r\n");
1416 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1418 len
= sizeof(my_addr
);
1419 getsockname(c
->fd
, (struct sockaddr
*)&my_addr
, &len
);
1421 /* XXX: should use a dynamic buffer */
1422 sdp_data_size
= prepare_sdp_description(stream
,
1425 if (sdp_data_size
> 0) {
1426 memcpy(q
, sdp_data
, sdp_data_size
);
1438 /* prepare output buffer */
1439 c
->buffer_ptr
= c
->buffer
;
1441 c
->state
= HTTPSTATE_SEND_HEADER
;
1447 snprintf(msg
, sizeof(msg
), "ASX/RAM file not handled");
1451 stream
->conns_served
++;
1453 /* XXX: add there authenticate and IP match */
1456 /* if post, it means a feed is being sent */
1457 if (!stream
->is_feed
) {
1458 /* However it might be a status report from WMP! Lets log the data
1459 * as it might come in handy one day
1464 for (p
= c
->buffer
; *p
&& *p
!= '\r' && *p
!= '\n'; ) {
1465 if (strncasecmp(p
, "Pragma: log-line=", 17) == 0) {
1469 if (strncasecmp(p
, "Pragma: client-id=", 18) == 0) {
1470 client_id
= strtol(p
+ 18, 0, 10);
1472 p
= strchr(p
, '\n');
1480 char *eol
= strchr(logline
, '\n');
1485 if (eol
[-1] == '\r')
1487 http_log("%.*s\n", (int) (eol
- logline
), logline
);
1488 c
->suppress_log
= 1;
1493 http_log("\nGot request:\n%s\n", c
->buffer
);
1496 if (client_id
&& extract_rates(ratebuf
, sizeof(ratebuf
), c
->buffer
)) {
1499 /* Now we have to find the client_id */
1500 for (wmpc
= first_http_ctx
; wmpc
; wmpc
= wmpc
->next
) {
1501 if (wmpc
->wmp_client_id
== client_id
)
1506 if (modify_current_stream(wmpc
, ratebuf
)) {
1507 wmpc
->switch_pending
= 1;
1512 snprintf(msg
, sizeof(msg
), "POST command not handled");
1516 if (http_start_receive_data(c
) < 0) {
1517 snprintf(msg
, sizeof(msg
), "could not open feed");
1521 c
->state
= HTTPSTATE_RECEIVE_DATA
;
1526 if (strcmp(stream
->filename
+ strlen(stream
->filename
) - 4, ".asf") == 0) {
1527 http_log("\nGot request:\n%s\n", c
->buffer
);
1531 if (c
->stream
->stream_type
== STREAM_TYPE_STATUS
)
1534 /* open input stream */
1535 if (open_input_stream(c
, info
) < 0) {
1536 snprintf(msg
, sizeof(msg
), "Input stream corresponding to '%s' not found", url
);
1540 /* prepare http header */
1542 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 200 OK\r\n");
1543 mime_type
= c
->stream
->fmt
->mime_type
;
1545 mime_type
= "application/x-octet_stream";
1546 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Pragma: no-cache\r\n");
1548 /* for asf, we need extra headers */
1549 if (!strcmp(c
->stream
->fmt
->name
,"asf_stream")) {
1550 /* Need to allocate a client id */
1552 c
->wmp_client_id
= av_random(&random_state
) & 0x7fffffff;
1554 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Server: Cougar 4.1.0.3923\r\nCache-Control: no-cache\r\nPragma: client-id=%d\r\nPragma: features=\"broadcast\"\r\n", c
->wmp_client_id
);
1556 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-Type: %s\r\n", mime_type
);
1557 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1559 /* prepare output buffer */
1561 c
->buffer_ptr
= c
->buffer
;
1563 c
->state
= HTTPSTATE_SEND_HEADER
;
1566 c
->http_error
= 404;
1568 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "HTTP/1.0 404 Not Found\r\n");
1569 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "Content-type: %s\r\n", "text/html");
1570 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "\r\n");
1571 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<HTML>\n");
1572 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<HEAD><TITLE>404 Not Found</TITLE></HEAD>\n");
1573 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "<BODY>%s</BODY>\n", msg
);
1574 q
+= snprintf(q
, q
- (char *) c
->buffer
+ c
->buffer_size
, "</HTML>\n");
1576 /* prepare output buffer */
1577 c
->buffer_ptr
= c
->buffer
;
1579 c
->state
= HTTPSTATE_SEND_HEADER
;
1583 c
->http_error
= 200; /* horrible : we use this value to avoid
1584 going to the send data state */
1585 c
->state
= HTTPSTATE_SEND_HEADER
;
1589 static void fmt_bytecount(ByteIOContext
*pb
, int64_t count
)
1591 static const char *suffix
= " kMGTP";
1594 for (s
= suffix
; count
>= 100000 && s
[1]; count
/= 1000, s
++) {
1597 url_fprintf(pb
, "%"PRId64
"%c", count
, *s
);
1600 static void compute_stats(HTTPContext
*c
)
1607 ByteIOContext pb1
, *pb
= &pb1
;
1609 if (url_open_dyn_buf(pb
) < 0) {
1610 /* XXX: return an error ? */
1611 c
->buffer_ptr
= c
->buffer
;
1612 c
->buffer_end
= c
->buffer
;
1616 url_fprintf(pb
, "HTTP/1.0 200 OK\r\n");
1617 url_fprintf(pb
, "Content-type: %s\r\n", "text/html");
1618 url_fprintf(pb
, "Pragma: no-cache\r\n");
1619 url_fprintf(pb
, "\r\n");
1621 url_fprintf(pb
, "<HEAD><TITLE>FFServer Status</TITLE>\n");
1622 if (c
->stream
->feed_filename
) {
1623 url_fprintf(pb
, "<link rel=\"shortcut icon\" href=\"%s\">\n", c
->stream
->feed_filename
);
1625 url_fprintf(pb
, "</HEAD>\n<BODY>");
1626 url_fprintf(pb
, "<H1>FFServer Status</H1>\n");
1628 url_fprintf(pb
, "<H2>Available Streams</H2>\n");
1629 url_fprintf(pb
, "<TABLE cellspacing=0 cellpadding=4>\n");
1630 url_fprintf(pb
, "<TR><Th valign=top>Path<th align=left>Served<br>Conns<Th><br>bytes<Th valign=top>Format<Th>Bit rate<br>kbits/s<Th align=left>Video<br>kbits/s<th><br>Codec<Th align=left>Audio<br>kbits/s<th><br>Codec<Th align=left valign=top>Feed\n");
1631 stream
= first_stream
;
1632 while (stream
!= NULL
) {
1633 char sfilename
[1024];
1636 if (stream
->feed
!= stream
) {
1637 pstrcpy(sfilename
, sizeof(sfilename
) - 10, stream
->filename
);
1638 eosf
= sfilename
+ strlen(sfilename
);
1639 if (eosf
- sfilename
>= 4) {
1640 if (strcmp(eosf
- 4, ".asf") == 0) {
1641 strcpy(eosf
- 4, ".asx");
1642 } else if (strcmp(eosf
- 3, ".rm") == 0) {
1643 strcpy(eosf
- 3, ".ram");
1644 } else if (stream
->fmt
== &rtp_muxer
) {
1645 /* generate a sample RTSP director if
1646 unicast. Generate an SDP redirector if
1648 eosf
= strrchr(sfilename
, '.');
1650 eosf
= sfilename
+ strlen(sfilename
);
1651 if (stream
->is_multicast
)
1652 strcpy(eosf
, ".sdp");
1654 strcpy(eosf
, ".rtsp");
1658 url_fprintf(pb
, "<TR><TD><A HREF=\"/%s\">%s</A> ",
1659 sfilename
, stream
->filename
);
1660 url_fprintf(pb
, "<td align=right> %d <td align=right> ",
1661 stream
->conns_served
);
1662 fmt_bytecount(pb
, stream
->bytes_served
);
1663 switch(stream
->stream_type
) {
1664 case STREAM_TYPE_LIVE
:
1666 int audio_bit_rate
= 0;
1667 int video_bit_rate
= 0;
1668 const char *audio_codec_name
= "";
1669 const char *video_codec_name
= "";
1670 const char *audio_codec_name_extra
= "";
1671 const char *video_codec_name_extra
= "";
1673 for(i
=0;i
<stream
->nb_streams
;i
++) {
1674 AVStream
*st
= stream
->streams
[i
];
1675 AVCodec
*codec
= avcodec_find_encoder(st
->codec
->codec_id
);
1676 switch(st
->codec
->codec_type
) {
1677 case CODEC_TYPE_AUDIO
:
1678 audio_bit_rate
+= st
->codec
->bit_rate
;
1680 if (*audio_codec_name
)
1681 audio_codec_name_extra
= "...";
1682 audio_codec_name
= codec
->name
;
1685 case CODEC_TYPE_VIDEO
:
1686 video_bit_rate
+= st
->codec
->bit_rate
;
1688 if (*video_codec_name
)
1689 video_codec_name_extra
= "...";
1690 video_codec_name
= codec
->name
;
1693 case CODEC_TYPE_DATA
:
1694 video_bit_rate
+= st
->codec
->bit_rate
;
1700 url_fprintf(pb
, "<TD align=center> %s <TD align=right> %d <TD align=right> %d <TD> %s %s <TD align=right> %d <TD> %s %s",
1703 video_bit_rate
/ 1000, video_codec_name
, video_codec_name_extra
,
1704 audio_bit_rate
/ 1000, audio_codec_name
, audio_codec_name_extra
);
1706 url_fprintf(pb
, "<TD>%s", stream
->feed
->filename
);
1708 url_fprintf(pb
, "<TD>%s", stream
->feed_filename
);
1710 url_fprintf(pb
, "\n");
1714 url_fprintf(pb
, "<TD align=center> - <TD align=right> - <TD align=right> - <td><td align=right> - <TD>\n");
1718 stream
= stream
->next
;
1720 url_fprintf(pb
, "</TABLE>\n");
1722 stream
= first_stream
;
1723 while (stream
!= NULL
) {
1724 if (stream
->feed
== stream
) {
1725 url_fprintf(pb
, "<h2>Feed %s</h2>", stream
->filename
);
1727 url_fprintf(pb
, "Running as pid %d.\n", stream
->pid
);
1729 #if defined(linux) && !defined(CONFIG_NOCUTILS)
1734 /* This is somewhat linux specific I guess */
1735 snprintf(ps_cmd
, sizeof(ps_cmd
),
1736 "ps -o \"%%cpu,cputime\" --no-headers %d",
1739 pid_stat
= popen(ps_cmd
, "r");
1744 if (fscanf(pid_stat
, "%10s %64s", cpuperc
,
1746 url_fprintf(pb
, "Currently using %s%% of the cpu. Total time used %s.\n",
1754 url_fprintf(pb
, "<p>");
1756 url_fprintf(pb
, "<table cellspacing=0 cellpadding=4><tr><th>Stream<th>type<th>kbits/s<th align=left>codec<th align=left>Parameters\n");
1758 for (i
= 0; i
< stream
->nb_streams
; i
++) {
1759 AVStream
*st
= stream
->streams
[i
];
1760 AVCodec
*codec
= avcodec_find_encoder(st
->codec
->codec_id
);
1761 const char *type
= "unknown";
1762 char parameters
[64];
1766 switch(st
->codec
->codec_type
) {
1767 case CODEC_TYPE_AUDIO
:
1770 case CODEC_TYPE_VIDEO
:
1772 snprintf(parameters
, sizeof(parameters
), "%dx%d, q=%d-%d, fps=%d", st
->codec
->width
, st
->codec
->height
,
1773 st
->codec
->qmin
, st
->codec
->qmax
, st
->codec
->time_base
.den
/ st
->codec
->time_base
.num
);
1778 url_fprintf(pb
, "<tr><td align=right>%d<td>%s<td align=right>%d<td>%s<td>%s\n",
1779 i
, type
, st
->codec
->bit_rate
/1000, codec ? codec
->name
: "", parameters
);
1781 url_fprintf(pb
, "</table>\n");
1784 stream
= stream
->next
;
1790 AVCodecContext
*enc
;
1794 stream
= first_feed
;
1795 while (stream
!= NULL
) {
1796 url_fprintf(pb
, "<H1>Feed '%s'</H1>\n", stream
->filename
);
1797 url_fprintf(pb
, "<TABLE>\n");
1798 url_fprintf(pb
, "<TR><TD>Parameters<TD>Frame count<TD>Size<TD>Avg bitrate (kbits/s)\n");
1799 for(i
=0;i
<stream
->nb_streams
;i
++) {
1800 AVStream
*st
= stream
->streams
[i
];
1801 FeedData
*fdata
= st
->priv_data
;
1804 avcodec_string(buf
, sizeof(buf
), enc
);
1805 avg
= fdata
->avg_frame_size
* (float)enc
->rate
* 8.0;
1806 if (enc
->codec
->type
== CODEC_TYPE_AUDIO
&& enc
->frame_size
> 0)
1807 avg
/= enc
->frame_size
;
1808 url_fprintf(pb
, "<TR><TD>%s <TD> %d <TD> %"PRId64
" <TD> %0.1f\n",
1809 buf
, enc
->frame_number
, fdata
->data_count
, avg
/ 1000.0);
1811 url_fprintf(pb
, "</TABLE>\n");
1812 stream
= stream
->next_feed
;
1817 /* connection status */
1818 url_fprintf(pb
, "<H2>Connection Status</H2>\n");
1820 url_fprintf(pb
, "Number of connections: %d / %d<BR>\n",
1821 nb_connections
, nb_max_connections
);
1823 url_fprintf(pb
, "Bandwidth in use: %dk / %dk<BR>\n",
1824 current_bandwidth
, max_bandwidth
);
1826 url_fprintf(pb
, "<TABLE>\n");
1827 url_fprintf(pb
, "<TR><th>#<th>File<th>IP<th>Proto<th>State<th>Target bits/sec<th>Actual bits/sec<th>Bytes transferred\n");
1828 c1
= first_http_ctx
;
1830 while (c1
!= NULL
) {
1836 for (j
= 0; j
< c1
->stream
->nb_streams
; j
++) {
1837 if (!c1
->stream
->feed
) {
1838 bitrate
+= c1
->stream
->streams
[j
]->codec
->bit_rate
;
1840 if (c1
->feed_streams
[j
] >= 0) {
1841 bitrate
+= c1
->stream
->feed
->streams
[c1
->feed_streams
[j
]]->codec
->bit_rate
;
1848 p
= inet_ntoa(c1
->from_addr
.sin_addr
);
1849 url_fprintf(pb
, "<TR><TD><B>%d</B><TD>%s%s<TD>%s<TD>%s<TD>%s<td align=right>",
1851 c1
->stream ? c1
->stream
->filename
: "",
1852 c1
->state
== HTTPSTATE_RECEIVE_DATA ?
"(input)" : "",
1855 http_state
[c1
->state
]);
1856 fmt_bytecount(pb
, bitrate
);
1857 url_fprintf(pb
, "<td align=right>");
1858 fmt_bytecount(pb
, compute_datarate(&c1
->datarate
, c1
->data_count
) * 8);
1859 url_fprintf(pb
, "<td align=right>");
1860 fmt_bytecount(pb
, c1
->data_count
);
1861 url_fprintf(pb
, "\n");
1864 url_fprintf(pb
, "</TABLE>\n");
1869 url_fprintf(pb
, "<HR size=1 noshade>Generated at %s", p
);
1870 url_fprintf(pb
, "</BODY>\n</HTML>\n");
1872 len
= url_close_dyn_buf(pb
, &c
->pb_buffer
);
1873 c
->buffer_ptr
= c
->pb_buffer
;
1874 c
->buffer_end
= c
->pb_buffer
+ len
;
1877 /* check if the parser needs to be opened for stream i */
1878 static void open_parser(AVFormatContext
*s
, int i
)
1880 AVStream
*st
= s
->streams
[i
];
1883 if (!st
->codec
->codec
) {
1884 codec
= avcodec_find_decoder(st
->codec
->codec_id
);
1885 if (codec
&& (codec
->capabilities
& CODEC_CAP_PARSE_ONLY
)) {
1886 st
->codec
->parse_only
= 1;
1887 if (avcodec_open(st
->codec
, codec
) < 0) {
1888 st
->codec
->parse_only
= 0;
1894 static int open_input_stream(HTTPContext
*c
, const char *info
)
1897 char input_filename
[1024];
1902 /* find file name */
1903 if (c
->stream
->feed
) {
1904 strcpy(input_filename
, c
->stream
->feed
->feed_filename
);
1905 buf_size
= FFM_PACKET_SIZE
;
1906 /* compute position (absolute time) */
1907 if (find_info_tag(buf
, sizeof(buf
), "date", info
)) {
1908 stream_pos
= parse_date(buf
, 0);
1909 } else if (find_info_tag(buf
, sizeof(buf
), "buffer", info
)) {
1910 int prebuffer
= strtol(buf
, 0, 10);
1911 stream_pos
= av_gettime() - prebuffer
* (int64_t)1000000;
1913 stream_pos
= av_gettime() - c
->stream
->prebuffer
* (int64_t)1000;
1916 strcpy(input_filename
, c
->stream
->feed_filename
);
1918 /* compute position (relative time) */
1919 if (find_info_tag(buf
, sizeof(buf
), "date", info
)) {
1920 stream_pos
= parse_date(buf
, 1);
1925 if (input_filename
[0] == '\0')
1929 { time_t when
= stream_pos
/ 1000000;
1930 http_log("Stream pos = %"PRId64
", time=%s", stream_pos
, ctime(&when
));
1935 if (av_open_input_file(&s
, input_filename
, c
->stream
->ifmt
,
1936 buf_size
, c
->stream
->ap_in
) < 0) {
1937 http_log("%s not found", input_filename
);
1942 /* open each parser */
1943 for(i
=0;i
<s
->nb_streams
;i
++)
1946 /* choose stream as clock source (we favorize video stream if
1947 present) for packet sending */
1948 c
->pts_stream_index
= 0;
1949 for(i
=0;i
<c
->stream
->nb_streams
;i
++) {
1950 if (c
->pts_stream_index
== 0 &&
1951 c
->stream
->streams
[i
]->codec
->codec_type
== CODEC_TYPE_VIDEO
) {
1952 c
->pts_stream_index
= i
;
1957 if (c
->fmt_in
->iformat
->read_seek
) {
1958 c
->fmt_in
->iformat
->read_seek(c
->fmt_in
, 0, stream_pos
, 0);
1961 /* set the start time (needed for maxtime and RTP packet timing) */
1962 c
->start_time
= cur_time
;
1963 c
->first_pts
= AV_NOPTS_VALUE
;
1967 /* return the server clock (in us) */
1968 static int64_t get_server_clock(HTTPContext
*c
)
1970 /* compute current pts value from system time */
1971 return (cur_time
- c
->start_time
) * 1000;
1974 /* return the estimated time at which the current packet must be sent
1976 static int64_t get_packet_send_clock(HTTPContext
*c
)
1978 int bytes_left
, bytes_sent
, frame_bytes
;
1980 frame_bytes
= c
->cur_frame_bytes
;
1981 if (frame_bytes
<= 0) {
1984 bytes_left
= c
->buffer_end
- c
->buffer_ptr
;
1985 bytes_sent
= frame_bytes
- bytes_left
;
1986 return c
->cur_pts
+ (c
->cur_frame_duration
* bytes_sent
) / frame_bytes
;
1991 static int http_prepare_data(HTTPContext
*c
)
1994 AVFormatContext
*ctx
;
1996 av_freep(&c
->pb_buffer
);
1998 case HTTPSTATE_SEND_DATA_HEADER
:
1999 memset(&c
->fmt_ctx
, 0, sizeof(c
->fmt_ctx
));
2000 pstrcpy(c
->fmt_ctx
.author
, sizeof(c
->fmt_ctx
.author
),
2002 pstrcpy(c
->fmt_ctx
.comment
, sizeof(c
->fmt_ctx
.comment
),
2003 c
->stream
->comment
);
2004 pstrcpy(c
->fmt_ctx
.copyright
, sizeof(c
->fmt_ctx
.copyright
),
2005 c
->stream
->copyright
);
2006 pstrcpy(c
->fmt_ctx
.title
, sizeof(c
->fmt_ctx
.title
),
2009 /* open output stream by using specified codecs */
2010 c
->fmt_ctx
.oformat
= c
->stream
->fmt
;
2011 c
->fmt_ctx
.nb_streams
= c
->stream
->nb_streams
;
2012 for(i
=0;i
<c
->fmt_ctx
.nb_streams
;i
++) {
2015 st
= av_mallocz(sizeof(AVStream
));
2016 st
->codec
= avcodec_alloc_context();
2017 c
->fmt_ctx
.streams
[i
] = st
;
2018 /* if file or feed, then just take streams from FFStream struct */
2019 if (!c
->stream
->feed
||
2020 c
->stream
->feed
== c
->stream
)
2021 src
= c
->stream
->streams
[i
];
2023 src
= c
->stream
->feed
->streams
[c
->stream
->feed_streams
[i
]];
2027 st
->codec
->frame_number
= 0; /* XXX: should be done in
2028 AVStream, not in codec */
2029 /* I'm pretty sure that this is not correct...
2030 * However, without it, we crash
2032 st
->codec
->coded_frame
= &dummy_frame
;
2034 c
->got_key_frame
= 0;
2036 /* prepare header and save header data in a stream */
2037 if (url_open_dyn_buf(&c
->fmt_ctx
.pb
) < 0) {
2038 /* XXX: potential leak */
2041 c
->fmt_ctx
.pb
.is_streamed
= 1;
2043 av_set_parameters(&c
->fmt_ctx
, NULL
);
2044 if (av_write_header(&c
->fmt_ctx
) < 0)
2047 len
= url_close_dyn_buf(&c
->fmt_ctx
.pb
, &c
->pb_buffer
);
2048 c
->buffer_ptr
= c
->pb_buffer
;
2049 c
->buffer_end
= c
->pb_buffer
+ len
;
2051 c
->state
= HTTPSTATE_SEND_DATA
;
2052 c
->last_packet_sent
= 0;
2054 case HTTPSTATE_SEND_DATA
:
2055 /* find a new packet */
2059 /* read a packet from the input stream */
2060 if (c
->stream
->feed
) {
2061 ffm_set_write_index(c
->fmt_in
,
2062 c
->stream
->feed
->feed_write_index
,
2063 c
->stream
->feed
->feed_size
);
2066 if (c
->stream
->max_time
&&
2067 c
->stream
->max_time
+ c
->start_time
- cur_time
< 0) {
2068 /* We have timed out */
2069 c
->state
= HTTPSTATE_SEND_DATA_TRAILER
;
2072 if (av_read_frame(c
->fmt_in
, &pkt
) < 0) {
2073 if (c
->stream
->feed
&& c
->stream
->feed
->feed_opened
) {
2074 /* if coming from feed, it means we reached the end of the
2075 ffm file, so must wait for more data */
2076 c
->state
= HTTPSTATE_WAIT_FEED
;
2077 return 1; /* state changed */
2079 if (c
->stream
->loop
) {
2080 av_close_input_file(c
->fmt_in
);
2082 if (open_input_stream(c
, "") < 0)
2087 /* must send trailer now because eof or error */
2088 c
->state
= HTTPSTATE_SEND_DATA_TRAILER
;
2092 /* update first pts if needed */
2093 if (c
->first_pts
== AV_NOPTS_VALUE
) {
2094 c
->first_pts
= av_rescale_q(pkt
.dts
, c
->fmt_in
->streams
[pkt
.stream_index
]->time_base
, AV_TIME_BASE_Q
);
2095 c
->start_time
= cur_time
;
2097 /* send it to the appropriate stream */
2098 if (c
->stream
->feed
) {
2099 /* if coming from a feed, select the right stream */
2100 if (c
->switch_pending
) {
2101 c
->switch_pending
= 0;
2102 for(i
=0;i
<c
->stream
->nb_streams
;i
++) {
2103 if (c
->switch_feed_streams
[i
] == pkt
.stream_index
) {
2104 if (pkt
.flags
& PKT_FLAG_KEY
) {
2105 do_switch_stream(c
, i
);
2108 if (c
->switch_feed_streams
[i
] >= 0) {
2109 c
->switch_pending
= 1;
2113 for(i
=0;i
<c
->stream
->nb_streams
;i
++) {
2114 if (c
->feed_streams
[i
] == pkt
.stream_index
) {
2115 pkt
.stream_index
= i
;
2116 if (pkt
.flags
& PKT_FLAG_KEY
) {
2117 c
->got_key_frame
|= 1 << i
;
2119 /* See if we have all the key frames, then
2120 * we start to send. This logic is not quite
2121 * right, but it works for the case of a
2122 * single video stream with one or more
2123 * audio streams (for which every frame is
2124 * typically a key frame).
2126 if (!c
->stream
->send_on_key
||
2127 ((c
->got_key_frame
+ 1) >> c
->stream
->nb_streams
)) {
2133 AVCodecContext
*codec
;
2136 /* specific handling for RTP: we use several
2137 output stream (one for each RTP
2138 connection). XXX: need more abstract handling */
2139 if (c
->is_packetized
) {
2141 /* compute send time and duration */
2142 st
= c
->fmt_in
->streams
[pkt
.stream_index
];
2143 c
->cur_pts
= av_rescale_q(pkt
.dts
, st
->time_base
, AV_TIME_BASE_Q
);
2144 if (st
->start_time
!= AV_NOPTS_VALUE
)
2145 c
->cur_pts
-= av_rescale_q(st
->start_time
, st
->time_base
, AV_TIME_BASE_Q
);
2146 c
->cur_frame_duration
= av_rescale_q(pkt
.duration
, st
->time_base
, AV_TIME_BASE_Q
);
2148 printf("index=%d pts=%0.3f duration=%0.6f\n",
2150 (double)c
->cur_pts
/
2152 (double)c
->cur_frame_duration
/
2155 /* find RTP context */
2156 c
->packet_stream_index
= pkt
.stream_index
;
2157 ctx
= c
->rtp_ctx
[c
->packet_stream_index
];
2159 av_free_packet(&pkt
);
2162 codec
= ctx
->streams
[0]->codec
;
2163 /* only one stream per RTP connection */
2164 pkt
.stream_index
= 0;
2168 codec
= ctx
->streams
[pkt
.stream_index
]->codec
;
2171 codec
->coded_frame
->key_frame
= ((pkt
.flags
& PKT_FLAG_KEY
) != 0);
2172 if (c
->is_packetized
) {
2173 int max_packet_size
;
2174 if (c
->rtp_protocol
== RTSP_PROTOCOL_RTP_TCP
)
2175 max_packet_size
= RTSP_TCP_MAX_PACKET_SIZE
;
2177 max_packet_size
= url_get_max_packet_size(c
->rtp_handles
[c
->packet_stream_index
]);
2178 ret
= url_open_dyn_packet_buf(&ctx
->pb
, max_packet_size
);
2180 ret
= url_open_dyn_buf(&ctx
->pb
);
2183 /* XXX: potential leak */
2186 if (pkt
.dts
!= AV_NOPTS_VALUE
)
2187 pkt
.dts
= av_rescale_q(pkt
.dts
,
2188 c
->fmt_in
->streams
[pkt
.stream_index
]->time_base
,
2189 ctx
->streams
[pkt
.stream_index
]->time_base
);
2190 if (pkt
.pts
!= AV_NOPTS_VALUE
)
2191 pkt
.pts
= av_rescale_q(pkt
.pts
,
2192 c
->fmt_in
->streams
[pkt
.stream_index
]->time_base
,
2193 ctx
->streams
[pkt
.stream_index
]->time_base
);
2194 if (av_write_frame(ctx
, &pkt
)) {
2195 c
->state
= HTTPSTATE_SEND_DATA_TRAILER
;
2198 len
= url_close_dyn_buf(&ctx
->pb
, &c
->pb_buffer
);
2199 c
->cur_frame_bytes
= len
;
2200 c
->buffer_ptr
= c
->pb_buffer
;
2201 c
->buffer_end
= c
->pb_buffer
+ len
;
2203 codec
->frame_number
++;
2207 av_free_packet(&pkt
);
2213 case HTTPSTATE_SEND_DATA_TRAILER
:
2214 /* last packet test ? */
2215 if (c
->last_packet_sent
|| c
->is_packetized
)
2218 /* prepare header */
2219 if (url_open_dyn_buf(&ctx
->pb
) < 0) {
2220 /* XXX: potential leak */
2223 av_write_trailer(ctx
);
2224 len
= url_close_dyn_buf(&ctx
->pb
, &c
->pb_buffer
);
2225 c
->buffer_ptr
= c
->pb_buffer
;
2226 c
->buffer_end
= c
->pb_buffer
+ len
;
2228 c
->last_packet_sent
= 1;
2235 #define SHORT_TERM_BANDWIDTH 8000000
2237 /* should convert the format at the same time */
2238 /* send data starting at c->buffer_ptr to the output connection
2239 (either UDP or TCP connection) */
2240 static int http_send_data(HTTPContext
*c
)
2245 if (c
->buffer_ptr
>= c
->buffer_end
) {
2246 ret
= http_prepare_data(c
);
2249 else if (ret
!= 0) {
2250 /* state change requested */
2254 if (c
->is_packetized
) {
2255 /* RTP data output */
2256 len
= c
->buffer_end
- c
->buffer_ptr
;
2258 /* fail safe - should never happen */
2260 c
->buffer_ptr
= c
->buffer_end
;
2263 len
= (c
->buffer_ptr
[0] << 24) |
2264 (c
->buffer_ptr
[1] << 16) |
2265 (c
->buffer_ptr
[2] << 8) |
2267 if (len
> (c
->buffer_end
- c
->buffer_ptr
))
2269 if ((get_packet_send_clock(c
) - get_server_clock(c
)) > 0) {
2270 /* nothing to send yet: we can wait */
2274 c
->data_count
+= len
;
2275 update_datarate(&c
->datarate
, c
->data_count
);
2277 c
->stream
->bytes_served
+= len
;
2279 if (c
->rtp_protocol
== RTSP_PROTOCOL_RTP_TCP
) {
2280 /* RTP packets are sent inside the RTSP TCP connection */
2281 ByteIOContext pb1
, *pb
= &pb1
;
2282 int interleaved_index
, size
;
2284 HTTPContext
*rtsp_c
;
2287 /* if no RTSP connection left, error */
2290 /* if already sending something, then wait. */
2291 if (rtsp_c
->state
!= RTSPSTATE_WAIT_REQUEST
) {
2294 if (url_open_dyn_buf(pb
) < 0)
2296 interleaved_index
= c
->packet_stream_index
* 2;
2297 /* RTCP packets are sent at odd indexes */
2298 if (c
->buffer_ptr
[1] == 200)
2299 interleaved_index
++;
2300 /* write RTSP TCP header */
2302 header
[1] = interleaved_index
;
2303 header
[2] = len
>> 8;
2305 put_buffer(pb
, header
, 4);
2306 /* write RTP packet data */
2308 put_buffer(pb
, c
->buffer_ptr
, len
);
2309 size
= url_close_dyn_buf(pb
, &c
->packet_buffer
);
2310 /* prepare asynchronous TCP sending */
2311 rtsp_c
->packet_buffer_ptr
= c
->packet_buffer
;
2312 rtsp_c
->packet_buffer_end
= c
->packet_buffer
+ size
;
2313 c
->buffer_ptr
+= len
;
2315 /* send everything we can NOW */
2316 len
= send(rtsp_c
->fd
, rtsp_c
->packet_buffer_ptr
,
2317 rtsp_c
->packet_buffer_end
- rtsp_c
->packet_buffer_ptr
, 0);
2319 rtsp_c
->packet_buffer_ptr
+= len
;
2321 if (rtsp_c
->packet_buffer_ptr
< rtsp_c
->packet_buffer_end
) {
2322 /* if we could not send all the data, we will
2323 send it later, so a new state is needed to
2324 "lock" the RTSP TCP connection */
2325 rtsp_c
->state
= RTSPSTATE_SEND_PACKET
;
2328 /* all data has been sent */
2329 av_freep(&c
->packet_buffer
);
2332 /* send RTP packet directly in UDP */
2334 url_write(c
->rtp_handles
[c
->packet_stream_index
],
2335 c
->buffer_ptr
, len
);
2336 c
->buffer_ptr
+= len
;
2337 /* here we continue as we can send several packets per 10 ms slot */
2340 /* TCP data output */
2341 len
= send(c
->fd
, c
->buffer_ptr
, c
->buffer_end
- c
->buffer_ptr
, 0);
2343 if (errno
!= EAGAIN
&& errno
!= EINTR
) {
2344 /* error : close connection */
2350 c
->buffer_ptr
+= len
;
2352 c
->data_count
+= len
;
2353 update_datarate(&c
->datarate
, c
->data_count
);
2355 c
->stream
->bytes_served
+= len
;
2363 static int http_start_receive_data(HTTPContext
*c
)
2367 if (c
->stream
->feed_opened
)
2370 /* Don't permit writing to this one */
2371 if (c
->stream
->readonly
)
2375 fd
= open(c
->stream
->feed_filename
, O_RDWR
);
2380 c
->stream
->feed_write_index
= ffm_read_write_index(fd
);
2381 c
->stream
->feed_size
= lseek(fd
, 0, SEEK_END
);
2382 lseek(fd
, 0, SEEK_SET
);
2384 /* init buffer input */
2385 c
->buffer_ptr
= c
->buffer
;
2386 c
->buffer_end
= c
->buffer
+ FFM_PACKET_SIZE
;
2387 c
->stream
->feed_opened
= 1;
2391 static int http_receive_data(HTTPContext
*c
)
2395 if (c
->buffer_end
> c
->buffer_ptr
) {
2398 len
= recv(c
->fd
, c
->buffer_ptr
, c
->buffer_end
- c
->buffer_ptr
, 0);
2400 if (errno
!= EAGAIN
&& errno
!= EINTR
) {
2401 /* error : close connection */
2404 } else if (len
== 0) {
2405 /* end of connection : close it */
2408 c
->buffer_ptr
+= len
;
2409 c
->data_count
+= len
;
2410 update_datarate(&c
->datarate
, c
->data_count
);
2414 if (c
->buffer_ptr
- c
->buffer
>= 2 && c
->data_count
> FFM_PACKET_SIZE
) {
2415 if (c
->buffer
[0] != 'f' ||
2416 c
->buffer
[1] != 'm') {
2417 http_log("Feed stream has become desynchronized -- disconnecting\n");
2422 if (c
->buffer_ptr
>= c
->buffer_end
) {
2423 FFStream
*feed
= c
->stream
;
2424 /* a packet has been received : write it in the store, except
2426 if (c
->data_count
> FFM_PACKET_SIZE
) {
2428 // printf("writing pos=0x%"PRIx64" size=0x%"PRIx64"\n", feed->feed_write_index, feed->feed_size);
2429 /* XXX: use llseek or url_seek */
2430 lseek(c
->feed_fd
, feed
->feed_write_index
, SEEK_SET
);
2431 write(c
->feed_fd
, c
->buffer
, FFM_PACKET_SIZE
);
2433 feed
->feed_write_index
+= FFM_PACKET_SIZE
;
2434 /* update file size */
2435 if (feed
->feed_write_index
> c
->stream
->feed_size
)
2436 feed
->feed_size
= feed
->feed_write_index
;
2438 /* handle wrap around if max file size reached */
2439 if (c
->stream
->feed_max_size
&& feed
->feed_write_index
>= c
->stream
->feed_max_size
)
2440 feed
->feed_write_index
= FFM_PACKET_SIZE
;
2443 ffm_write_write_index(c
->feed_fd
, feed
->feed_write_index
);
2445 /* wake up any waiting connections */
2446 for(c1
= first_http_ctx
; c1
!= NULL
; c1
= c1
->next
) {
2447 if (c1
->state
== HTTPSTATE_WAIT_FEED
&&
2448 c1
->stream
->feed
== c
->stream
->feed
) {
2449 c1
->state
= HTTPSTATE_SEND_DATA
;
2453 /* We have a header in our hands that contains useful data */
2455 AVInputFormat
*fmt_in
;
2456 ByteIOContext
*pb
= &s
.pb
;
2459 memset(&s
, 0, sizeof(s
));
2461 url_open_buf(pb
, c
->buffer
, c
->buffer_end
- c
->buffer
, URL_RDONLY
);
2462 pb
->buf_end
= c
->buffer_end
; /* ?? */
2463 pb
->is_streamed
= 1;
2465 /* use feed output format name to find corresponding input format */
2466 fmt_in
= av_find_input_format(feed
->fmt
->name
);
2470 if (fmt_in
->priv_data_size
> 0) {
2471 s
.priv_data
= av_mallocz(fmt_in
->priv_data_size
);
2477 if (fmt_in
->read_header(&s
, 0) < 0) {
2478 av_freep(&s
.priv_data
);
2482 /* Now we have the actual streams */
2483 if (s
.nb_streams
!= feed
->nb_streams
) {
2484 av_freep(&s
.priv_data
);
2487 for (i
= 0; i
< s
.nb_streams
; i
++) {
2488 memcpy(feed
->streams
[i
]->codec
,
2489 s
.streams
[i
]->codec
, sizeof(AVCodecContext
));
2491 av_freep(&s
.priv_data
);
2493 c
->buffer_ptr
= c
->buffer
;
2498 c
->stream
->feed_opened
= 0;
2503 /********************************************************************/
2506 static void rtsp_reply_header(HTTPContext
*c
, enum RTSPStatusCode error_number
)
2513 switch(error_number
) {
2514 #define DEF(n, c, s) case c: str = s; break;
2515 #include "rtspcodes.h"
2518 str
= "Unknown Error";
2522 url_fprintf(c
->pb
, "RTSP/1.0 %d %s\r\n", error_number
, str
);
2523 url_fprintf(c
->pb
, "CSeq: %d\r\n", c
->seq
);
2525 /* output GMT time */
2529 p
= buf2
+ strlen(p
) - 1;
2532 url_fprintf(c
->pb
, "Date: %s GMT\r\n", buf2
);
2535 static void rtsp_reply_error(HTTPContext
*c
, enum RTSPStatusCode error_number
)
2537 rtsp_reply_header(c
, error_number
);
2538 url_fprintf(c
->pb
, "\r\n");
2541 static int rtsp_parse_request(HTTPContext
*c
)
2543 const char *p
, *p1
, *p2
;
2550 RTSPHeader header1
, *header
= &header1
;
2552 c
->buffer_ptr
[0] = '\0';
2555 get_word(cmd
, sizeof(cmd
), &p
);
2556 get_word(url
, sizeof(url
), &p
);
2557 get_word(protocol
, sizeof(protocol
), &p
);
2559 pstrcpy(c
->method
, sizeof(c
->method
), cmd
);
2560 pstrcpy(c
->url
, sizeof(c
->url
), url
);
2561 pstrcpy(c
->protocol
, sizeof(c
->protocol
), protocol
);
2564 if (url_open_dyn_buf(c
->pb
) < 0) {
2565 /* XXX: cannot do more */
2566 c
->pb
= NULL
; /* safety */
2570 /* check version name */
2571 if (strcmp(protocol
, "RTSP/1.0") != 0) {
2572 rtsp_reply_error(c
, RTSP_STATUS_VERSION
);
2576 /* parse each header line */
2577 memset(header
, 0, sizeof(RTSPHeader
));
2578 /* skip to next line */
2579 while (*p
!= '\n' && *p
!= '\0')
2583 while (*p
!= '\0') {
2584 p1
= strchr(p
, '\n');
2588 if (p2
> p
&& p2
[-1] == '\r')
2590 /* skip empty line */
2594 if (len
> sizeof(line
) - 1)
2595 len
= sizeof(line
) - 1;
2596 memcpy(line
, p
, len
);
2598 rtsp_parse_line(header
, line
);
2602 /* handle sequence number */
2603 c
->seq
= header
->seq
;
2605 if (!strcmp(cmd
, "DESCRIBE")) {
2606 rtsp_cmd_describe(c
, url
);
2607 } else if (!strcmp(cmd
, "OPTIONS")) {
2608 rtsp_cmd_options(c
, url
);
2609 } else if (!strcmp(cmd
, "SETUP")) {
2610 rtsp_cmd_setup(c
, url
, header
);
2611 } else if (!strcmp(cmd
, "PLAY")) {
2612 rtsp_cmd_play(c
, url
, header
);
2613 } else if (!strcmp(cmd
, "PAUSE")) {
2614 rtsp_cmd_pause(c
, url
, header
);
2615 } else if (!strcmp(cmd
, "TEARDOWN")) {
2616 rtsp_cmd_teardown(c
, url
, header
);
2618 rtsp_reply_error(c
, RTSP_STATUS_METHOD
);
2621 len
= url_close_dyn_buf(c
->pb
, &c
->pb_buffer
);
2622 c
->pb
= NULL
; /* safety */
2624 /* XXX: cannot do more */
2627 c
->buffer_ptr
= c
->pb_buffer
;
2628 c
->buffer_end
= c
->pb_buffer
+ len
;
2629 c
->state
= RTSPSTATE_SEND_REPLY
;
2633 /* XXX: move that to rtsp.c, but would need to replace FFStream by
2635 static int prepare_sdp_description(FFStream
*stream
, uint8_t **pbuffer
,
2636 struct in_addr my_ip
)
2638 ByteIOContext pb1
, *pb
= &pb1
;
2639 int i
, payload_type
, port
, private_payload_type
, j
;
2640 const char *ipstr
, *title
, *mediatype
;
2643 if (url_open_dyn_buf(pb
) < 0)
2646 /* general media info */
2648 url_fprintf(pb
, "v=0\n");
2649 ipstr
= inet_ntoa(my_ip
);
2650 url_fprintf(pb
, "o=- 0 0 IN IP4 %s\n", ipstr
);
2651 title
= stream
->title
;
2652 if (title
[0] == '\0')
2654 url_fprintf(pb
, "s=%s\n", title
);
2655 if (stream
->comment
[0] != '\0')
2656 url_fprintf(pb
, "i=%s\n", stream
->comment
);
2657 if (stream
->is_multicast
) {
2658 url_fprintf(pb
, "c=IN IP4 %s\n", inet_ntoa(stream
->multicast_ip
));
2660 /* for each stream, we output the necessary info */
2661 private_payload_type
= RTP_PT_PRIVATE
;
2662 for(i
= 0; i
< stream
->nb_streams
; i
++) {
2663 st
= stream
->streams
[i
];
2664 if (st
->codec
->codec_id
== CODEC_ID_MPEG2TS
) {
2665 mediatype
= "video";
2667 switch(st
->codec
->codec_type
) {
2668 case CODEC_TYPE_AUDIO
:
2669 mediatype
= "audio";
2671 case CODEC_TYPE_VIDEO
:
2672 mediatype
= "video";
2675 mediatype
= "application";
2679 /* NOTE: the port indication is not correct in case of
2680 unicast. It is not an issue because RTSP gives it */
2681 payload_type
= rtp_get_payload_type(st
->codec
);
2682 if (payload_type
< 0)
2683 payload_type
= private_payload_type
++;
2684 if (stream
->is_multicast
) {
2685 port
= stream
->multicast_port
+ 2 * i
;
2689 url_fprintf(pb
, "m=%s %d RTP/AVP %d\n",
2690 mediatype
, port
, payload_type
);
2691 if (payload_type
>= RTP_PT_PRIVATE
) {
2692 /* for private payload type, we need to give more info */
2693 switch(st
->codec
->codec_id
) {
2694 case CODEC_ID_MPEG4
:
2697 url_fprintf(pb
, "a=rtpmap:%d MP4V-ES/%d\n",
2698 payload_type
, 90000);
2699 /* we must also add the mpeg4 header */
2700 data
= st
->codec
->extradata
;
2702 url_fprintf(pb
, "a=fmtp:%d config=", payload_type
);
2703 for(j
=0;j
<st
->codec
->extradata_size
;j
++) {
2704 url_fprintf(pb
, "%02x", data
[j
]);
2706 url_fprintf(pb
, "\n");
2711 /* XXX: add other codecs ? */
2715 url_fprintf(pb
, "a=control:streamid=%d\n", i
);
2717 return url_close_dyn_buf(pb
, pbuffer
);
2719 url_close_dyn_buf(pb
, pbuffer
);
2724 static void rtsp_cmd_options(HTTPContext
*c
, const char *url
)
2726 // rtsp_reply_header(c, RTSP_STATUS_OK);
2727 url_fprintf(c
->pb
, "RTSP/1.0 %d %s\r\n", RTSP_STATUS_OK
, "OK");
2728 url_fprintf(c
->pb
, "CSeq: %d\r\n", c
->seq
);
2729 url_fprintf(c
->pb
, "Public: %s\r\n", "OPTIONS, DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE");
2730 url_fprintf(c
->pb
, "\r\n");
2733 static void rtsp_cmd_describe(HTTPContext
*c
, const char *url
)
2739 int content_length
, len
;
2740 struct sockaddr_in my_addr
;
2742 /* find which url is asked */
2743 url_split(NULL
, 0, NULL
, 0, NULL
, 0, NULL
, path1
, sizeof(path1
), url
);
2748 for(stream
= first_stream
; stream
!= NULL
; stream
= stream
->next
) {
2749 if (!stream
->is_feed
&& stream
->fmt
== &rtp_muxer
&&
2750 !strcmp(path
, stream
->filename
)) {
2754 /* no stream found */
2755 rtsp_reply_error(c
, RTSP_STATUS_SERVICE
); /* XXX: right error ? */
2759 /* prepare the media description in sdp format */
2761 /* get the host IP */
2762 len
= sizeof(my_addr
);
2763 getsockname(c
->fd
, (struct sockaddr
*)&my_addr
, &len
);
2764 content_length
= prepare_sdp_description(stream
, &content
, my_addr
.sin_addr
);
2765 if (content_length
< 0) {
2766 rtsp_reply_error(c
, RTSP_STATUS_INTERNAL
);
2769 rtsp_reply_header(c
, RTSP_STATUS_OK
);
2770 url_fprintf(c
->pb
, "Content-Type: application/sdp\r\n");
2771 url_fprintf(c
->pb
, "Content-Length: %d\r\n", content_length
);
2772 url_fprintf(c
->pb
, "\r\n");
2773 put_buffer(c
->pb
, content
, content_length
);
2776 static HTTPContext
*find_rtp_session(const char *session_id
)
2780 if (session_id
[0] == '\0')
2783 for(c
= first_http_ctx
; c
!= NULL
; c
= c
->next
) {
2784 if (!strcmp(c
->session_id
, session_id
))
2790 static RTSPTransportField
*find_transport(RTSPHeader
*h
, enum RTSPProtocol protocol
)
2792 RTSPTransportField
*th
;
2795 for(i
=0;i
<h
->nb_transports
;i
++) {
2796 th
= &h
->transports
[i
];
2797 if (th
->protocol
== protocol
)
2803 static void rtsp_cmd_setup(HTTPContext
*c
, const char *url
,
2807 int stream_index
, port
;
2812 RTSPTransportField
*th
;
2813 struct sockaddr_in dest_addr
;
2814 RTSPActionServerSetup setup
;
2816 /* find which url is asked */
2817 url_split(NULL
, 0, NULL
, 0, NULL
, 0, NULL
, path1
, sizeof(path1
), url
);
2822 /* now check each stream */
2823 for(stream
= first_stream
; stream
!= NULL
; stream
= stream
->next
) {
2824 if (!stream
->is_feed
&& stream
->fmt
== &rtp_muxer
) {
2825 /* accept aggregate filenames only if single stream */
2826 if (!strcmp(path
, stream
->filename
)) {
2827 if (stream
->nb_streams
!= 1) {
2828 rtsp_reply_error(c
, RTSP_STATUS_AGGREGATE
);
2835 for(stream_index
= 0; stream_index
< stream
->nb_streams
;
2837 snprintf(buf
, sizeof(buf
), "%s/streamid=%d",
2838 stream
->filename
, stream_index
);
2839 if (!strcmp(path
, buf
))
2844 /* no stream found */
2845 rtsp_reply_error(c
, RTSP_STATUS_SERVICE
); /* XXX: right error ? */
2849 /* generate session id if needed */
2850 if (h
->session_id
[0] == '\0') {
2851 snprintf(h
->session_id
, sizeof(h
->session_id
), "%08x%08x",
2852 av_random(&random_state
), av_random(&random_state
));
2855 /* find rtp session, and create it if none found */
2856 rtp_c
= find_rtp_session(h
->session_id
);
2858 /* always prefer UDP */
2859 th
= find_transport(h
, RTSP_PROTOCOL_RTP_UDP
);
2861 th
= find_transport(h
, RTSP_PROTOCOL_RTP_TCP
);
2863 rtsp_reply_error(c
, RTSP_STATUS_TRANSPORT
);
2868 rtp_c
= rtp_new_connection(&c
->from_addr
, stream
, h
->session_id
,
2871 rtsp_reply_error(c
, RTSP_STATUS_BANDWIDTH
);
2875 /* open input stream */
2876 if (open_input_stream(rtp_c
, "") < 0) {
2877 rtsp_reply_error(c
, RTSP_STATUS_INTERNAL
);
2882 /* test if stream is OK (test needed because several SETUP needs
2883 to be done for a given file) */
2884 if (rtp_c
->stream
!= stream
) {
2885 rtsp_reply_error(c
, RTSP_STATUS_SERVICE
);
2889 /* test if stream is already set up */
2890 if (rtp_c
->rtp_ctx
[stream_index
]) {
2891 rtsp_reply_error(c
, RTSP_STATUS_STATE
);
2895 /* check transport */
2896 th
= find_transport(h
, rtp_c
->rtp_protocol
);
2897 if (!th
|| (th
->protocol
== RTSP_PROTOCOL_RTP_UDP
&&
2898 th
->client_port_min
<= 0)) {
2899 rtsp_reply_error(c
, RTSP_STATUS_TRANSPORT
);
2903 /* setup default options */
2904 setup
.transport_option
[0] = '\0';
2905 dest_addr
= rtp_c
->from_addr
;
2906 dest_addr
.sin_port
= htons(th
->client_port_min
);
2908 /* add transport option if needed */
2909 if (ff_rtsp_callback
) {
2910 setup
.ipaddr
= ntohl(dest_addr
.sin_addr
.s_addr
);
2911 if (ff_rtsp_callback(RTSP_ACTION_SERVER_SETUP
, rtp_c
->session_id
,
2912 (char *)&setup
, sizeof(setup
),
2913 stream
->rtsp_option
) < 0) {
2914 rtsp_reply_error(c
, RTSP_STATUS_TRANSPORT
);
2917 dest_addr
.sin_addr
.s_addr
= htonl(setup
.ipaddr
);
2921 if (rtp_new_av_stream(rtp_c
, stream_index
, &dest_addr
, c
) < 0) {
2922 rtsp_reply_error(c
, RTSP_STATUS_TRANSPORT
);
2926 /* now everything is OK, so we can send the connection parameters */
2927 rtsp_reply_header(c
, RTSP_STATUS_OK
);
2929 url_fprintf(c
->pb
, "Session: %s\r\n", rtp_c
->session_id
);
2931 switch(rtp_c
->rtp_protocol
) {
2932 case RTSP_PROTOCOL_RTP_UDP
:
2933 port
= rtp_get_local_port(rtp_c
->rtp_handles
[stream_index
]);
2934 url_fprintf(c
->pb
, "Transport: RTP/AVP/UDP;unicast;"
2935 "client_port=%d-%d;server_port=%d-%d",
2936 th
->client_port_min
, th
->client_port_min
+ 1,
2939 case RTSP_PROTOCOL_RTP_TCP
:
2940 url_fprintf(c
->pb
, "Transport: RTP/AVP/TCP;interleaved=%d-%d",
2941 stream_index
* 2, stream_index
* 2 + 1);
2946 if (setup
.transport_option
[0] != '\0') {
2947 url_fprintf(c
->pb
, ";%s", setup
.transport_option
);
2949 url_fprintf(c
->pb
, "\r\n");
2952 url_fprintf(c
->pb
, "\r\n");
2956 /* find an rtp connection by using the session ID. Check consistency
2958 static HTTPContext
*find_rtp_session_with_url(const char *url
,
2959 const char *session_id
)
2967 rtp_c
= find_rtp_session(session_id
);
2971 /* find which url is asked */
2972 url_split(NULL
, 0, NULL
, 0, NULL
, 0, NULL
, path1
, sizeof(path1
), url
);
2976 if(!strcmp(path
, rtp_c
->stream
->filename
)) return rtp_c
;
2977 for(s
=0; s
<rtp_c
->stream
->nb_streams
; ++s
) {
2978 snprintf(buf
, sizeof(buf
), "%s/streamid=%d",
2979 rtp_c
->stream
->filename
, s
);
2980 if(!strncmp(path
, buf
, sizeof(buf
))) {
2981 // XXX: Should we reply with RTSP_STATUS_ONLY_AGGREGATE if nb_streams>1?
2988 static void rtsp_cmd_play(HTTPContext
*c
, const char *url
, RTSPHeader
*h
)
2992 rtp_c
= find_rtp_session_with_url(url
, h
->session_id
);
2994 rtsp_reply_error(c
, RTSP_STATUS_SESSION
);
2998 if (rtp_c
->state
!= HTTPSTATE_SEND_DATA
&&
2999 rtp_c
->state
!= HTTPSTATE_WAIT_FEED
&&
3000 rtp_c
->state
!= HTTPSTATE_READY
) {
3001 rtsp_reply_error(c
, RTSP_STATUS_STATE
);
3006 /* XXX: seek in stream */
3007 if (h
->range_start
!= AV_NOPTS_VALUE
) {
3008 printf("range_start=%0.3f\n", (double)h
->range_start
/ AV_TIME_BASE
);
3009 av_seek_frame(rtp_c
->fmt_in
, -1, h
->range_start
);
3013 rtp_c
->state
= HTTPSTATE_SEND_DATA
;
3015 /* now everything is OK, so we can send the connection parameters */
3016 rtsp_reply_header(c
, RTSP_STATUS_OK
);
3018 url_fprintf(c
->pb
, "Session: %s\r\n", rtp_c
->session_id
);
3019 url_fprintf(c
->pb
, "\r\n");
3022 static void rtsp_cmd_pause(HTTPContext
*c
, const char *url
, RTSPHeader
*h
)
3026 rtp_c
= find_rtp_session_with_url(url
, h
->session_id
);
3028 rtsp_reply_error(c
, RTSP_STATUS_SESSION
);
3032 if (rtp_c
->state
!= HTTPSTATE_SEND_DATA
&&
3033 rtp_c
->state
!= HTTPSTATE_WAIT_FEED
) {
3034 rtsp_reply_error(c
, RTSP_STATUS_STATE
);
3038 rtp_c
->state
= HTTPSTATE_READY
;
3039 rtp_c
->first_pts
= AV_NOPTS_VALUE
;
3040 /* now everything is OK, so we can send the connection parameters */
3041 rtsp_reply_header(c
, RTSP_STATUS_OK
);
3043 url_fprintf(c
->pb
, "Session: %s\r\n", rtp_c
->session_id
);
3044 url_fprintf(c
->pb
, "\r\n");
3047 static void rtsp_cmd_teardown(HTTPContext
*c
, const char *url
, RTSPHeader
*h
)
3051 rtp_c
= find_rtp_session_with_url(url
, h
->session_id
);
3053 rtsp_reply_error(c
, RTSP_STATUS_SESSION
);
3057 /* abort the session */
3058 close_connection(rtp_c
);
3060 if (ff_rtsp_callback
) {
3061 ff_rtsp_callback(RTSP_ACTION_SERVER_TEARDOWN
, rtp_c
->session_id
,
3063 rtp_c
->stream
->rtsp_option
);
3066 /* now everything is OK, so we can send the connection parameters */
3067 rtsp_reply_header(c
, RTSP_STATUS_OK
);
3069 url_fprintf(c
->pb
, "Session: %s\r\n", rtp_c
->session_id
);
3070 url_fprintf(c
->pb
, "\r\n");
3074 /********************************************************************/
3077 static HTTPContext
*rtp_new_connection(struct sockaddr_in
*from_addr
,
3078 FFStream
*stream
, const char *session_id
,
3079 enum RTSPProtocol rtp_protocol
)
3081 HTTPContext
*c
= NULL
;
3082 const char *proto_str
;
3084 /* XXX: should output a warning page when coming
3085 close to the connection limit */
3086 if (nb_connections
>= nb_max_connections
)
3089 /* add a new connection */
3090 c
= av_mallocz(sizeof(HTTPContext
));
3095 c
->poll_entry
= NULL
;
3096 c
->from_addr
= *from_addr
;
3097 c
->buffer_size
= IOBUFFER_INIT_SIZE
;
3098 c
->buffer
= av_malloc(c
->buffer_size
);
3103 pstrcpy(c
->session_id
, sizeof(c
->session_id
), session_id
);
3104 c
->state
= HTTPSTATE_READY
;
3105 c
->is_packetized
= 1;
3106 c
->rtp_protocol
= rtp_protocol
;
3108 /* protocol is shown in statistics */
3109 switch(c
->rtp_protocol
) {
3110 case RTSP_PROTOCOL_RTP_UDP_MULTICAST
:
3111 proto_str
= "MCAST";
3113 case RTSP_PROTOCOL_RTP_UDP
:
3116 case RTSP_PROTOCOL_RTP_TCP
:
3123 pstrcpy(c
->protocol
, sizeof(c
->protocol
), "RTP/");
3124 pstrcat(c
->protocol
, sizeof(c
->protocol
), proto_str
);
3126 current_bandwidth
+= stream
->bandwidth
;
3128 c
->next
= first_http_ctx
;
3140 /* add a new RTP stream in an RTP connection (used in RTSP SETUP
3141 command). If RTP/TCP protocol is used, TCP connection 'rtsp_c' is
3143 static int rtp_new_av_stream(HTTPContext
*c
,
3144 int stream_index
, struct sockaddr_in
*dest_addr
,
3145 HTTPContext
*rtsp_c
)
3147 AVFormatContext
*ctx
;
3153 int max_packet_size
;
3155 /* now we can open the relevant output stream */
3156 ctx
= av_alloc_format_context();
3159 ctx
->oformat
= &rtp_muxer
;
3161 st
= av_mallocz(sizeof(AVStream
));
3164 st
->codec
= avcodec_alloc_context();
3165 ctx
->nb_streams
= 1;
3166 ctx
->streams
[0] = st
;
3168 if (!c
->stream
->feed
||
3169 c
->stream
->feed
== c
->stream
) {
3170 memcpy(st
, c
->stream
->streams
[stream_index
], sizeof(AVStream
));
3173 c
->stream
->feed
->streams
[c
->stream
->feed_streams
[stream_index
]],
3177 /* build destination RTP address */
3178 ipaddr
= inet_ntoa(dest_addr
->sin_addr
);
3180 switch(c
->rtp_protocol
) {
3181 case RTSP_PROTOCOL_RTP_UDP
:
3182 case RTSP_PROTOCOL_RTP_UDP_MULTICAST
:
3185 /* XXX: also pass as parameter to function ? */
3186 if (c
->stream
->is_multicast
) {
3188 ttl
= c
->stream
->multicast_ttl
;
3191 snprintf(ctx
->filename
, sizeof(ctx
->filename
),
3192 "rtp://%s:%d?multicast=1&ttl=%d",
3193 ipaddr
, ntohs(dest_addr
->sin_port
), ttl
);
3195 snprintf(ctx
->filename
, sizeof(ctx
->filename
),
3196 "rtp://%s:%d", ipaddr
, ntohs(dest_addr
->sin_port
));
3199 if (url_open(&h
, ctx
->filename
, URL_WRONLY
) < 0)
3201 c
->rtp_handles
[stream_index
] = h
;
3202 max_packet_size
= url_get_max_packet_size(h
);
3204 case RTSP_PROTOCOL_RTP_TCP
:
3207 max_packet_size
= RTSP_TCP_MAX_PACKET_SIZE
;
3213 http_log("%s:%d - - [%s] \"PLAY %s/streamid=%d %s\"\n",
3214 ipaddr
, ntohs(dest_addr
->sin_port
),
3216 c
->stream
->filename
, stream_index
, c
->protocol
);
3218 /* normally, no packets should be output here, but the packet size may be checked */
3219 if (url_open_dyn_packet_buf(&ctx
->pb
, max_packet_size
) < 0) {
3220 /* XXX: close stream */
3223 av_set_parameters(ctx
, NULL
);
3224 if (av_write_header(ctx
) < 0) {