ref: 1de494ed50a7b368dafbcdf1b77f3c1e87332f85
dir: /src/support/ModStream.h/
#pragma once #include "cmixer.h" namespace ibxm { extern "C" { #include "ibxm.h" } } namespace cmixer { class ModStream : public Source { ibxm::module* module; ibxm::replay* replay; std::vector<char> moduleFile; std::vector<int> replayBuffer; int rbOffset; int rbLength; double playbackSpeedMult; void Rewind2(); void FillBuffer(int16_t* buffer, int length); public: ModStream(std::vector<char>&& rawModule); void SetPlaybackSpeed(double f); }; }