diff options
author | chriszero <zerov83@gmail.com> | 2014-12-24 11:00:33 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2014-12-24 11:00:33 +0100 |
commit | 80d2476f00dfe67f28aa2c10e143c2aefcba3c32 (patch) | |
tree | 30853f4b9013277bcc95d5b51ccf440f6e1fca7b /ambithread.h | |
parent | 06464fbaa856da447cb794d80e07f5abb96f4b1f (diff) | |
download | vdr-plugin-boblight-80d2476f00dfe67f28aa2c10e143c2aefcba3c32.tar.gz vdr-plugin-boblight-80d2476f00dfe67f28aa2c10e143c2aefcba3c32.tar.bz2 |
Added 3D Mode.
Softhddevice patch optional, for autodetection.
Diffstat (limited to 'ambithread.h')
-rw-r--r-- | ambithread.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ambithread.h b/ambithread.h index abc1c58..3fa15bb 100644 --- a/ambithread.h +++ b/ambithread.h @@ -51,6 +51,7 @@ class cAmbiThread : public cThread, public cAmbiService int grabImage(); int detectCineBars(); + int getOsd3DMode(); int putData(); int softhddeviceNotDetached(); @@ -69,10 +70,13 @@ class cAmbiThread : public cThread, public cAmbiService int lastxBarHeight; int lastyBarWidth; + + int osd3DMode; bool barsChanged; + bool osd3dChanged; int imageSize; int imageWidth; int imageHeight; -};
\ No newline at end of file +}; |