From: Steinar H. Gunderson Date: Thu, 21 Jul 2016 21:31:42 +0000 (+0200) Subject: Add an is_connected member to VideoFormat, for use with fake cards in Nageru. X-Git-Tag: 0.4~9 X-Git-Url: https://git.sesse.net/?p=bmusb;a=commitdiff_plain;h=76a878cbab84d8c3c2859b28a2363085d6a2fcb1 Add an is_connected member to VideoFormat, for use with fake cards in Nageru. --- 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 {