mistserver/src/input/input_dtsccrypt.h
2017-07-22 18:58:17 +02:00

25 lines
498 B
C++

#include "input.h"
#include <mist/dtsc.h>
namespace Mist {
class inputDTSC : public Input {
public:
inputDTSC(Util::Config * cfg);
protected:
//Private Functions
bool checkArguments();
bool readHeader();
void getNext(bool smart = true);
void seek(int seekTime);
void trackSelect(std::string trackSpec);
DTSC::File inFile;
std::map<int,unsigned long long int> iVecs;
std::string key;
};
}
typedef Mist::inputDTSC mistIn;