SynViewAnalogParams

Description

Holds analog parameters of SynView controlled cameras.

Structure fields and default values (if defined) are described below:

  • real Gain - Analog gain
  • real BlackLevel - Controls the analog black level
  • SynViewAutoMode BlackLevelAuto - Automatic black level mode
struct SynViewAnalogParams
{
	real			Gain;
	real			BlackLevel;
	SynViewAutoMode	BlackLevelAuto;


	real Gain( void ) const							{ return Gain;				};
	real BlackLevel( void ) const					{ return BlackLevel;		};
	SynViewAutoMode BlackLevelAuto( void ) const	{ return BlackLevelAuto;	};

	bool operator == ( const avs::SynViewAnalogParams& rhs ) const
	{
		return Gain == rhs.Gain && 
			BlackLevel == rhs.BlackLevel && BlackLevelAuto == rhs.BlackLevelAuto
			;
	}

	bool operator != ( const avs::SynViewAnalogParams& rhs ) const
	{
		return !(operator==(rhs));
	}

};