2010-02-22 21:28:19 +00:00
|
|
|
/*
|
|
|
|
* RTSP muxer
|
|
|
|
* Copyright (c) 2010 Martin Storsjo
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avformat.h"
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
2011-01-28 02:12:21 +00:00
|
|
|
#if HAVE_POLL_H
|
|
|
|
#include <poll.h>
|
2010-02-22 21:28:19 +00:00
|
|
|
#endif
|
|
|
|
#include "network.h"
|
2011-01-28 20:01:52 +00:00
|
|
|
#include "os_support.h"
|
2010-02-22 21:28:19 +00:00
|
|
|
#include "rtsp.h"
|
2010-05-21 07:08:29 +00:00
|
|
|
#include "internal.h"
|
2011-03-17 07:19:54 +00:00
|
|
|
#include "avio_internal.h"
|
2010-07-18 20:30:33 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2010-10-29 08:41:49 +00:00
|
|
|
#include "libavutil/avstring.h"
|
2011-03-31 14:48:01 +00:00
|
|
|
#include "url.h"
|
2011-05-21 12:03:35 +00:00
|
|
|
#include "libavutil/opt.h"
|
2011-05-21 12:03:48 +00:00
|
|
|
#include "rtpenc.h"
|
2010-10-29 08:41:49 +00:00
|
|
|
|
|
|
|
#define SDP_MAX_SIZE 16384
|
|
|
|
|
2011-05-21 12:03:35 +00:00
|
|
|
static const AVOption options[] = {
|
2011-05-21 12:03:48 +00:00
|
|
|
FF_RTP_FLAG_OPTS(RTSPState, rtp_muxer_flags),
|
2011-05-21 12:03:35 +00:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass rtsp_muxer_class = {
|
|
|
|
.class_name = "RTSP muxer",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
2010-10-29 08:41:49 +00:00
|
|
|
int ff_rtsp_setup_output_streams(AVFormatContext *s, const char *addr)
|
|
|
|
{
|
|
|
|
RTSPState *rt = s->priv_data;
|
|
|
|
RTSPMessageHeader reply1, *reply = &reply1;
|
|
|
|
int i;
|
|
|
|
char *sdp;
|
|
|
|
AVFormatContext sdp_ctx, *ctx_array[1];
|
|
|
|
|
|
|
|
s->start_time_realtime = av_gettime();
|
|
|
|
|
|
|
|
/* Announce the stream */
|
|
|
|
sdp = av_mallocz(SDP_MAX_SIZE);
|
|
|
|
if (sdp == NULL)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
/* We create the SDP based on the RTSP AVFormatContext where we
|
|
|
|
* aren't allowed to change the filename field. (We create the SDP
|
|
|
|
* based on the RTSP context since the contexts for the RTP streams
|
|
|
|
* don't exist yet.) In order to specify a custom URL with the actual
|
|
|
|
* peer IP instead of the originally specified hostname, we create
|
|
|
|
* a temporary copy of the AVFormatContext, where the custom URL is set.
|
|
|
|
*
|
|
|
|
* FIXME: Create the SDP without copying the AVFormatContext.
|
|
|
|
* This either requires setting up the RTP stream AVFormatContexts
|
|
|
|
* already here (complicating things immensely) or getting a more
|
|
|
|
* flexible SDP creation interface.
|
|
|
|
*/
|
|
|
|
sdp_ctx = *s;
|
|
|
|
ff_url_join(sdp_ctx.filename, sizeof(sdp_ctx.filename),
|
|
|
|
"rtsp", NULL, addr, -1, NULL);
|
|
|
|
ctx_array[0] = &sdp_ctx;
|
2011-04-08 09:36:12 +00:00
|
|
|
if (av_sdp_create(ctx_array, 1, sdp, SDP_MAX_SIZE)) {
|
2010-10-29 08:41:49 +00:00
|
|
|
av_free(sdp);
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", sdp);
|
|
|
|
ff_rtsp_send_cmd_with_content(s, "ANNOUNCE", rt->control_uri,
|
|
|
|
"Content-Type: application/sdp\r\n",
|
|
|
|
reply, NULL, sdp, strlen(sdp));
|
|
|
|
av_free(sdp);
|
|
|
|
if (reply->status_code != RTSP_STATUS_OK)
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
|
|
|
|
/* Set up the RTSPStreams for each AVStream */
|
|
|
|
for (i = 0; i < s->nb_streams; i++) {
|
|
|
|
RTSPStream *rtsp_st;
|
|
|
|
|
|
|
|
rtsp_st = av_mallocz(sizeof(RTSPStream));
|
|
|
|
if (!rtsp_st)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
|
|
|
|
|
|
|
|
rtsp_st->stream_index = i;
|
|
|
|
|
|
|
|
av_strlcpy(rtsp_st->control_url, rt->control_uri, sizeof(rtsp_st->control_url));
|
|
|
|
/* Note, this must match the relative uri set in the sdp content */
|
|
|
|
av_strlcatf(rtsp_st->control_url, sizeof(rtsp_st->control_url),
|
|
|
|
"/streamid=%d", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2010-02-22 21:28:19 +00:00
|
|
|
|
|
|
|
static int rtsp_write_record(AVFormatContext *s)
|
|
|
|
{
|
|
|
|
RTSPState *rt = s->priv_data;
|
|
|
|
RTSPMessageHeader reply1, *reply = &reply1;
|
|
|
|
char cmd[1024];
|
|
|
|
|
|
|
|
snprintf(cmd, sizeof(cmd),
|
2011-03-23 08:26:22 +00:00
|
|
|
"Range: npt=0.000-\r\n");
|
2010-03-25 21:46:14 +00:00
|
|
|
ff_rtsp_send_cmd(s, "RECORD", rt->control_uri, cmd, reply, NULL);
|
2010-02-22 21:28:19 +00:00
|
|
|
if (reply->status_code != RTSP_STATUS_OK)
|
|
|
|
return -1;
|
|
|
|
rt->state = RTSP_STATE_STREAMING;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtsp_write_header(AVFormatContext *s)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2010-02-23 00:35:50 +00:00
|
|
|
ret = ff_rtsp_connect(s);
|
2010-02-22 21:28:19 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (rtsp_write_record(s) < 0) {
|
2010-02-23 00:35:50 +00:00
|
|
|
ff_rtsp_close_streams(s);
|
2010-06-05 19:41:43 +00:00
|
|
|
ff_rtsp_close_connections(s);
|
2010-02-22 21:28:19 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-22 15:07:05 +00:00
|
|
|
static int tcp_write_packet(AVFormatContext *s, RTSPStream *rtsp_st)
|
|
|
|
{
|
|
|
|
RTSPState *rt = s->priv_data;
|
|
|
|
AVFormatContext *rtpctx = rtsp_st->transport_priv;
|
|
|
|
uint8_t *buf, *ptr;
|
|
|
|
int size;
|
2010-06-04 06:42:39 +00:00
|
|
|
uint8_t *interleave_header, *interleaved_packet;
|
2010-03-22 15:07:05 +00:00
|
|
|
|
2011-03-17 07:16:07 +00:00
|
|
|
size = avio_close_dyn_buf(rtpctx->pb, &buf);
|
2010-03-22 15:07:05 +00:00
|
|
|
ptr = buf;
|
|
|
|
while (size > 4) {
|
|
|
|
uint32_t packet_len = AV_RB32(ptr);
|
|
|
|
int id;
|
2010-06-04 06:42:39 +00:00
|
|
|
/* The interleaving header is exactly 4 bytes, which happens to be
|
|
|
|
* the same size as the packet length header from
|
2011-03-17 07:19:54 +00:00
|
|
|
* ffio_open_dyn_packet_buf. So by writing the interleaving header
|
2010-06-04 06:42:39 +00:00
|
|
|
* over these bytes, we get a consecutive interleaved packet
|
|
|
|
* that can be written in one call. */
|
|
|
|
interleaved_packet = interleave_header = ptr;
|
2010-03-22 15:07:05 +00:00
|
|
|
ptr += 4;
|
|
|
|
size -= 4;
|
|
|
|
if (packet_len > size || packet_len < 2)
|
|
|
|
break;
|
2010-08-25 09:15:31 +00:00
|
|
|
if (ptr[1] >= RTCP_SR && ptr[1] <= RTCP_APP)
|
2010-03-22 15:07:05 +00:00
|
|
|
id = rtsp_st->interleaved_max; /* RTCP */
|
|
|
|
else
|
|
|
|
id = rtsp_st->interleaved_min; /* RTP */
|
|
|
|
interleave_header[0] = '$';
|
|
|
|
interleave_header[1] = id;
|
|
|
|
AV_WB16(interleave_header + 2, packet_len);
|
2011-03-31 14:48:01 +00:00
|
|
|
ffurl_write(rt->rtsp_hd_out, interleaved_packet, 4 + packet_len);
|
2010-03-22 15:07:05 +00:00
|
|
|
ptr += packet_len;
|
|
|
|
size -= packet_len;
|
|
|
|
}
|
|
|
|
av_free(buf);
|
2011-03-17 07:19:54 +00:00
|
|
|
ffio_open_dyn_packet_buf(&rtpctx->pb, RTSP_TCP_MAX_PACKET_SIZE);
|
2010-03-22 15:07:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-02-22 21:28:19 +00:00
|
|
|
static int rtsp_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
|
|
|
RTSPState *rt = s->priv_data;
|
|
|
|
RTSPStream *rtsp_st;
|
2011-01-28 02:12:21 +00:00
|
|
|
int n;
|
2011-03-31 15:51:24 +00:00
|
|
|
struct pollfd p = {ffurl_get_file_handle(rt->rtsp_hd), POLLIN, 0};
|
2010-02-22 21:28:19 +00:00
|
|
|
AVFormatContext *rtpctx;
|
2010-03-15 16:36:20 +00:00
|
|
|
int ret;
|
2010-02-22 21:28:19 +00:00
|
|
|
|
2010-03-15 16:36:20 +00:00
|
|
|
while (1) {
|
2011-01-28 02:12:21 +00:00
|
|
|
n = poll(&p, 1, 0);
|
2010-03-15 16:36:20 +00:00
|
|
|
if (n <= 0)
|
|
|
|
break;
|
2011-01-28 02:12:21 +00:00
|
|
|
if (p.revents & POLLIN) {
|
2010-02-22 21:28:19 +00:00
|
|
|
RTSPMessageHeader reply;
|
|
|
|
|
2010-03-15 16:36:20 +00:00
|
|
|
/* Don't let ff_rtsp_read_reply handle interleaved packets,
|
|
|
|
* since it would block and wait for an RTSP reply on the socket
|
|
|
|
* (which may not be coming any time soon) if it handles
|
|
|
|
* interleaved packets internally. */
|
2011-01-02 10:06:21 +00:00
|
|
|
ret = ff_rtsp_read_reply(s, &reply, NULL, 1, NULL);
|
2010-03-15 16:36:20 +00:00
|
|
|
if (ret < 0)
|
2010-02-22 21:28:19 +00:00
|
|
|
return AVERROR(EPIPE);
|
2010-03-15 16:36:20 +00:00
|
|
|
if (ret == 1)
|
|
|
|
ff_rtsp_skip_packet(s);
|
2010-02-22 21:28:19 +00:00
|
|
|
/* XXX: parse message */
|
|
|
|
if (rt->state != RTSP_STATE_STREAMING)
|
|
|
|
return AVERROR(EPIPE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pkt->stream_index < 0 || pkt->stream_index >= rt->nb_rtsp_streams)
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
rtsp_st = rt->rtsp_streams[pkt->stream_index];
|
|
|
|
rtpctx = rtsp_st->transport_priv;
|
|
|
|
|
2010-05-21 07:08:29 +00:00
|
|
|
ret = ff_write_chained(rtpctx, 0, pkt, s);
|
|
|
|
/* ff_write_chained does all the RTP packetization. If using TCP as
|
2010-03-22 15:07:05 +00:00
|
|
|
* transport, rtpctx->pb is only a dyn_packet_buf that queues up the
|
|
|
|
* packets, so we need to send them out on the TCP connection separately.
|
|
|
|
*/
|
|
|
|
if (!ret && rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP)
|
|
|
|
ret = tcp_write_packet(s, rtsp_st);
|
|
|
|
return ret;
|
2010-02-22 21:28:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int rtsp_write_close(AVFormatContext *s)
|
|
|
|
{
|
|
|
|
RTSPState *rt = s->priv_data;
|
|
|
|
|
2010-03-25 21:46:14 +00:00
|
|
|
ff_rtsp_send_cmd_async(s, "TEARDOWN", rt->control_uri, NULL);
|
2010-02-22 21:28:19 +00:00
|
|
|
|
2010-02-23 00:35:50 +00:00
|
|
|
ff_rtsp_close_streams(s);
|
2010-06-05 19:41:43 +00:00
|
|
|
ff_rtsp_close_connections(s);
|
2010-03-05 22:35:21 +00:00
|
|
|
ff_network_close();
|
2010-02-22 21:28:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 22:03:28 +00:00
|
|
|
AVOutputFormat ff_rtsp_muxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "rtsp",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("RTSP output format"),
|
|
|
|
.priv_data_size = sizeof(RTSPState),
|
|
|
|
.audio_codec = CODEC_ID_AAC,
|
|
|
|
.video_codec = CODEC_ID_MPEG4,
|
|
|
|
.write_header = rtsp_write_header,
|
|
|
|
.write_packet = rtsp_write_packet,
|
|
|
|
.write_trailer = rtsp_write_close,
|
2010-02-22 21:28:19 +00:00
|
|
|
.flags = AVFMT_NOFILE | AVFMT_GLOBALHEADER,
|
2011-05-21 12:03:35 +00:00
|
|
|
.priv_class = &rtsp_muxer_class,
|
2010-02-22 21:28:19 +00:00
|
|
|
};
|
|
|
|
|