summaryrefslogtreecommitdiffstats
path: root/mpeglib
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:33 +0900
commitcdd8febb68a55d7651ba5f18cb54bbd2e96e448a (patch)
tree79c8f33c33acda097108b022db1e591b234af968 /mpeglib
parent249738f07cec0169142f5cbdf79d222ddbcf3a4b (diff)
downloadtdemultimedia-cdd8febb68a55d7651ba5f18cb54bbd2e96e448a.tar.gz
tdemultimedia-cdd8febb68a55d7651ba5f18cb54bbd2e96e448a.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'mpeglib')
-rw-r--r--mpeglib/example/yaf/yafcore/buffer.h2
-rw-r--r--mpeglib/example/yaf/yafcore/commandTable.h2
-rw-r--r--mpeglib/example/yaf/yafcore/inputDecoder.h2
-rw-r--r--mpeglib/example/yaf/yafcore/inputInterface.h2
-rw-r--r--mpeglib/example/yaf/yafcore/outputInterface.h2
-rw-r--r--mpeglib/example/yaf/yafcore/yaf_control.h2
-rw-r--r--mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h2
-rw-r--r--mpeglib/example/yaf/yafxplayer/yafOutputStream.h2
-rw-r--r--mpeglib/lib/decoder/decoderPlugin.h2
-rw-r--r--mpeglib/lib/decoder/mpgPlugin.h2
-rw-r--r--mpeglib/lib/decoder/nukePlugin.h2
-rw-r--r--mpeglib/lib/decoder/splayPlugin.h2
-rw-r--r--mpeglib/lib/decoder/tplayPlugin.h2
-rw-r--r--mpeglib/lib/frame/IOFrameQueue.h2
-rw-r--r--mpeglib/lib/frame/audioFrame.h2
-rw-r--r--mpeglib/lib/frame/audioFrameQueue.h2
-rw-r--r--mpeglib/lib/frame/framer.h2
-rw-r--r--mpeglib/lib/frame/pcmFrame.h2
-rw-r--r--mpeglib/lib/input/inputPlugin.h2
-rw-r--r--mpeglib/lib/output/outPlugin.h2
-rw-r--r--mpeglib/lib/output/outputStream.h2
-rw-r--r--mpeglib/lib/output/pluginInfo.h2
-rw-r--r--mpeglib/lib/splay/mpegAudioFrame.h2
-rw-r--r--mpeglib/lib/splay/splayDecoder.h2
-rw-r--r--mpeglib/lib/util/audio/dspWrapper.h2
-rw-r--r--mpeglib/lib/util/timeWrapper.h2
-rw-r--r--mpeglib/lib/yuv/yuvPlugin.h2
27 files changed, 27 insertions, 27 deletions
diff --git a/mpeglib/example/yaf/yafcore/buffer.h b/mpeglib/example/yaf/yafcore/buffer.h
index 7c1a3d5c..93f4f3d8 100644
--- a/mpeglib/example/yaf/yafcore/buffer.h
+++ b/mpeglib/example/yaf/yafcore/buffer.h
@@ -24,7 +24,7 @@ extern "C" {
}
#include <kdemacros.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..77d51906 100644
--- a/mpeglib/example/yaf/yafcore/commandTable.h
+++ b/mpeglib/example/yaf/yafcore/commandTable.h
@@ -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..4051fd3d 100644
--- a/mpeglib/example/yaf/yafcore/inputDecoder.h
+++ b/mpeglib/example/yaf/yafcore/inputDecoder.h
@@ -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..d22bc615 100644
--- a/mpeglib/example/yaf/yafcore/inputInterface.h
+++ b/mpeglib/example/yaf/yafcore/inputInterface.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..fe4c8e71 100644
--- a/mpeglib/example/yaf/yafcore/outputInterface.h
+++ b/mpeglib/example/yaf/yafcore/outputInterface.h
@@ -28,7 +28,7 @@
//#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..630dc398 100644
--- a/mpeglib/example/yaf/yafcore/yaf_control.h
+++ b/mpeglib/example/yaf/yafcore/yaf_control.h
@@ -19,7 +19,7 @@
// 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..798c8a62 100644
--- a/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h
+++ b/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h
@@ -23,7 +23,7 @@
#include <kdemacros.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..25d7978f 100644
--- a/mpeglib/example/yaf/yafxplayer/yafOutputStream.h
+++ b/mpeglib/example/yaf/yafxplayer/yafOutputStream.h
@@ -49,7 +49,7 @@
-class KDE_EXPORT YafOutputStream : public OutputStream {
+class TDE_EXPORT YafOutputStream : public OutputStream {
long bytes;
diff --git a/mpeglib/lib/decoder/decoderPlugin.h b/mpeglib/lib/decoder/decoderPlugin.h
index b616ed51..a25bee60 100644
--- a/mpeglib/lib/decoder/decoderPlugin.h
+++ b/mpeglib/lib/decoder/decoderPlugin.h
@@ -75,7 +75,7 @@
*/
-class KDE_EXPORT DecoderPlugin {
+class TDE_EXPORT DecoderPlugin {
public:
diff --git a/mpeglib/lib/decoder/mpgPlugin.h b/mpeglib/lib/decoder/mpgPlugin.h
index 79d986cc..d2c57f01 100644
--- a/mpeglib/lib/decoder/mpgPlugin.h
+++ b/mpeglib/lib/decoder/mpgPlugin.h
@@ -28,7 +28,7 @@ class MpegSystemStream;
class MpegStreamPlayer;
class MpegVideoLength;
-class KDE_EXPORT MpgPlugin : public DecoderPlugin {
+class TDE_EXPORT MpgPlugin : public DecoderPlugin {
MpegSystemHeader* mpegSystemHeader;
MpegSystemStream* mpegSystemStream;
diff --git a/mpeglib/lib/decoder/nukePlugin.h b/mpeglib/lib/decoder/nukePlugin.h
index a7df2495..9898bd02 100644
--- a/mpeglib/lib/decoder/nukePlugin.h
+++ b/mpeglib/lib/decoder/nukePlugin.h
@@ -18,7 +18,7 @@
#include "../decoder/decoderPlugin.h"
#include <kdemacros.h>
-class KDE_EXPORT NukePlugin : public DecoderPlugin {
+class TDE_EXPORT NukePlugin : public DecoderPlugin {
public:
diff --git a/mpeglib/lib/decoder/splayPlugin.h b/mpeglib/lib/decoder/splayPlugin.h
index d7eed4ec..4bb0d9f9 100644
--- a/mpeglib/lib/decoder/splayPlugin.h
+++ b/mpeglib/lib/decoder/splayPlugin.h
@@ -25,7 +25,7 @@ class PCMFrame;
class FileAccessWrapper;
class MpegAudioInfo;
-class KDE_EXPORT SplayPlugin : public DecoderPlugin {
+class TDE_EXPORT SplayPlugin : public DecoderPlugin {
int lnoLength;
int lfirst;
diff --git a/mpeglib/lib/decoder/tplayPlugin.h b/mpeglib/lib/decoder/tplayPlugin.h
index daa0de74..90c6f6d2 100644
--- a/mpeglib/lib/decoder/tplayPlugin.h
+++ b/mpeglib/lib/decoder/tplayPlugin.h
@@ -21,7 +21,7 @@
Im not sure if you can make mutiple instances of it
*/
-class KDE_EXPORT TplayPlugin : public DecoderPlugin {
+class TDE_EXPORT TplayPlugin : public DecoderPlugin {
struct info_struct* info;
class TimeStamp* startStamp;
diff --git a/mpeglib/lib/frame/IOFrameQueue.h b/mpeglib/lib/frame/IOFrameQueue.h
index d56f25aa..652977b6 100644
--- a/mpeglib/lib/frame/IOFrameQueue.h
+++ b/mpeglib/lib/frame/IOFrameQueue.h
@@ -31,7 +31,7 @@
*/
-class KDE_EXPORT IOFrameQueue {
+class TDE_EXPORT IOFrameQueue {
public:
diff --git a/mpeglib/lib/frame/audioFrame.h b/mpeglib/lib/frame/audioFrame.h
index b1c586c3..853a5391 100644
--- a/mpeglib/lib/frame/audioFrame.h
+++ b/mpeglib/lib/frame/audioFrame.h
@@ -34,7 +34,7 @@
#define MP3FRAMESIZE (2*2*2*32*18)
-class KDE_EXPORT AudioFrame : public Frame {
+class TDE_EXPORT AudioFrame : public Frame {
int stereo;
int frequencyHZ;
diff --git a/mpeglib/lib/frame/audioFrameQueue.h b/mpeglib/lib/frame/audioFrameQueue.h
index 7e7a01c0..63f8bd57 100644
--- a/mpeglib/lib/frame/audioFrameQueue.h
+++ b/mpeglib/lib/frame/audioFrameQueue.h
@@ -28,7 +28,7 @@
This class can convert from packets back to a stream.
*/
-class KDE_EXPORT AudioFrameQueue : public IOFrameQueue {
+class TDE_EXPORT AudioFrameQueue : public IOFrameQueue {
int frameType;
int len;
diff --git a/mpeglib/lib/frame/framer.h b/mpeglib/lib/frame/framer.h
index 51c4b26e..2c1081ba 100644
--- a/mpeglib/lib/frame/framer.h
+++ b/mpeglib/lib/frame/framer.h
@@ -70,7 +70,7 @@
-class KDE_EXPORT Framer {
+class TDE_EXPORT Framer {
// this is our destination buffer for the output frame
// this buffer must be able to store the maximum size
diff --git a/mpeglib/lib/frame/pcmFrame.h b/mpeglib/lib/frame/pcmFrame.h
index a19941bc..f031519f 100644
--- a/mpeglib/lib/frame/pcmFrame.h
+++ b/mpeglib/lib/frame/pcmFrame.h
@@ -20,7 +20,7 @@
#include <kdemacros.h>
// this format has a sampleSize of 16, signed, endian==machine
-class KDE_EXPORT PCMFrame : public AudioFrame {
+class TDE_EXPORT PCMFrame : public AudioFrame {
short int* data;
int len;
diff --git a/mpeglib/lib/input/inputPlugin.h b/mpeglib/lib/input/inputPlugin.h
index 5ac68307..7ccc5501 100644
--- a/mpeglib/lib/input/inputPlugin.h
+++ b/mpeglib/lib/input/inputPlugin.h
@@ -29,7 +29,7 @@
#define _INPUT_THREADSAFE 1
-class KDE_EXPORT InputPlugin {
+class TDE_EXPORT InputPlugin {
public:
InputPlugin();
diff --git a/mpeglib/lib/output/outPlugin.h b/mpeglib/lib/output/outPlugin.h
index b70620a6..72b49edf 100644
--- a/mpeglib/lib/output/outPlugin.h
+++ b/mpeglib/lib/output/outPlugin.h
@@ -27,7 +27,7 @@
#define _OUTPUT_THREADSAFE 1
-class KDE_EXPORT OutPlugin {
+class TDE_EXPORT OutPlugin {
public:
OutPlugin();
diff --git a/mpeglib/lib/output/outputStream.h b/mpeglib/lib/output/outputStream.h
index 9ef538fd..b2d1a2fb 100644
--- a/mpeglib/lib/output/outputStream.h
+++ b/mpeglib/lib/output/outputStream.h
@@ -76,7 +76,7 @@
-class KDE_EXPORT OutputStream {
+class TDE_EXPORT OutputStream {
int audioState;
int videoState;
diff --git a/mpeglib/lib/output/pluginInfo.h b/mpeglib/lib/output/pluginInfo.h
index 7026fce9..1d9e5409 100644
--- a/mpeglib/lib/output/pluginInfo.h
+++ b/mpeglib/lib/output/pluginInfo.h
@@ -26,7 +26,7 @@
*/
-class KDE_EXPORT PluginInfo {
+class TDE_EXPORT PluginInfo {
int sec;
DynBuffer* musicName;
diff --git a/mpeglib/lib/splay/mpegAudioFrame.h b/mpeglib/lib/splay/mpegAudioFrame.h
index 8b4f6c4f..100579fb 100644
--- a/mpeglib/lib/splay/mpegAudioFrame.h
+++ b/mpeglib/lib/splay/mpegAudioFrame.h
@@ -26,7 +26,7 @@
-class KDE_EXPORT MpegAudioFrame : public Framer {
+class TDE_EXPORT MpegAudioFrame : public Framer {
// max size of buffer is:
// header: 4
diff --git a/mpeglib/lib/splay/splayDecoder.h b/mpeglib/lib/splay/splayDecoder.h
index acbfdbfc..6767336d 100644
--- a/mpeglib/lib/splay/splayDecoder.h
+++ b/mpeglib/lib/splay/splayDecoder.h
@@ -46,7 +46,7 @@ class MpegAudioHeader;
-class KDE_EXPORT SplayDecoder {
+class TDE_EXPORT SplayDecoder {
MpegAudioStream* stream;
MpegAudioHeader* header;
diff --git a/mpeglib/lib/util/audio/dspWrapper.h b/mpeglib/lib/util/audio/dspWrapper.h
index f323096d..8fc21cdf 100644
--- a/mpeglib/lib/util/audio/dspWrapper.h
+++ b/mpeglib/lib/util/audio/dspWrapper.h
@@ -32,7 +32,7 @@ class FloatFrame;
But a caller can do it in both orders.
*/
-class KDE_EXPORT DSPWrapper {
+class TDE_EXPORT DSPWrapper {
int lopenDevice;
int lopenMixer;
diff --git a/mpeglib/lib/util/timeWrapper.h b/mpeglib/lib/util/timeWrapper.h
index 608d5bd0..f8c2c8a3 100644
--- a/mpeglib/lib/util/timeWrapper.h
+++ b/mpeglib/lib/util/timeWrapper.h
@@ -30,7 +30,7 @@ typedef struct timeval_s {
long tv_usec; /* microseconds */
} timeval_t;
-class KDE_EXPORT TimeWrapper {
+class TDE_EXPORT TimeWrapper {
public:
TimeWrapper();
diff --git a/mpeglib/lib/yuv/yuvPlugin.h b/mpeglib/lib/yuv/yuvPlugin.h
index 4a5dc72b..6cc33d7e 100644
--- a/mpeglib/lib/yuv/yuvPlugin.h
+++ b/mpeglib/lib/yuv/yuvPlugin.h
@@ -20,7 +20,7 @@
#include "../decoder/decoderPlugin.h"
#include <kdemacros.h>
-class KDE_EXPORT YUVPlugin : public DecoderPlugin {
+class TDE_EXPORT YUVPlugin : public DecoderPlugin {
int lCalcLength;
int nWidth;