forked from vdr-projects/vdr-plugin-dvd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup-dvd.h
48 lines (38 loc) · 845 Bytes
/
setup-dvd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* DVD Player plugin for VDR
*
* Copyright (C) 2001.2002 Andreas Schultz <[email protected]>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
*/
#ifndef __SETUP_DVD_H
#define __SETUP_DVD_H
#include <vdr/menuitems.h>
class cDVDSetup {
public:
int MenuLanguage;
int AudioLanguage;
int SpuLanguage;
int PlayerRCE;
int ShowSubtitles;
int HideMainMenu;
int ReadAHead;
int Gain;
// AC3 stuff
int AC3dynrng;
public:
cDVDSetup(void);
bool SetupParse(const char *Name, const char *Value);
};
class cMenuSetupDVD : public cMenuSetupPage {
private:
cDVDSetup data;
protected:
virtual void Store(void);
public:
cMenuSetupDVD(void);
};
extern cDVDSetup DVDSetup;
#endif // __SETUP_DVD_H