summaryrefslogtreecommitdiffstats
path: root/mpeglib_artsplug/splayPlayObject_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'mpeglib_artsplug/splayPlayObject_impl.h')
-rw-r--r--mpeglib_artsplug/splayPlayObject_impl.h112
1 files changed, 112 insertions, 0 deletions
diff --git a/mpeglib_artsplug/splayPlayObject_impl.h b/mpeglib_artsplug/splayPlayObject_impl.h
new file mode 100644
index 00000000..fb0be931
--- /dev/null
+++ b/mpeglib_artsplug/splayPlayObject_impl.h
@@ -0,0 +1,112 @@
+/*
+ base class for all mpeglib decoders
+ Copyright (C) 2000 Martin Vogt
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Library General Public License as published by
+ the Free Software Foundation.
+
+ For more information look at the file COPYRIGHT in this package
+
+ */
+
+
+#ifndef __DECODERBASEOBJECT_IMPL_H
+#define __DECODERBASEOBJECT_IMPL_H
+
+
+#include <math.h>
+#include "splayPlayObject.h"
+#include "stdsynthmodule.h"
+#include "convert.h"
+#include <X11/Xlib.h>
+#include <audiosubsys.h>
+#include <iostream>
+#include <stdio.h>
+#include <string.h>
+#include <arts/kmedia2.h>
+#include <stdlib.h>
+#include <connect.h>
+
+class SplayDecoder;
+class MpegAudioFrame;
+class AudioFrameQueue;
+class FrameQueue;
+
+
+
+using namespace std;
+
+class SplayPlayObject_impl :
+ virtual public Arts::StdSynthModule,
+ virtual public SplayPlayObject_skel {
+
+
+ Arts::poState _state;
+
+ // decoder
+ SplayDecoder* splay;
+ MpegAudioFrame* framer;
+ AudioFrameQueue* frameQueue;
+ FrameQueue* packetQueue;
+
+ // local input
+ FILE* file;
+
+ double flpos;
+ int lStreaming;
+
+ float* resampleBuffer;
+ int resampleBufferSize;
+
+ unsigned char* inputbuffer;
+ Arts::DataPacket<Arts::mcopbyte> *currentPacket;
+ int currentPos;
+
+
+public:
+
+ SplayPlayObject_impl();
+ virtual ~SplayPlayObject_impl();
+
+
+ bool loadMedia(const string &filename);
+
+ bool streamMedia(Arts::InputStream instream);
+ Arts::InputStream inputStream() { return currentStream; }
+ void process_indata(Arts::DataPacket<Arts::mcopbyte> *inpacket);
+
+ string description();
+ void description(const string &);
+
+ Arts::poTime currentTime();
+ Arts::poTime overallTime();
+
+ Arts::poCapabilities capabilities();
+ string mediaName();
+ Arts::poState state();
+ void play();
+ void halt();
+
+ void seek(const class Arts::poTime &);
+ void pause();
+ void streamInit();
+ void streamStart();
+ void calculateBlock(unsigned long samples);
+ void streamEnd();
+
+ private:
+ Arts::InputStream currentStream;
+
+ void checkResampleBuffer(int size);
+ void checkPacketBuffer(int size);
+ void getMoreSamples(int needLen);
+ void processQueue();
+
+
+
+};
+
+
+
+#endif