From 76a878cbab84d8c3c2859b28a2363085d6a2fcb1 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 21 Jul 2016 23:31:42 +0200 Subject: [PATCH] Add an is_connected member to VideoFormat, for use with fake cards in Nageru. --- bmusb.h | 1 + 1 file changed, 1 insertion(+) diff --git a/bmusb.h b/bmusb.h index 4c7254b..bf1f51f 100644 --- a/bmusb.h +++ b/bmusb.h @@ -97,6 +97,7 @@ struct VideoFormat { unsigned frame_rate_nom = 0, frame_rate_den = 0; bool interlaced = false; bool has_signal = false; + bool is_connected = true; // If false, then has_signal makes no sense. }; struct AudioFormat { -- 2.39.2