]> git.sesse.net Git - nageru/blob - mux.cpp
Fix a file descriptor leak.
[nageru] / mux.cpp
1 #include <assert.h>
2
3 #include <algorithm>
4 #include <mutex>
5 #include <string>
6 #include <vector>
7
8 #include "defs.h"
9 #include "mux.h"
10 #include "timebase.h"
11
12 using namespace std;
13
14 struct PacketBefore {
15         PacketBefore(const AVFormatContext *ctx) : ctx(ctx) {}
16
17         bool operator() (const AVPacket *a, const AVPacket *b) const {
18                 int64_t a_dts = (a->dts == AV_NOPTS_VALUE ? a->pts : a->dts);
19                 int64_t b_dts = (b->dts == AV_NOPTS_VALUE ? b->pts : b->dts);
20                 AVRational a_timebase = ctx->streams[a->stream_index]->time_base;
21                 AVRational b_timebase = ctx->streams[b->stream_index]->time_base;
22                 if (av_compare_ts(a_dts, a_timebase, b_dts, b_timebase) != 0) {
23                         return av_compare_ts(a_dts, a_timebase, b_dts, b_timebase) < 0;
24                 } else {
25                         return av_compare_ts(a->pts, a_timebase, b->pts, b_timebase) < 0;
26                 }
27         }
28
29         const AVFormatContext * const ctx;
30 };
31
32 Mux::Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const string &video_extradata, const AVCodecParameters *audio_codecpar, int time_base)
33         : avctx(avctx)
34 {
35         avstream_video = avformat_new_stream(avctx, nullptr);
36         if (avstream_video == nullptr) {
37                 fprintf(stderr, "avformat_new_stream() failed\n");
38                 exit(1);
39         }
40         avstream_video->time_base = AVRational{1, time_base};
41         avstream_video->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
42         if (video_codec == CODEC_H264) {
43                 avstream_video->codecpar->codec_id = AV_CODEC_ID_H264;
44         } else {
45                 assert(video_codec == CODEC_NV12);
46                 avstream_video->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
47                 avstream_video->codecpar->codec_tag = avcodec_pix_fmt_to_codec_tag(AV_PIX_FMT_NV12);
48         }
49         avstream_video->codecpar->width = width;
50         avstream_video->codecpar->height = height;
51
52         // Colorspace details. Closely correspond to settings in EffectChain_finalize,
53         // as noted in each comment.
54         // Note that the H.264 stream also contains this information and depending on the
55         // mux, this might simply get ignored. See sps_rbsp().
56         avstream_video->codecpar->color_primaries = AVCOL_PRI_BT709;  // RGB colorspace (inout_format.color_space).
57         avstream_video->codecpar->color_trc = AVCOL_TRC_UNSPECIFIED;  // Gamma curve (inout_format.gamma_curve).
58         avstream_video->codecpar->color_space = AVCOL_SPC_SMPTE170M;  // YUV colorspace (output_ycbcr_format.luma_coefficients).
59         avstream_video->codecpar->color_range = AVCOL_RANGE_MPEG;  // Full vs. limited range (output_ycbcr_format.full_range).
60         avstream_video->codecpar->chroma_location = AVCHROMA_LOC_LEFT;  // Chroma sample location. See chroma_offset_0[] in Mixer::subsample_chroma().
61         avstream_video->codecpar->field_order = AV_FIELD_PROGRESSIVE;
62
63         if (!video_extradata.empty()) {
64                 avstream_video->codecpar->extradata = (uint8_t *)av_malloc(video_extradata.size());
65                 avstream_video->codecpar->extradata_size = video_extradata.size();
66                 memcpy(avstream_video->codecpar->extradata, video_extradata.data(), video_extradata.size());
67         }
68
69         avstream_audio = avformat_new_stream(avctx, nullptr);
70         if (avstream_audio == nullptr) {
71                 fprintf(stderr, "avformat_new_stream() failed\n");
72                 exit(1);
73         }
74         avstream_audio->time_base = AVRational{1, time_base};
75         if (avcodec_parameters_copy(avstream_audio->codecpar, audio_codecpar) < 0) {
76                 fprintf(stderr, "avcodec_parameters_copy() failed\n");
77                 exit(1);
78         }
79
80         AVDictionary *options = NULL;
81         vector<pair<string, string>> opts = MUX_OPTS;
82         for (pair<string, string> opt : opts) {
83                 av_dict_set(&options, opt.first.c_str(), opt.second.c_str(), 0);
84         }
85         if (avformat_write_header(avctx, &options) < 0) {
86                 fprintf(stderr, "avformat_write_header() failed\n");
87                 exit(1);
88         }
89
90         // Make sure the header is written before the constructor exits.
91         avio_flush(avctx->pb);
92 }
93
94 Mux::~Mux()
95 {
96         av_write_trailer(avctx);
97         avio_closep(&avctx->pb);
98         avformat_free_context(avctx);
99 }
100
101 void Mux::add_packet(const AVPacket &pkt, int64_t pts, int64_t dts)
102 {
103         AVPacket pkt_copy;
104         if (av_copy_packet(&pkt_copy, &pkt) < 0) {
105                 fprintf(stderr, "av_copy_packet() failed\n");
106                 exit(1);
107         }
108         if (pkt.stream_index == 0) {
109                 pkt_copy.pts = av_rescale_q(pts, AVRational{1, TIMEBASE}, avstream_video->time_base);
110                 pkt_copy.dts = av_rescale_q(dts, AVRational{1, TIMEBASE}, avstream_video->time_base);
111                 pkt_copy.duration = av_rescale_q(pkt.duration, AVRational{1, TIMEBASE}, avstream_video->time_base);
112         } else if (pkt.stream_index == 1) {
113                 pkt_copy.pts = av_rescale_q(pts, AVRational{1, TIMEBASE}, avstream_audio->time_base);
114                 pkt_copy.dts = av_rescale_q(dts, AVRational{1, TIMEBASE}, avstream_audio->time_base);
115                 pkt_copy.duration = av_rescale_q(pkt.duration, AVRational{1, TIMEBASE}, avstream_audio->time_base);
116         } else {
117                 assert(false);
118         }
119
120         {
121                 lock_guard<mutex> lock(mu);
122                 if (plug_count > 0) {
123                         plugged_packets.push_back(av_packet_clone(&pkt_copy));
124                 } else {
125                         write_packet_or_die(pkt_copy);
126                 }
127         }
128
129         av_packet_unref(&pkt_copy);
130 }
131
132 void Mux::write_packet_or_die(const AVPacket &pkt)
133 {
134         if (av_interleaved_write_frame(avctx, const_cast<AVPacket *>(&pkt)) < 0) {
135                 fprintf(stderr, "av_interleaved_write_frame() failed\n");
136                 exit(1);
137         }
138         avio_flush(avctx->pb);
139 }
140
141 void Mux::plug()
142 {
143         lock_guard<mutex> lock(mu);
144         ++plug_count;
145 }
146
147 void Mux::unplug()
148 {
149         lock_guard<mutex> lock(mu);
150         if (--plug_count > 0) {
151                 return;
152         }
153         assert(plug_count >= 0);
154
155         sort(plugged_packets.begin(), plugged_packets.end(), PacketBefore(avctx));
156
157         for (AVPacket *pkt : plugged_packets) {
158                 write_packet_or_die(*pkt);
159                 av_packet_free(&pkt);
160         }
161         plugged_packets.clear();
162 }