From 12d3775ea1effb650c4ac1330b682d217a7cdb66 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Fri, 22 Jul 2022 01:00:47 +0200 Subject: [PATCH] Remove the zerocopy warnings. It's unlikely that the user will be able to glean meaningful information from this. --- nageru/quicksync_encoder.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/nageru/quicksync_encoder.cpp b/nageru/quicksync_encoder.cpp index 9a6bd6d..3e53cf3 100644 --- a/nageru/quicksync_encoder.cpp +++ b/nageru/quicksync_encoder.cpp @@ -714,13 +714,10 @@ void QuickSyncEncoderImpl::enable_zerocopy_if_possible() // Quick Sync is entirely disabled. use_zerocopy = false; } else if (global_flags.x264_video_to_http) { - fprintf(stderr, "Disabling zerocopy H.264 encoding due to --http-x264-video.\n"); use_zerocopy = false; } else if (global_flags.av1_video_to_http) { - fprintf(stderr, "Disabling zerocopy H.264 encoding due to --http-av1-video.\n"); use_zerocopy = false; } else if (!global_flags.v4l_output_device.empty()) { - fprintf(stderr, "Disabling zerocopy H.264 encoding due to --v4l-output.\n"); use_zerocopy = false; } else { use_zerocopy = true; -- 2.39.2