mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Changed the naming of "binary skip mode" to "adaptive skip mode"
This commit is contained in:
8
menu.h
8
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;
|
||||
|
Reference in New Issue
Block a user