vidutils.h 394 B

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