From eeec7d3ded6552aaca44f78558d84cac0349d0cc Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 19 Sep 2022 14:47:17 +0200 Subject: [PATCH] testcard: inverted audio status in info --- src/video_capture/testcard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_capture/testcard.cpp b/src/video_capture/testcard.cpp index 0084e8408..c837c13f8 100644 --- a/src/video_capture/testcard.cpp +++ b/src/video_capture/testcard.cpp @@ -414,7 +414,7 @@ static int vidcap_testcard_init(struct vidcap_params *params, void **state) LOG(LOG_LEVEL_INFO) << MOD_NAME << "capture set to " << desc << ", bpp " << get_bpp(s->frame->color_spec) << ", pattern: " << s->pattern - << ", audio " << (s->grab_audio ? "off" : "on") << "\n"; + << ", audio " << (s->grab_audio ? "on" : "off") << "\n"; if(strip_fmt != NULL) { if(configure_tiling(s, strip_fmt) != 0) {