]> git.sesse.net Git - ffmpeg/blob - libavformat/rtspenc.c
Export metadata in the generic format. Deprecate old conversion API.
[ffmpeg] / libavformat / rtspenc.c
1 /*
2  * RTSP muxer
3  * Copyright (c) 2010 Martin Storsjo
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "avformat.h"
23
24 #include <sys/time.h>
25 #if HAVE_SYS_SELECT_H
26 #include <sys/select.h>
27 #endif
28 #include "network.h"
29 #include "rtsp.h"
30 #include "internal.h"
31 #include "libavutil/intreadwrite.h"
32
33 static int rtsp_write_record(AVFormatContext *s)
34 {
35     RTSPState *rt = s->priv_data;
36     RTSPMessageHeader reply1, *reply = &reply1;
37     char cmd[1024];
38
39     snprintf(cmd, sizeof(cmd),
40              "Range: npt=%0.3f-\r\n",
41              (double) 0);
42     ff_rtsp_send_cmd(s, "RECORD", rt->control_uri, cmd, reply, NULL);
43     if (reply->status_code != RTSP_STATUS_OK)
44         return -1;
45     rt->state = RTSP_STATE_STREAMING;
46     return 0;
47 }
48
49 static int rtsp_write_header(AVFormatContext *s)
50 {
51     int ret;
52
53     ret = ff_rtsp_connect(s);
54     if (ret)
55         return ret;
56
57     if (rtsp_write_record(s) < 0) {
58         ff_rtsp_close_streams(s);
59         ff_rtsp_close_connections(s);
60         return AVERROR_INVALIDDATA;
61     }
62     return 0;
63 }
64
65 static int tcp_write_packet(AVFormatContext *s, RTSPStream *rtsp_st)
66 {
67     RTSPState *rt = s->priv_data;
68     AVFormatContext *rtpctx = rtsp_st->transport_priv;
69     uint8_t *buf, *ptr;
70     int size;
71     uint8_t *interleave_header, *interleaved_packet;
72
73     size = url_close_dyn_buf(rtpctx->pb, &buf);
74     ptr = buf;
75     while (size > 4) {
76         uint32_t packet_len = AV_RB32(ptr);
77         int id;
78         /* The interleaving header is exactly 4 bytes, which happens to be
79          * the same size as the packet length header from
80          * url_open_dyn_packet_buf. So by writing the interleaving header
81          * over these bytes, we get a consecutive interleaved packet
82          * that can be written in one call. */
83         interleaved_packet = interleave_header = ptr;
84         ptr += 4;
85         size -= 4;
86         if (packet_len > size || packet_len < 2)
87             break;
88         if (ptr[1] >= RTCP_SR && ptr[1] <= RTCP_APP)
89             id = rtsp_st->interleaved_max; /* RTCP */
90         else
91             id = rtsp_st->interleaved_min; /* RTP */
92         interleave_header[0] = '$';
93         interleave_header[1] = id;
94         AV_WB16(interleave_header + 2, packet_len);
95         url_write(rt->rtsp_hd_out, interleaved_packet, 4 + packet_len);
96         ptr += packet_len;
97         size -= packet_len;
98     }
99     av_free(buf);
100     url_open_dyn_packet_buf(&rtpctx->pb, RTSP_TCP_MAX_PACKET_SIZE);
101     return 0;
102 }
103
104 static int rtsp_write_packet(AVFormatContext *s, AVPacket *pkt)
105 {
106     RTSPState *rt = s->priv_data;
107     RTSPStream *rtsp_st;
108     fd_set rfds;
109     int n, tcp_fd;
110     struct timeval tv;
111     AVFormatContext *rtpctx;
112     int ret;
113
114     tcp_fd = url_get_file_handle(rt->rtsp_hd);
115
116     while (1) {
117         FD_ZERO(&rfds);
118         FD_SET(tcp_fd, &rfds);
119         tv.tv_sec = 0;
120         tv.tv_usec = 0;
121         n = select(tcp_fd + 1, &rfds, NULL, NULL, &tv);
122         if (n <= 0)
123             break;
124         if (FD_ISSET(tcp_fd, &rfds)) {
125             RTSPMessageHeader reply;
126
127             /* Don't let ff_rtsp_read_reply handle interleaved packets,
128              * since it would block and wait for an RTSP reply on the socket
129              * (which may not be coming any time soon) if it handles
130              * interleaved packets internally. */
131             ret = ff_rtsp_read_reply(s, &reply, NULL, 1);
132             if (ret < 0)
133                 return AVERROR(EPIPE);
134             if (ret == 1)
135                 ff_rtsp_skip_packet(s);
136             /* XXX: parse message */
137             if (rt->state != RTSP_STATE_STREAMING)
138                 return AVERROR(EPIPE);
139         }
140     }
141
142     if (pkt->stream_index < 0 || pkt->stream_index >= rt->nb_rtsp_streams)
143         return AVERROR_INVALIDDATA;
144     rtsp_st = rt->rtsp_streams[pkt->stream_index];
145     rtpctx = rtsp_st->transport_priv;
146
147     ret = ff_write_chained(rtpctx, 0, pkt, s);
148     /* ff_write_chained does all the RTP packetization. If using TCP as
149      * transport, rtpctx->pb is only a dyn_packet_buf that queues up the
150      * packets, so we need to send them out on the TCP connection separately.
151      */
152     if (!ret && rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP)
153         ret = tcp_write_packet(s, rtsp_st);
154     return ret;
155 }
156
157 static int rtsp_write_close(AVFormatContext *s)
158 {
159     RTSPState *rt = s->priv_data;
160
161     ff_rtsp_send_cmd_async(s, "TEARDOWN", rt->control_uri, NULL);
162
163     ff_rtsp_close_streams(s);
164     ff_rtsp_close_connections(s);
165     ff_network_close();
166     return 0;
167 }
168
169 AVOutputFormat rtsp_muxer = {
170     "rtsp",
171     NULL_IF_CONFIG_SMALL("RTSP output format"),
172     NULL,
173     NULL,
174     sizeof(RTSPState),
175     CODEC_ID_AAC,
176     CODEC_ID_MPEG4,
177     rtsp_write_header,
178     rtsp_write_packet,
179     rtsp_write_close,
180     .flags = AVFMT_NOFILE | AVFMT_GLOBALHEADER,
181 };
182