blob: 34b83a90f60d163db2b5493297c0591af8766f3e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef NULLSOFT_IN_WMVDRM_VID_UTILS_H
#define NULLSOFT_IN_WMVDRM_VID_UTILS_H
#include "../Agave/Config/ifc_configgroup.h"
class VideoConfig
{
public:
VideoConfig();
bool yv12();
bool overlays();
bool vsync();
bool ddraw();
private:
void GetGroup();
ifc_configgroup *group;
ifc_configitem *itemYV12, *itemOverlay, *itemVsync, *itemDDraw;
};
extern VideoConfig config_video;
#endif
|