diff options
| author | Simon A. Eugster <[email protected]> | 2011-08-21 15:04:46 (GMT) |
|---|---|---|
| committer | Simon A. Eugster <[email protected]> | 2011-08-21 15:04:46 (GMT) |
| commit | dc238449d6172c9e6afb008a81ed635ac2d4f528 (patch) | |
| tree | e1798fd61ad74d3c33cfa80f4e5c16a1c70a151b | |
| parent | 0b4044cb3ad1b3509cb0eb9a5a402788560b64b9 (diff) | |
Light graffiti: Initializing all values to a default value
| -rw-r--r-- | src/filter/lightgraffiti/lightgraffiti.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/filter/lightgraffiti/lightgraffiti.cpp b/src/filter/lightgraffiti/lightgraffiti.cpp index 2bebad7..a6acde7 100644 --- a/src/filter/lightgraffiti/lightgraffiti.cpp +++ b/src/filter/lightgraffiti/lightgraffiti.cpp @@ -167,10 +167,19 @@ public: m_pSensitivity = 1; m_pBackgroundWeight = 0; m_pThresholdBrightness = 450; + m_pThresholdDifference = 0; m_pThresholdDiffSum = 0; m_pDim = 0; m_pSaturation = 1; + m_pLowerOverexposure = 0; + m_pStatsBrightness = false; + m_pStatsDiff = false; + m_pStatsDiffSum = false; + m_pReset = false; + m_pTransparentBackground = false; m_pBlackReference = false; + m_pLongAlpha = 0; + m_pNonlinearDim = 0; } |

