summaryrefslogtreecommitdiffstats
path: root/branches/1.0/tinyDSHOW/src/DSDisplayOverlay.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'branches/1.0/tinyDSHOW/src/DSDisplayOverlay.cxx')
-rw-r--r--branches/1.0/tinyDSHOW/src/DSDisplayOverlay.cxx71
1 files changed, 0 insertions, 71 deletions
diff --git a/branches/1.0/tinyDSHOW/src/DSDisplayOverlay.cxx b/branches/1.0/tinyDSHOW/src/DSDisplayOverlay.cxx
deleted file mode 100644
index e9a2e10..0000000
--- a/branches/1.0/tinyDSHOW/src/DSDisplayOverlay.cxx
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
-* Copyright (C) 2009-2010 Mamadou Diop.
-*
-* Contact: Mamadou Diop <diopmamadou(at)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.
-*
-*/
-#if !defined(VMR) && !defined(VMR9) && !defined(VMR9_WINDOWLESS)
-
-#include <tinydshow/DSDisplayOverlay.h>
-#include <tinydshow/DSDisplayGraph.h>
-
-#include <iostream>
-
-using namespace std;
-
-DSDisplayOverlay::DSDisplayOverlay()
-{
-}
-
-DSDisplayOverlay::~DSDisplayOverlay()
-{
-}
-
-void DSDisplayOverlay::attach(HWND parent, DSDisplayGraph *graph)
-{
- this->displayGraph = graph;
-}
-
-void DSDisplayOverlay::detach()
-{
- this->displayGraph = NULL;
-}
-
-void DSDisplayOverlay::show(int value)
-{
- // Store the ticks to count down
- this->ticks = value;
-
- this->internalUpdate();
-}
-
-void DSDisplayOverlay::update()
-{
- if (this->displayGraph && (this->ticks > 0))
- {
- this->ticks--;
- this->internalUpdate();
- }
-}
-
-void DSDisplayOverlay::internalUpdate()
-{
- this->displayGraph->getSourceFilter()->showOverlay(this->ticks);
-}
-
-#endif
OpenPOWER on IntegriCloud