mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
569e59110e
* implement set videomode via json api * refactor grabbers: - new base class - move shared code to base class * fix osx * rework all cmakelist files with auto file collection. except leddevices (need further restructuring) * store current video and grabbing mode * add json stuff * remove grabbingmode - we do not want to expose it
43 lines
654 B
C
43 lines
654 B
C
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
/**
|
|
* Enumeration of the possible modes in which video can be playing (2D, 3D)
|
|
*/
|
|
enum VideoMode
|
|
{
|
|
VIDEO_2D,
|
|
VIDEO_3DSBS,
|
|
VIDEO_3DTAB
|
|
};
|
|
|
|
inline VideoMode parse3DMode(QString videoMode)
|
|
{
|
|
// convert to upper case
|
|
videoMode = videoMode.toUpper();
|
|
|
|
if (videoMode == "3DTAB")
|
|
{
|
|
return VIDEO_3DTAB;
|
|
}
|
|
else if (videoMode == "3DSBS")
|
|
{
|
|
return VIDEO_3DSBS;
|
|
}
|
|
|
|
// return the default 2D
|
|
return VIDEO_2D;
|
|
}
|
|
|
|
inline QString videoMode2String(VideoMode mode)
|
|
{
|
|
switch(mode)
|
|
{
|
|
case VIDEO_3DTAB: return "3DTAB";
|
|
case VIDEO_3DSBS: return "3DSBS";
|
|
case VIDEO_2D: return "2D";
|
|
default: return "INVALID";
|
|
}
|
|
}
|