diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | e2de64d6f1beb9e492daf5b886e19933c1fa41dd (patch) | |
tree | 9047cf9e6b5c43878d5bf82660adae77ceee097a /mpeglib_artsplug/splayPlayObject_impl.h | |
download | tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.tar.gz tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'mpeglib_artsplug/splayPlayObject_impl.h')
-rw-r--r-- | mpeglib_artsplug/splayPlayObject_impl.h | 112 |
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 |