X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=video_encoder.cpp;h=029652a6f576720f17f4ccfaec02d8503e4fc312;hb=554cbc9a8338658bea0c230c84c7ddcd0ebe6678;hp=b7e36bd7620de732364b839125175c093e4da447;hpb=bd5b2de9a277b87c75d71d94bd8c5095ab14ecf7;p=nageru diff --git a/video_encoder.cpp b/video_encoder.cpp index b7e36bd..029652a 100644 --- a/video_encoder.cpp +++ b/video_encoder.cpp @@ -40,7 +40,8 @@ string generate_local_dump_filename(int frame) // Use the frame number to disambiguate between two cuts starting // on the same second. char filename[256]; - snprintf(filename, sizeof(filename), "%s%s-f%02d%s", + snprintf(filename, sizeof(filename), "%s/%s%s-f%02d%s", + global_flags.recording_dir.c_str(), LOCAL_DUMP_PREFIX, timestamp, frame % 100, LOCAL_DUMP_SUFFIX); return filename; } @@ -140,6 +141,12 @@ void VideoEncoder::add_audio(int64_t pts, std::vector audio) stream_audio_encoder->encode_audio(audio, pts + quicksync_encoder->global_delay()); } +bool VideoEncoder::is_zerocopy() const +{ + lock_guard lock(qs_mu); + return quicksync_encoder->is_zerocopy(); +} + bool VideoEncoder::begin_frame(int64_t pts, int64_t duration, movit::YCbCrLumaCoefficients ycbcr_coefficients, const std::vector &input_frames, GLuint *y_tex, GLuint *cbcr_tex) { lock_guard lock(qs_mu);