You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/mpeglib_artsplug/splayPlayObject_impl.h

113 lines
2.1 KiB

/*
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