DirectShow: Add WhiteBalancePreset and ColorTemperature for the camera

Change-Id: I9a646418d6177338735e1eb38967fd092e21e0cf
Reviewed-by: Yoann Lopes <yoann.lopes@theqtcompany.com>
This commit is contained in:
Denis Shienkov
2015-12-05 20:51:28 +03:00
committed by Yoann Lopes
parent ab403bc9ae
commit 5becd7c1a9
2 changed files with 142 additions and 26 deletions

View File

@@ -130,6 +130,9 @@ private:
: minimumValue(0)
, maximumValue(0)
, defaultValue(0)
, currentValue(0)
, capsFlags(0)
, hasBeenExplicitlySet(false)
, videoProcAmpProperty(VideoProcAmp_Brightness)
{
}
@@ -137,6 +140,9 @@ private:
LONG minimumValue;
LONG maximumValue;
LONG defaultValue;
LONG currentValue;
LONG capsFlags;
bool hasBeenExplicitlySet;
VideoProcAmpProperty videoProcAmpProperty;
};