summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-02-06 10:25:25 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-02-06 10:25:25 +0100
commit1b2a62623c2e3c8f0d37b8d586ce185d68d190e1 (patch)
tree0f1d1622e527159d6d50e4353708cf46af030980 /menu.h
parentad45f801d5af3aeb3f22c34e656b3562be96c432 (diff)
downloadvdr-1b2a62623c2e3c8f0d37b8d586ce185d68d190e1.tar.gz
vdr-1b2a62623c2e3c8f0d37b8d586ce185d68d190e1.tar.bz2
Changed the naming of "binary skip mode" to "adaptive skip mode"
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/menu.h b/menu.h
index f602b966..fad27afa 100644
--- a/menu.h
+++ b/menu.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.h 3.7 2015/01/27 11:38:20 kls Exp $
+ * $Id: menu.h 3.8 2015/02/06 09:47:30 kls Exp $
*/
#ifndef __MENU_H
@@ -270,7 +270,7 @@ public:
static bool StateChanged(int &State);
};
-class cBinarySkipper {
+class cAdaptiveSkipper {
private:
int *initialValue;
int currentValue;
@@ -278,7 +278,7 @@ private:
eKeys lastKey;
cTimeMs timeout;
public:
- cBinarySkipper(void);
+ cAdaptiveSkipper(void);
void Initialize(int *InitialValue, double FramesPerSecond);
int GetValue(eKeys Key);
};
@@ -286,7 +286,7 @@ public:
class cReplayControl : public cDvbPlayerControl {
private:
cSkinDisplayReplay *displayReplay;
- cBinarySkipper binarySkipper;
+ cAdaptiveSkipper adaptiveSkipper;
cMarks marks;
bool marksModified;
bool visible, modeOnly, shown, displayFrames;