hyperion.ng/include/grabber/VideoStandard.h
redPanther bfb9a08c80 migrate std::string to qstring + add sysinfo via json (#412)
* std::string -> qstring part 1

* more string migration

* more string migration ...

* ...

* more qstring mogrations
add sysinfo via json

* remove unneccessary includes

* integrate sysinfo into webui
2017-03-04 22:17:42 +01:00

29 lines
522 B
C

#pragma once
/**
* Enumeration of the possible video standards the grabber can be set to
*/
enum VideoStandard {
VIDEOSTANDARD_PAL,
VIDEOSTANDARD_NTSC,
VIDEOSTANDARD_NO_CHANGE
};
inline VideoStandard parseVideoStandard(QString videoStandard)
{
// convert to lower case
videoStandard = videoStandard.toLower();
if (videoStandard == "pal")
{
return VIDEOSTANDARD_PAL;
}
else if (videoStandard == "ntsc")
{
return VIDEOSTANDARD_NTSC;
}
// return the default NO_CHANGE
return VIDEOSTANDARD_NO_CHANGE;
}