]> git.sesse.net Git - ffmpeg/blob - libavformat/rtpenc_chain.c
libavformat: Use avcodec_copy_context for chained muxers
[ffmpeg] / libavformat / rtpenc_chain.c
1 /*
2  * RTP muxer chaining code
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 #include "rtpenc_chain.h"
24
25 AVFormatContext *ff_rtp_chain_mux_open(AVFormatContext *s, AVStream *st,
26                                        URLContext *handle, int packet_size)
27 {
28     AVFormatContext *rtpctx;
29     int ret;
30     AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
31
32     if (!rtp_format)
33         return NULL;
34
35     /* Allocate an AVFormatContext for each output stream */
36     rtpctx = avformat_alloc_context();
37     if (!rtpctx)
38         return NULL;
39
40     rtpctx->oformat = rtp_format;
41     if (!av_new_stream(rtpctx, 0)) {
42         av_free(rtpctx);
43         return NULL;
44     }
45     /* Copy the max delay setting; the rtp muxer reads this. */
46     rtpctx->max_delay = s->max_delay;
47     /* Copy other stream parameters. */
48     rtpctx->streams[0]->sample_aspect_ratio = st->sample_aspect_ratio;
49
50     /* Set the synchronized start time. */
51     rtpctx->start_time_realtime = s->start_time_realtime;
52
53     avcodec_copy_context(rtpctx->streams[0]->codec, st->codec);
54
55     if (handle) {
56         url_fdopen(&rtpctx->pb, handle);
57     } else
58         url_open_dyn_packet_buf(&rtpctx->pb, packet_size);
59     ret = av_write_header(rtpctx);
60
61     if (ret) {
62         if (handle) {
63             url_fclose(rtpctx->pb);
64         } else {
65             uint8_t *ptr;
66             url_close_dyn_buf(rtpctx->pb, &ptr);
67             av_free(ptr);
68         }
69         av_free(rtpctx->streams[0]->codec->extradata);
70         av_free(rtpctx->streams[0]->codec);
71         av_free(rtpctx->streams[0]->info);
72         av_free(rtpctx->streams[0]);
73         av_free(rtpctx);
74         return NULL;
75     }
76
77     /* Copy the RTP AVStream timebase back to the original AVStream */
78     st->time_base = rtpctx->streams[0]->time_base;
79     return rtpctx;
80 }
81