]> git.sesse.net Git - ffmpeg/blob - libavformat/rtpenc_mpegts.c
avformat/rtpenc_mpegts: convey options for mpeg-ts muxer
[ffmpeg] / libavformat / rtpenc_mpegts.c
1 /*
2  * RTP/mpegts muxer
3  * Copyright (c) 2011 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 "libavutil/mathematics.h"
23 #include "libavutil/opt.h"
24 #include "avformat.h"
25 #include "avio_internal.h"
26
27 typedef struct MuxChain {
28     AVFormatContext *mpegts_ctx;
29     AVFormatContext *rtp_ctx;
30     AVPacket *pkt;
31     AVDictionary* mpegts_muxer_options;
32 } MuxChain;
33
34 static int rtp_mpegts_write_close(AVFormatContext *s)
35 {
36     MuxChain *chain = s->priv_data;
37
38     if (chain->mpegts_ctx) {
39         av_write_trailer(chain->mpegts_ctx);
40         ffio_free_dyn_buf(&chain->mpegts_ctx->pb);
41         avformat_free_context(chain->mpegts_ctx);
42     }
43     if (chain->rtp_ctx) {
44         av_write_trailer(chain->rtp_ctx);
45         avformat_free_context(chain->rtp_ctx);
46     }
47
48     av_packet_free(&chain->pkt);
49
50     return 0;
51 }
52
53 static int rtp_mpegts_write_header(AVFormatContext *s)
54 {
55     MuxChain *chain = s->priv_data;
56     AVFormatContext *mpegts_ctx = NULL, *rtp_ctx = NULL;
57     ff_const59 AVOutputFormat *mpegts_format = av_guess_format("mpegts", NULL, NULL);
58     ff_const59 AVOutputFormat *rtp_format    = av_guess_format("rtp", NULL, NULL);
59     int i, ret = AVERROR(ENOMEM);
60     AVStream *st;
61     AVDictionary *mpegts_muxer_options = NULL;
62
63     if (!mpegts_format || !rtp_format)
64         return AVERROR(ENOSYS);
65     mpegts_ctx = avformat_alloc_context();
66     if (!mpegts_ctx)
67         return AVERROR(ENOMEM);
68     chain->pkt = av_packet_alloc();
69     if (!chain->pkt)
70         goto fail;
71     mpegts_ctx->oformat   = mpegts_format;
72     mpegts_ctx->max_delay = s->max_delay;
73     av_dict_copy(&mpegts_ctx->metadata, s->metadata, 0);
74     for (i = 0; i < s->nb_streams; i++) {
75         AVStream* st = avformat_new_stream(mpegts_ctx, NULL);
76         if (!st)
77             goto fail;
78         st->time_base           = s->streams[i]->time_base;
79         st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
80         avcodec_parameters_copy(st->codecpar, s->streams[i]->codecpar);
81     }
82     if ((ret = avio_open_dyn_buf(&mpegts_ctx->pb)) < 0)
83         goto fail;
84
85     av_dict_copy(&mpegts_muxer_options, chain->mpegts_muxer_options, 0);
86
87     if ((ret = avformat_write_header(mpegts_ctx, &mpegts_muxer_options)) < 0)
88         goto fail;
89     for (i = 0; i < s->nb_streams; i++)
90         s->streams[i]->time_base = mpegts_ctx->streams[i]->time_base;
91
92     chain->mpegts_ctx = mpegts_ctx;
93     mpegts_ctx = NULL;
94
95     rtp_ctx = avformat_alloc_context();
96     if (!rtp_ctx) {
97         ret = AVERROR(ENOMEM);
98         goto fail;
99     }
100     rtp_ctx->oformat = rtp_format;
101     st = avformat_new_stream(rtp_ctx, NULL);
102     if (!st) {
103         ret = AVERROR(ENOMEM);
104         goto fail;
105     }
106     st->time_base.num   = 1;
107     st->time_base.den   = 90000;
108     st->codecpar->codec_id = AV_CODEC_ID_MPEG2TS;
109     rtp_ctx->pb = s->pb;
110     if ((ret = avformat_write_header(rtp_ctx, NULL)) < 0)
111         goto fail;
112     chain->rtp_ctx = rtp_ctx;
113
114     return 0;
115
116 fail:
117     if (mpegts_ctx) {
118         ffio_free_dyn_buf(&mpegts_ctx->pb);
119         av_dict_free(&mpegts_ctx->metadata);
120         av_dict_free(&mpegts_muxer_options);
121         avformat_free_context(mpegts_ctx);
122     }
123     avformat_free_context(rtp_ctx);
124     rtp_mpegts_write_close(s);
125     return ret;
126 }
127
128 static int rtp_mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)
129 {
130     MuxChain *chain = s->priv_data;
131     int ret = 0, size;
132     uint8_t *buf;
133     AVPacket *local_pkt = chain->pkt;
134
135     if (!chain->mpegts_ctx->pb) {
136         if ((ret = avio_open_dyn_buf(&chain->mpegts_ctx->pb)) < 0)
137             return ret;
138     }
139     if ((ret = av_write_frame(chain->mpegts_ctx, pkt)) < 0)
140         return ret;
141     size = avio_close_dyn_buf(chain->mpegts_ctx->pb, &buf);
142     chain->mpegts_ctx->pb = NULL;
143     if (size == 0) {
144         av_free(buf);
145         return 0;
146     }
147     av_packet_unref(local_pkt);
148     local_pkt->data         = buf;
149     local_pkt->size         = size;
150     local_pkt->stream_index = 0;
151     if (pkt->pts != AV_NOPTS_VALUE)
152         local_pkt->pts = av_rescale_q(pkt->pts,
153                                      s->streams[pkt->stream_index]->time_base,
154                                      chain->rtp_ctx->streams[0]->time_base);
155     if (pkt->dts != AV_NOPTS_VALUE)
156         local_pkt->dts = av_rescale_q(pkt->dts,
157                                      s->streams[pkt->stream_index]->time_base,
158                                      chain->rtp_ctx->streams[0]->time_base);
159     ret = av_write_frame(chain->rtp_ctx, local_pkt);
160     av_free(buf);
161
162     return ret;
163 }
164
165 #define OFFSET(x) offsetof(MuxChain, x)
166 #define E AV_OPT_FLAG_ENCODING_PARAM
167 static const AVOption options[] = {
168     { "mpegts_muxer_options", "set list of options for the MPEG-TS muxer", OFFSET(mpegts_muxer_options), AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, E },
169     { NULL },
170 };
171
172 static const AVClass rtp_mpegts_class = {
173     .class_name = "rtp_mpegts muxer",
174     .item_name  = av_default_item_name,
175     .option     = options,
176     .version    = LIBAVUTIL_VERSION_INT,
177 };
178
179 AVOutputFormat ff_rtp_mpegts_muxer = {
180     .name              = "rtp_mpegts",
181     .long_name         = NULL_IF_CONFIG_SMALL("RTP/mpegts output format"),
182     .priv_data_size    = sizeof(MuxChain),
183     .audio_codec       = AV_CODEC_ID_AAC,
184     .video_codec       = AV_CODEC_ID_MPEG4,
185     .write_header      = rtp_mpegts_write_header,
186     .write_packet      = rtp_mpegts_write_packet,
187     .write_trailer     = rtp_mpegts_write_close,
188     .priv_class        = &rtp_mpegts_class,
189 };