3 * Copyright (c) 2011 Martin Storsjo
5 * This file is part of Libav.
7 * Libav 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 * Libav 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 Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/mathematics.h"
24 #include "avio_internal.h"
27 AVFormatContext *mpegts_ctx;
28 AVFormatContext *rtp_ctx;
31 static int rtp_mpegts_write_close(AVFormatContext *s)
33 struct MuxChain *chain = s->priv_data;
35 if (chain->mpegts_ctx) {
36 av_write_trailer(chain->mpegts_ctx);
37 ffio_free_dyn_buf(&chain->mpegts_ctx->pb);
38 avformat_free_context(chain->mpegts_ctx);
41 av_write_trailer(chain->rtp_ctx);
42 avformat_free_context(chain->rtp_ctx);
47 static int rtp_mpegts_write_header(AVFormatContext *s)
49 struct MuxChain *chain = s->priv_data;
50 AVFormatContext *mpegts_ctx = NULL, *rtp_ctx = NULL;
51 AVOutputFormat *mpegts_format = av_guess_format("mpegts", NULL, NULL);
52 AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
53 int i, ret = AVERROR(ENOMEM);
56 if (!mpegts_format || !rtp_format)
57 return AVERROR(ENOSYS);
58 mpegts_ctx = avformat_alloc_context();
60 return AVERROR(ENOMEM);
61 mpegts_ctx->oformat = mpegts_format;
62 mpegts_ctx->max_delay = s->max_delay;
63 for (i = 0; i < s->nb_streams; i++) {
64 AVStream* st = avformat_new_stream(mpegts_ctx, NULL);
67 st->time_base = s->streams[i]->time_base;
68 st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
69 avcodec_copy_context(st->codec, s->streams[i]->codec);
71 if ((ret = avio_open_dyn_buf(&mpegts_ctx->pb)) < 0)
73 if ((ret = avformat_write_header(mpegts_ctx, NULL)) < 0)
75 for (i = 0; i < s->nb_streams; i++)
76 s->streams[i]->time_base = mpegts_ctx->streams[i]->time_base;
78 chain->mpegts_ctx = mpegts_ctx;
81 rtp_ctx = avformat_alloc_context();
83 ret = AVERROR(ENOMEM);
86 rtp_ctx->oformat = rtp_format;
87 st = avformat_new_stream(rtp_ctx, NULL);
88 st->time_base.num = 1;
89 st->time_base.den = 90000;
90 st->codec->codec_id = AV_CODEC_ID_MPEG2TS;
92 if ((ret = avformat_write_header(rtp_ctx, NULL)) < 0)
94 chain->rtp_ctx = rtp_ctx;
100 ffio_free_dyn_buf(&mpegts_ctx->pb);
101 avformat_free_context(mpegts_ctx);
104 avformat_free_context(rtp_ctx);
105 rtp_mpegts_write_close(s);
109 static int rtp_mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)
111 struct MuxChain *chain = s->priv_data;
116 if (!chain->mpegts_ctx->pb) {
117 if ((ret = avio_open_dyn_buf(&chain->mpegts_ctx->pb)) < 0)
120 if ((ret = av_write_frame(chain->mpegts_ctx, pkt)) < 0)
122 size = avio_close_dyn_buf(chain->mpegts_ctx->pb, &buf);
123 chain->mpegts_ctx->pb = NULL;
128 av_init_packet(&local_pkt);
129 local_pkt.data = buf;
130 local_pkt.size = size;
131 local_pkt.stream_index = 0;
132 if (pkt->pts != AV_NOPTS_VALUE)
133 local_pkt.pts = av_rescale_q(pkt->pts,
134 s->streams[pkt->stream_index]->time_base,
135 chain->rtp_ctx->streams[0]->time_base);
136 if (pkt->dts != AV_NOPTS_VALUE)
137 local_pkt.dts = av_rescale_q(pkt->dts,
138 s->streams[pkt->stream_index]->time_base,
139 chain->rtp_ctx->streams[0]->time_base);
140 ret = av_write_frame(chain->rtp_ctx, &local_pkt);
146 AVOutputFormat ff_rtp_mpegts_muxer = {
147 .name = "rtp_mpegts",
148 .long_name = NULL_IF_CONFIG_SMALL("RTP/mpegts output format"),
149 .priv_data_size = sizeof(struct MuxChain),
150 .audio_codec = AV_CODEC_ID_AAC,
151 .video_codec = AV_CODEC_ID_MPEG4,
152 .write_header = rtp_mpegts_write_header,
153 .write_packet = rtp_mpegts_write_packet,
154 .write_trailer = rtp_mpegts_write_close,