summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dxr3osd_subpicture.c1
-rw-r--r--dxr3osd_subpicture.h4
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