summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/frame
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/lib/frame
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/lib/frame')
-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
5 files changed, 5 insertions, 5 deletions
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;