diff options
author | austriancoder <austriancoder> | 2004-10-11 17:38:04 +0000 |
---|---|---|
committer | austriancoder <austriancoder> | 2004-10-11 17:38:04 +0000 |
commit | 17bd1961f1a26bee1b306a47fc286ddfd72ecae4 (patch) | |
tree | 40cffa4b2b6761539ec872bdbd50ab4c6290a72a | |
parent | ce4e40fd55a2a0c9f6b1b38c3d40880f2ba788c7 (diff) | |
download | vdr-plugin-dxr3-17bd1961f1a26bee1b306a47fc286ddfd72ecae4.tar.gz vdr-plugin-dxr3-17bd1961f1a26bee1b306a47fc286ddfd72ecae4.tar.bz2 |
fixed #includes
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | dxr3interface.c | 3 | ||||
-rw-r--r-- | dxr3interface.h | 1 | ||||
-rw-r--r-- | dxr3osd.c | 3 |
4 files changed, 5 insertions, 7 deletions
@@ -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; @@ -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 |