diff options
author | scop <scop> | 2005-03-23 19:28:40 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-23 19:28:40 +0000 |
commit | a46e7af44eb433a0460a057143a51469a498b1ba (patch) | |
tree | 976273d890468a2789f852afaf8edd14af9a57c0 | |
parent | 7b10af91586041382acfd8995f8589caa5c4b318 (diff) | |
download | vdr-plugin-dxr3-a46e7af44eb433a0460a057143a51469a498b1ba.tar.gz vdr-plugin-dxr3-a46e7af44eb433a0460a057143a51469a498b1ba.tar.bz2 |
Sync comments from HEAD.
-rw-r--r-- | dxr3osd_subpicture.c | 1 | ||||
-rw-r--r-- | dxr3osd_subpicture.h | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/dxr3osd_subpicture.c b/dxr3osd_subpicture.c index 07405e1..bf5a776 100644 --- a/dxr3osd_subpicture.c +++ b/dxr3osd_subpicture.c @@ -5,6 +5,7 @@ #define MAXNUMWINDOWS 7 // OSD windows are counted 1...7 // ================================== +//! constructor cDxr3SubpictureOsd::cDxr3SubpictureOsd(int Left, int Top) : cOsd(Left, Top) { shown = false; diff --git a/dxr3osd_subpicture.h b/dxr3osd_subpicture.h index e20566b..0708da7 100644 --- a/dxr3osd_subpicture.h +++ b/dxr3osd_subpicture.h @@ -19,8 +19,8 @@ class cDxr3SubpictureOsd : public cOsd { private: - cSPUEncoder* Spu; - bool shown; + cSPUEncoder* Spu; ///< interface to cSPUEncoder + bool shown; ///< is the osd shown? #if VDRVERSNUM >= 10318 cTimeMs *last; #else |