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)
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");
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;
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);
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?
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;
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());
53 avstream_audio = avformat_new_stream(avctx, nullptr);
54 if (avstream_audio == nullptr) {
55 fprintf(stderr, "avformat_new_stream() failed\n");
58 avstream_audio->time_base = AVRational{1, time_base};
59 avcodec_copy_context(avstream_audio->codec, audio_ctx);
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);
66 if (avformat_write_header(avctx, &options) < 0) {
67 fprintf(stderr, "avformat_write_header() failed\n");
71 // Make sure the header is written before the constructor exits.
72 avio_flush(avctx->pb);
77 av_write_trailer(avctx);
78 av_free(avctx->pb->buffer);
80 avformat_free_context(avctx);
83 void Mux::add_packet(const AVPacket &pkt, int64_t pts, int64_t dts)
86 if (av_copy_packet(&pkt_copy, &pkt) < 0) {
87 fprintf(stderr, "av_copy_packet() failed\n");
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);
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();
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");
117 av_packet_unref(&pkt_copy);