X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=video_encoder.cpp;h=2ce5580fec3f456d33a1ed81f5fdf015b3c02ad2;hb=e5a0d3dfb676087bdcef4c82876234782e46604c;hp=61a1305c2dbd1e986a9ab78eb452d90859879925;hpb=f932301ce7f23ef4c14dd0d4f52dee662d0b4ef6;p=nageru diff --git a/video_encoder.cpp b/video_encoder.cpp index 61a1305..2ce5580 100644 --- a/video_encoder.cpp +++ b/video_encoder.cpp @@ -96,7 +96,8 @@ void VideoEncoder::do_cut(int frame) // the same time, it means pts could come out of order to the stream mux, // and we need to plug it until the shutdown is complete. stream_mux->plug(); - lock_guard lock(qs_mu); + lock(qs_mu, qs_audio_mu); + lock_guard lock1(qs_mu, adopt_lock), lock2(qs_audio_mu, adopt_lock); QuickSyncEncoder *old_encoder = quicksync_encoder.release(); // When we go C++14, we can use move capture instead. X264Encoder *old_x264_encoder = nullptr; if (global_flags.x264_video_to_disk) { @@ -136,8 +137,11 @@ void VideoEncoder::change_x264_bitrate(unsigned rate_kbit) void VideoEncoder::add_audio(int64_t pts, std::vector audio) { + // Take only qs_audio_mu, since add_audio() is thread safe + // (we can only conflict with do_cut(), which takes qs_audio_mu) + // and we don't want to contend with begin_frame(). { - lock_guard lock(qs_mu); + lock_guard lock(qs_audio_mu); quicksync_encoder->add_audio(pts, audio); } stream_audio_encoder->encode_audio(audio, pts + quicksync_encoder->global_delay()); @@ -146,7 +150,9 @@ void VideoEncoder::add_audio(int64_t pts, std::vector audio) bool VideoEncoder::is_zerocopy() const { // Explicitly do _not_ take qs_mu; this is called from the mixer, - // and qs_mu might be contended. is_zerocopy() is thread safe. + // and qs_mu might be contended. is_zerocopy() is thread safe + // and never called in parallel with do_cut() (both happen only + // from the mixer thread). return quicksync_encoder->is_zerocopy(); } @@ -187,8 +193,7 @@ void VideoEncoder::open_output_stream() video_extradata = x264_encoder->get_global_headers(); } - int time_base = global_flags.stream_coarse_timebase ? COARSE_TIMEBASE : TIMEBASE; - stream_mux.reset(new Mux(avctx, width, height, video_codec, video_extradata, stream_audio_encoder->get_codec_parameters().get(), time_base, + stream_mux.reset(new Mux(avctx, width, height, video_codec, video_extradata, stream_audio_encoder->get_codec_parameters().get(), COARSE_TIMEBASE, /*write_callback=*/nullptr, Mux::WRITE_FOREGROUND, { &stream_mux_metrics })); stream_mux_metrics.init({{ "destination", "http" }}); } @@ -213,7 +218,7 @@ int VideoEncoder::write_packet2(uint8_t *buf, int buf_size, AVIODataMarkerType t stream_mux_header.append((char *)buf, buf_size); httpd->set_header(stream_mux_header); } else { - httpd->add_data((char *)buf, buf_size, type == AVIO_DATA_MARKER_SYNC_POINT); + httpd->add_data((char *)buf, buf_size, type == AVIO_DATA_MARKER_SYNC_POINT, time, AVRational{ AV_TIME_BASE, 1 }); } return buf_size; }