From e2de64d6f1beb9e492daf5b886e19933c1fa41dd Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- mpeglib_artsplug/splayPlayObject_impl.h | 112 ++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 mpeglib_artsplug/splayPlayObject_impl.h (limited to 'mpeglib_artsplug/splayPlayObject_impl.h') 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 +#include "splayPlayObject.h" +#include "stdsynthmodule.h" +#include "convert.h" +#include +#include +#include +#include +#include +#include +#include +#include + +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 *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 *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 -- cgit v1.2.1