summaryrefslogtreecommitdiffstats
path: root/plugins/pluginDirectShow/internals/DSDisplayOverlay.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pluginDirectShow/internals/DSDisplayOverlay.cxx')
-rwxr-xr-xplugins/pluginDirectShow/internals/DSDisplayOverlay.cxx27
1 files changed, 13 insertions, 14 deletions
diff --git a/plugins/pluginDirectShow/internals/DSDisplayOverlay.cxx b/plugins/pluginDirectShow/internals/DSDisplayOverlay.cxx
index eb355c4..7c5463b 100755
--- a/plugins/pluginDirectShow/internals/DSDisplayOverlay.cxx
+++ b/plugins/pluginDirectShow/internals/DSDisplayOverlay.cxx
@@ -1,17 +1,17 @@
/* Copyright (C) 2011-2013 Doubango Telecom <http://www.doubango.org>
-*
+*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
-*
+*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
-*
+*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*/
@@ -34,34 +34,33 @@ DSDisplayOverlay::~DSDisplayOverlay()
void DSDisplayOverlay::attach(HWND parent, DSDisplayGraph *graph)
{
- this->displayGraph = graph;
+ this->displayGraph = graph;
}
void DSDisplayOverlay::detach()
{
- this->displayGraph = NULL;
+ this->displayGraph = NULL;
}
void DSDisplayOverlay::show(int value)
{
- // Store the ticks to count down
- this->ticks = value;
+ // Store the ticks to count down
+ this->ticks = value;
- this->internalUpdate();
+ this->internalUpdate();
}
void DSDisplayOverlay::update()
{
- if (this->displayGraph && (this->ticks > 0))
- {
- this->ticks--;
- this->internalUpdate();
- }
+ if (this->displayGraph && (this->ticks > 0)) {
+ this->ticks--;
+ this->internalUpdate();
+ }
}
void DSDisplayOverlay::internalUpdate()
{
- this->displayGraph->getSourceFilter()->showOverlay(this->ticks);
+ this->displayGraph->getSourceFilter()->showOverlay(this->ticks);
}
#endif
OpenPOWER on IntegriCloud