mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
34 lines
565 B
C
34 lines
565 B
C
#pragma once
|
|
|
|
/**
|
|
* Enumeration of the possible video standards the grabber can be set to
|
|
*/
|
|
enum class VideoStandard {
|
|
PAL,
|
|
NTSC,
|
|
SECAM,
|
|
NO_CHANGE
|
|
};
|
|
|
|
inline VideoStandard parseVideoStandard(const QString& videoStandard)
|
|
{
|
|
// convert to lower case
|
|
QString standard = videoStandard.toLower();
|
|
|
|
if (standard == "pal")
|
|
{
|
|
return VideoStandard::PAL;
|
|
}
|
|
else if (standard == "ntsc")
|
|
{
|
|
return VideoStandard::NTSC;
|
|
}
|
|
else if (standard == "secam")
|
|
{
|
|
return VideoStandard::SECAM;
|
|
}
|
|
|
|
// return the default NO_CHANGE
|
|
return VideoStandard::NO_CHANGE;
|
|
}
|