annotate rtspenc.c @ 6119:16ca32d9c5f0 libavformat

Use a bitstream filter for converting the extradata syntax when generating an SDP. This allows to generate correct SDPs for H.264 video in "MP4 syntax".
author lucabe
date Fri, 11 Jun 2010 08:01:45 +0000
parents fcbafbe31721
children 7b5409abbf32
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
1 /*
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
2 * RTSP muxer
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
3 * Copyright (c) 2010 Martin Storsjo
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
4 *
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
5 * This file is part of FFmpeg.
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
6 *
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
11 *
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
15 * Lesser General Public License for more details.
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
16 *
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
20 */
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
21
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
22 #include "avformat.h"
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
23
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
24 #include <sys/time.h>
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
25 #if HAVE_SYS_SELECT_H
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
26 #include <sys/select.h>
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
27 #endif
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
28 #include "network.h"
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
29 #include "rtsp.h"
6025
fd7fc7d79630 Take ff_write_chained in use in the mov rtp hinter and in the rtsp muxer
mstorsjo
parents: 5888
diff changeset
30 #include "internal.h"
5864
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
31 #include <libavutil/intreadwrite.h>
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
32
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
33 static int rtsp_write_record(AVFormatContext *s)
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
34 {
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
35 RTSPState *rt = s->priv_data;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
36 RTSPMessageHeader reply1, *reply = &reply1;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
37 char cmd[1024];
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
38
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
39 snprintf(cmd, sizeof(cmd),
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
40 "Range: npt=%0.3f-\r\n",
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
41 (double) 0);
5888
4ddbc14bc768 Add separate method/url parameters to the rtsp_send_cmd functions
mstorsjo
parents: 5864
diff changeset
42 ff_rtsp_send_cmd(s, "RECORD", rt->control_uri, cmd, reply, NULL);
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
43 if (reply->status_code != RTSP_STATUS_OK)
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
44 return -1;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
45 rt->state = RTSP_STATE_STREAMING;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
46 return 0;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
47 }
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
48
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
49 static int rtsp_write_header(AVFormatContext *s)
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
50 {
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
51 int ret;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
52
5697
484fceabfad2 Prefix non-static RTSP functions with ff_.
rbultje
parents: 5695
diff changeset
53 ret = ff_rtsp_connect(s);
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
54 if (ret)
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
55 return ret;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
56
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
57 if (rtsp_write_record(s) < 0) {
5697
484fceabfad2 Prefix non-static RTSP functions with ff_.
rbultje
parents: 5695
diff changeset
58 ff_rtsp_close_streams(s);
6093
e688babd14df RTSP: Add a second URLContext for outgoing messages
mstorsjo
parents: 6081
diff changeset
59 ff_rtsp_close_connections(s);
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
60 return AVERROR_INVALIDDATA;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
61 }
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
62 return 0;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
63 }
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
64
5864
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
65 static int tcp_write_packet(AVFormatContext *s, RTSPStream *rtsp_st)
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
66 {
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
67 RTSPState *rt = s->priv_data;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
68 AVFormatContext *rtpctx = rtsp_st->transport_priv;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
69 uint8_t *buf, *ptr;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
70 int size;
6081
d21ccbea3294 rtspenc: Write the interleaving header in the same buffer as the packet data
mstorsjo
parents: 6026
diff changeset
71 uint8_t *interleave_header, *interleaved_packet;
5864
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
72
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
73 size = url_close_dyn_buf(rtpctx->pb, &buf);
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
74 ptr = buf;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
75 while (size > 4) {
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
76 uint32_t packet_len = AV_RB32(ptr);
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
77 int id;
6081
d21ccbea3294 rtspenc: Write the interleaving header in the same buffer as the packet data
mstorsjo
parents: 6026
diff changeset
78 /* The interleaving header is exactly 4 bytes, which happens to be
d21ccbea3294 rtspenc: Write the interleaving header in the same buffer as the packet data
mstorsjo
parents: 6026
diff changeset
79 * the same size as the packet length header from
d21ccbea3294 rtspenc: Write the interleaving header in the same buffer as the packet data
mstorsjo
parents: 6026
diff changeset
80 * url_open_dyn_packet_buf. So by writing the interleaving header
d21ccbea3294 rtspenc: Write the interleaving header in the same buffer as the packet data
mstorsjo
parents: 6026
diff changeset
81 * over these bytes, we get a consecutive interleaved packet
d21ccbea3294 rtspenc: Write the interleaving header in the same buffer as the packet data
mstorsjo
parents: 6026
diff changeset
82 * that can be written in one call. */
d21ccbea3294 rtspenc: Write the interleaving header in the same buffer as the packet data
mstorsjo
parents: 6026
diff changeset
83 interleaved_packet = interleave_header = ptr;
5864
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
84 ptr += 4;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
85 size -= 4;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
86 if (packet_len > size || packet_len < 2)
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
87 break;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
88 if (ptr[1] >= 200 && ptr[1] <= 204)
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
89 id = rtsp_st->interleaved_max; /* RTCP */
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
90 else
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
91 id = rtsp_st->interleaved_min; /* RTP */
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
92 interleave_header[0] = '$';
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
93 interleave_header[1] = id;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
94 AV_WB16(interleave_header + 2, packet_len);
6111
fcbafbe31721 Make the RTSP muxer use rtsp_hd_out, for consistency
mstorsjo
parents: 6094
diff changeset
95 url_write(rt->rtsp_hd_out, interleaved_packet, 4 + packet_len);
5864
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
96 ptr += packet_len;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
97 size -= packet_len;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
98 }
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
99 av_free(buf);
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
100 url_open_dyn_packet_buf(&rtpctx->pb, RTSP_TCP_MAX_PACKET_SIZE);
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
101 return 0;
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
102 }
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
103
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
104 static int rtsp_write_packet(AVFormatContext *s, AVPacket *pkt)
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
105 {
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
106 RTSPState *rt = s->priv_data;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
107 RTSPStream *rtsp_st;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
108 fd_set rfds;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
109 int n, tcp_fd;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
110 struct timeval tv;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
111 AVFormatContext *rtpctx;
5846
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
112 int ret;
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
113
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
114 tcp_fd = url_get_file_handle(rt->rtsp_hd);
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
115
5846
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
116 while (1) {
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
117 FD_ZERO(&rfds);
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
118 FD_SET(tcp_fd, &rfds);
5847
d04ce2be0081 Reindent
mstorsjo
parents: 5846
diff changeset
119 tv.tv_sec = 0;
d04ce2be0081 Reindent
mstorsjo
parents: 5846
diff changeset
120 tv.tv_usec = 0;
d04ce2be0081 Reindent
mstorsjo
parents: 5846
diff changeset
121 n = select(tcp_fd + 1, &rfds, NULL, NULL, &tv);
5846
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
122 if (n <= 0)
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
123 break;
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
124 if (FD_ISSET(tcp_fd, &rfds)) {
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
125 RTSPMessageHeader reply;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
126
5846
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
127 /* Don't let ff_rtsp_read_reply handle interleaved packets,
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
128 * since it would block and wait for an RTSP reply on the socket
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
129 * (which may not be coming any time soon) if it handles
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
130 * interleaved packets internally. */
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
131 ret = ff_rtsp_read_reply(s, &reply, NULL, 1);
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
132 if (ret < 0)
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
133 return AVERROR(EPIPE);
5846
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
134 if (ret == 1)
6821f3887d0e Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in rtsp_write_packet.
mstorsjo
parents: 5800
diff changeset
135 ff_rtsp_skip_packet(s);
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
136 /* XXX: parse message */
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
137 if (rt->state != RTSP_STATE_STREAMING)
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
138 return AVERROR(EPIPE);
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
139 }
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
140 }
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
141
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
142 if (pkt->stream_index < 0 || pkt->stream_index >= rt->nb_rtsp_streams)
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
143 return AVERROR_INVALIDDATA;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
144 rtsp_st = rt->rtsp_streams[pkt->stream_index];
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
145 rtpctx = rtsp_st->transport_priv;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
146
6025
fd7fc7d79630 Take ff_write_chained in use in the mov rtp hinter and in the rtsp muxer
mstorsjo
parents: 5888
diff changeset
147 ret = ff_write_chained(rtpctx, 0, pkt, s);
fd7fc7d79630 Take ff_write_chained in use in the mov rtp hinter and in the rtsp muxer
mstorsjo
parents: 5888
diff changeset
148 /* ff_write_chained does all the RTP packetization. If using TCP as
5864
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
149 * transport, rtpctx->pb is only a dyn_packet_buf that queues up the
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
150 * packets, so we need to send them out on the TCP connection separately.
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
151 */
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
152 if (!ret && rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP)
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
153 ret = tcp_write_packet(s, rtsp_st);
0ff0826b6c3d Add support for TCP as lower transport in the RTSP muxer
mstorsjo
parents: 5847
diff changeset
154 return ret;
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
155 }
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
156
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
157 static int rtsp_write_close(AVFormatContext *s)
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
158 {
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
159 RTSPState *rt = s->priv_data;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
160
5888
4ddbc14bc768 Add separate method/url parameters to the rtsp_send_cmd functions
mstorsjo
parents: 5864
diff changeset
161 ff_rtsp_send_cmd_async(s, "TEARDOWN", rt->control_uri, NULL);
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
162
5697
484fceabfad2 Prefix non-static RTSP functions with ff_.
rbultje
parents: 5695
diff changeset
163 ff_rtsp_close_streams(s);
6093
e688babd14df RTSP: Add a second URLContext for outgoing messages
mstorsjo
parents: 6081
diff changeset
164 ff_rtsp_close_connections(s);
5756
7c7fe75728dd Use ff_url_join for assembling URLs, instead of snprintf
mstorsjo
parents: 5721
diff changeset
165 ff_network_close();
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
166 return 0;
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
167 }
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
168
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
169 AVOutputFormat rtsp_muxer = {
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
170 "rtsp",
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
171 NULL_IF_CONFIG_SMALL("RTSP output format"),
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
172 NULL,
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
173 NULL,
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
174 sizeof(RTSPState),
6026
785444452e93 Change the default codecs for the rtsp muxer to mpeg4 and aac
mstorsjo
parents: 6025
diff changeset
175 CODEC_ID_AAC,
785444452e93 Change the default codecs for the rtsp muxer to mpeg4 and aac
mstorsjo
parents: 6025
diff changeset
176 CODEC_ID_MPEG4,
5695
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
177 rtsp_write_header,
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
178 rtsp_write_packet,
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
179 rtsp_write_close,
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
180 .flags = AVFMT_NOFILE | AVFMT_GLOBALHEADER,
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
181 };
25062326d2f9 Add an RTSP muxer
mstorsjo
parents:
diff changeset
182