From 8a537beddea4bc1ef211df38eba1bb10646f1e88 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Fri, 24 Feb 2017 14:37:53 +0100 Subject: [PATCH] Libavcodec: changed one warning --- src/video_compress/libavcodec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_compress/libavcodec.cpp b/src/video_compress/libavcodec.cpp index 78ead44cb..5384ba7ab 100644 --- a/src/video_compress/libavcodec.cpp +++ b/src/video_compress/libavcodec.cpp @@ -1370,7 +1370,7 @@ static void configure_nvenc(AVCodecContext *codec_ctx, struct setparam_param *pa } ret = av_opt_set(codec_ctx->priv_data, "spatial_aq", "0", 0); if (ret != 0) { - log_msg(LOG_LEVEL_WARNING, "[lavc] Unable to set spatial AQ.\n"); + log_msg(LOG_LEVEL_WARNING, "[lavc] Unable to unset spatial AQ.\n"); } char gpu[3] = ""; snprintf(gpu, 2, "%d", cuda_devices[0]);