summaryrefslogtreecommitdiffstats
path: root/mpeglib/example
diff options
context:
space:
mode:
Diffstat (limited to 'mpeglib/example')
-rw-r--r--mpeglib/example/yaf/yafcore/buffer.h4
-rw-r--r--mpeglib/example/yaf/yafcore/commandTable.h4
-rw-r--r--mpeglib/example/yaf/yafcore/inputDecoder.h4
-rw-r--r--mpeglib/example/yaf/yafcore/inputInterface.h4
-rw-r--r--mpeglib/example/yaf/yafcore/outputInterface.h4
-rw-r--r--mpeglib/example/yaf/yafcore/yaf_control.h4
-rw-r--r--mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h4
-rw-r--r--mpeglib/example/yaf/yafxplayer/yafOutputStream.h4
8 files changed, 16 insertions, 16 deletions
diff --git a/mpeglib/example/yaf/yafcore/buffer.h b/mpeglib/example/yaf/yafcore/buffer.h
index 7c1a3d5c..ae008d6c 100644
--- a/mpeglib/example/yaf/yafcore/buffer.h
+++ b/mpeglib/example/yaf/yafcore/buffer.h
@@ -22,9 +22,9 @@ extern "C" {
#include <string.h>
#include <stdio.h>
}
-#include <kdemacros.h>
+#include <tdemacros.h>
-class KDE_EXPORT Buffer {
+class TDE_EXPORT Buffer {
char* msg;
int nSize;
diff --git a/mpeglib/example/yaf/yafcore/commandTable.h b/mpeglib/example/yaf/yafcore/commandTable.h
index 75dd4325..679913cc 100644
--- a/mpeglib/example/yaf/yafcore/commandTable.h
+++ b/mpeglib/example/yaf/yafcore/commandTable.h
@@ -21,7 +21,7 @@ extern"C" {
#include <stdio.h>
}
-#include <kdemacros.h>
+#include <tdemacros.h>
#define _CT_START 40
@@ -47,7 +47,7 @@ struct CommandDescriptionStruct {
typedef struct CommandDescriptionStruct CommandDescription;
-class KDE_EXPORT CommandTable {
+class TDE_EXPORT CommandTable {
int nCommandDesc;
CommandDescription commandDesc[50];
diff --git a/mpeglib/example/yaf/yafcore/inputDecoder.h b/mpeglib/example/yaf/yafcore/inputDecoder.h
index 0a5623a0..aa22337d 100644
--- a/mpeglib/example/yaf/yafcore/inputDecoder.h
+++ b/mpeglib/example/yaf/yafcore/inputDecoder.h
@@ -19,7 +19,7 @@
#include "outputInterface.h"
#include <strings.h>
-#include <kdemacros.h>
+#include <tdemacros.h>
#define _DECODER_STATUS_IDLE 1
#define _DECODER_STATUS_WORKING 2
@@ -29,7 +29,7 @@ class CommandTable;
class CommandTableYAF;
class CommandLine;
-class KDE_EXPORT InputDecoder {
+class TDE_EXPORT InputDecoder {
int status;
CommandTable* commandTable;
diff --git a/mpeglib/example/yaf/yafcore/inputInterface.h b/mpeglib/example/yaf/yafcore/inputInterface.h
index f3ea0065..2f2ffd44 100644
--- a/mpeglib/example/yaf/yafcore/inputInterface.h
+++ b/mpeglib/example/yaf/yafcore/inputInterface.h
@@ -18,7 +18,7 @@
#include "buffer.h"
#include <fstream>
-#include <kdemacros.h>
+#include <tdemacros.h>
extern "C" {
#include <unistd.h>
@@ -37,7 +37,7 @@ extern "C" {
class MultiReader;
-class KDE_EXPORT InputInterface {
+class TDE_EXPORT InputInterface {
int currentCommandNumber;
diff --git a/mpeglib/example/yaf/yafcore/outputInterface.h b/mpeglib/example/yaf/yafcore/outputInterface.h
index 0a24fd92..616c1eb7 100644
--- a/mpeglib/example/yaf/yafcore/outputInterface.h
+++ b/mpeglib/example/yaf/yafcore/outputInterface.h
@@ -21,14 +21,14 @@
#include <pthread.h>
#include <fstream>
#include "buffer.h"
-#include <kdemacros.h>
+#include <tdemacros.h>
// uncomment this for debugging the output stream
// (written to file outstream.dbg)
//#define _DEBUG_OUTPUT
-class KDE_EXPORT OutputInterface {
+class TDE_EXPORT OutputInterface {
int protocolSyntax;
int nr;
diff --git a/mpeglib/example/yaf/yafcore/yaf_control.h b/mpeglib/example/yaf/yafcore/yaf_control.h
index 890a1bb8..14cf921f 100644
--- a/mpeglib/example/yaf/yafcore/yaf_control.h
+++ b/mpeglib/example/yaf/yafcore/yaf_control.h
@@ -13,13 +13,13 @@
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
-#include <kdemacros.h>
+#include <tdemacros.h>
// prototypes
//extern "C" void control_xplayer();
-KDE_EXPORT void yaf_control(InputInterface* input,
+TDE_EXPORT void yaf_control(InputInterface* input,
OutputInterface* output,
InputDecoder* decoder);
diff --git a/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h b/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h
index 2002dc58..1abc4452 100644
--- a/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h
+++ b/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h
@@ -20,10 +20,10 @@
#include "inputDecoderXPlayer.h"
#include "yafOutputStream.h"
-#include <kdemacros.h>
+#include <tdemacros.h>
-class KDE_EXPORT InputDecoderYAF : public InputDecoderXPlayer {
+class TDE_EXPORT InputDecoderYAF : public InputDecoderXPlayer {
DecoderPlugin* plugin;
YafOutputStream* output;
diff --git a/mpeglib/example/yaf/yafxplayer/yafOutputStream.h b/mpeglib/example/yaf/yafxplayer/yafOutputStream.h
index bb7df423..70e26974 100644
--- a/mpeglib/example/yaf/yafxplayer/yafOutputStream.h
+++ b/mpeglib/example/yaf/yafxplayer/yafOutputStream.h
@@ -41,7 +41,7 @@
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
-#include <kdemacros.h>
+#include <tdemacros.h>
// If you get compile errors when using mpeglib
// simply remove the yaf dependencies
@@ -49,7 +49,7 @@
-class KDE_EXPORT YafOutputStream : public OutputStream {
+class TDE_EXPORT YafOutputStream : public OutputStream {
long bytes;