]> git.sesse.net Git - nageru/blob - mux.cpp
Set x264 global headers (Quick Sync global headers are still not there).
[nageru] / mux.cpp
1 #include <assert.h>
2
3 #include <mutex>
4 #include <string>
5 #include <vector>
6
7 #include "defs.h"
8 #include "mux.h"
9 #include "timebase.h"
10
11 using namespace std;
12
13 Mux::Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const string &video_extradata, const AVCodecContext *audio_ctx, int time_base, KeyFrameSignalReceiver *keyframe_signal_receiver)
14         : avctx(avctx), keyframe_signal_receiver(keyframe_signal_receiver)
15 {
16         AVCodec *codec_video = avcodec_find_encoder((video_codec == CODEC_H264) ? AV_CODEC_ID_H264 : AV_CODEC_ID_RAWVIDEO);
17         avstream_video = avformat_new_stream(avctx, codec_video);
18         if (avstream_video == nullptr) {
19                 fprintf(stderr, "avformat_new_stream() failed\n");
20                 exit(1);
21         }
22         avstream_video->time_base = AVRational{1, time_base};
23         avstream_video->codec->codec_type = AVMEDIA_TYPE_VIDEO;
24         if (video_codec == CODEC_H264) {
25                 avstream_video->codec->codec_id = AV_CODEC_ID_H264;
26         } else {
27                 assert(video_codec == CODEC_NV12);
28                 avstream_video->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
29                 avstream_video->codec->codec_tag = avcodec_pix_fmt_to_codec_tag(AV_PIX_FMT_NV12);
30         }
31         avstream_video->codec->width = width;
32         avstream_video->codec->height = height;
33         avstream_video->codec->time_base = AVRational{1, time_base};
34         avstream_video->codec->ticks_per_frame = 1;  // or 2?
35
36         // Colorspace details. Closely correspond to settings in EffectChain_finalize,
37         // as noted in each comment.
38         // Note that the H.264 stream also contains this information and depending on the
39         // mux, this might simply get ignored. See sps_rbsp().
40         avstream_video->codec->color_primaries = AVCOL_PRI_BT709;  // RGB colorspace (inout_format.color_space).
41         avstream_video->codec->color_trc = AVCOL_TRC_UNSPECIFIED;  // Gamma curve (inout_format.gamma_curve).
42         avstream_video->codec->colorspace = AVCOL_SPC_SMPTE170M;  // YUV colorspace (output_ycbcr_format.luma_coefficients).
43         avstream_video->codec->color_range = AVCOL_RANGE_MPEG;  // Full vs. limited range (output_ycbcr_format.full_range).
44         avstream_video->codec->chroma_sample_location = AVCHROMA_LOC_LEFT;  // Chroma sample location. See chroma_offset_0[] in Mixer::subsample_chroma().
45         avstream_video->codec->field_order = AV_FIELD_PROGRESSIVE;
46
47         if (!video_extradata.empty()) {
48                 avstream_video->codec->extradata = (uint8_t *)av_malloc(video_extradata.size());
49                 avstream_video->codec->extradata_size = video_extradata.size();
50                 memcpy(avstream_video->codec->extradata, video_extradata.data(), video_extradata.size());
51         }
52
53         avstream_audio = avformat_new_stream(avctx, nullptr);
54         if (avstream_audio == nullptr) {
55                 fprintf(stderr, "avformat_new_stream() failed\n");
56                 exit(1);
57         }
58         avstream_audio->time_base = AVRational{1, time_base};
59         avcodec_copy_context(avstream_audio->codec, audio_ctx);
60
61         AVDictionary *options = NULL;
62         vector<pair<string, string>> opts = MUX_OPTS;
63         for (pair<string, string> opt : opts) {
64                 av_dict_set(&options, opt.first.c_str(), opt.second.c_str(), 0);
65         }
66         if (avformat_write_header(avctx, &options) < 0) {
67                 fprintf(stderr, "avformat_write_header() failed\n");
68                 exit(1);
69         }
70
71         // Make sure the header is written before the constructor exits.
72         avio_flush(avctx->pb);
73 }
74
75 Mux::~Mux()
76 {
77         av_write_trailer(avctx);
78         av_free(avctx->pb->buffer);
79         av_free(avctx->pb);
80         avformat_free_context(avctx);
81 }
82
83 void Mux::add_packet(const AVPacket &pkt, int64_t pts, int64_t dts)
84 {
85         AVPacket pkt_copy;
86         if (av_copy_packet(&pkt_copy, &pkt) < 0) {
87                 fprintf(stderr, "av_copy_packet() failed\n");
88                 exit(1);
89         }
90         if (pkt.stream_index == 0) {
91                 pkt_copy.pts = av_rescale_q(pts, AVRational{1, TIMEBASE}, avstream_video->time_base);
92                 pkt_copy.dts = av_rescale_q(dts, AVRational{1, TIMEBASE}, avstream_video->time_base);
93                 pkt_copy.duration = av_rescale_q(pkt.duration, AVRational{1, TIMEBASE}, avstream_video->time_base);
94         } else if (pkt.stream_index == 1) {
95                 pkt_copy.pts = av_rescale_q(pts, AVRational{1, TIMEBASE}, avstream_audio->time_base);
96                 pkt_copy.dts = av_rescale_q(dts, AVRational{1, TIMEBASE}, avstream_audio->time_base);
97                 pkt_copy.duration = av_rescale_q(pkt.duration, AVRational{1, TIMEBASE}, avstream_audio->time_base);
98         } else {
99                 assert(false);
100         }
101
102         if (keyframe_signal_receiver) {
103                 if (pkt.flags & AV_PKT_FLAG_KEY) {
104                         av_write_frame(avctx, nullptr);
105                         keyframe_signal_receiver->signal_keyframe();
106                 }
107         }
108
109         {
110                 lock_guard<mutex> lock(ctx_mu);
111                 if (av_interleaved_write_frame(avctx, &pkt_copy) < 0) {
112                         fprintf(stderr, "av_interleaved_write_frame() failed\n");
113                         exit(1);
114                 }
115         }
116
117         av_packet_unref(&pkt_copy);
118 }