summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraustriancoder <austriancoder>2004-10-11 17:38:04 +0000
committeraustriancoder <austriancoder>2004-10-11 17:38:04 +0000
commit17bd1961f1a26bee1b306a47fc286ddfd72ecae4 (patch)
tree40cffa4b2b6761539ec872bdbd50ab4c6290a72a
parentce4e40fd55a2a0c9f6b1b38c3d40880f2ba788c7 (diff)
downloadvdr-plugin-dxr3-17bd1961f1a26bee1b306a47fc286ddfd72ecae4.tar.gz
vdr-plugin-dxr3-17bd1961f1a26bee1b306a47fc286ddfd72ecae4.tar.bz2
fixed #includes
-rw-r--r--HISTORY5
-rw-r--r--dxr3interface.c3
-rw-r--r--dxr3interface.h1
-rw-r--r--dxr3osd.c3
4 files changed, 5 insertions, 7 deletions
diff --git a/HISTORY b/HISTORY
index fa5edc1..76c781a 100644
--- a/HISTORY
+++ b/HISTORY
@@ -262,4 +262,7 @@ NOTE: I havent found time to include all of the languages, will be done in pre2
- checked Lock() and Unlock() in dxr3interface.c - hope everything is ok else contact me
- using now std:: instead of namespace std;
- renamed dxr3interface_spu_encoder.h/c to dxr3spuencoder.h/c
-- removed log commands in dxr3outputthread.c \ No newline at end of file
+- removed log commands in dxr3outputthread.c
+- fixed #includes
+ moved #include "dxr3osd.h" from dxr3interface.h to dxr3interface.c
+ removed not needed #include "" \ No newline at end of file
diff --git a/dxr3interface.c b/dxr3interface.c
index 41c9823..413d9d5 100644
--- a/dxr3interface.c
+++ b/dxr3interface.c
@@ -26,8 +26,7 @@
#include "dxr3interface.h"
#include "dxr3syncbuffer.h"
-#include "dxr3log.h"
-#include "dxr3configdata.h"
+#include "dxr3osd.h"
// ==================================
const int LPCM_HEADER_LENGTH = 7;
diff --git a/dxr3interface.h b/dxr3interface.h
index f400fc4..492c1e3 100644
--- a/dxr3interface.h
+++ b/dxr3interface.h
@@ -33,7 +33,6 @@
#include "dxr3log.h"
#include "dxr3configdata.h"
#include "dxr3sysclock.h"
-#include "dxr3osd.h"
// ==================================
class cFixedLengthFrame;
diff --git a/dxr3osd.c b/dxr3osd.c
index 6b3a3ec..2d18f0a 100644
--- a/dxr3osd.c
+++ b/dxr3osd.c
@@ -26,10 +26,7 @@
#include <sys/unistd.h>
#include "dxr3vdrincludes.h"
-#include "dxr3interface.h"
-
#include "dxr3osd.h"
-//#include "dxr3interface_spu_encoder.h"
#if VDRVERSNUM >= 10307