Changed the naming of "binary skip mode" to "adaptive skip mode"

This commit is contained in:
Klaus Schmidinger
2015-02-06 10:25:25 +01:00
parent ad45f801d5
commit 1b2a62623c
35 changed files with 164 additions and 157 deletions

8
menu.h
View File

@@ -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;