17 lines
299 B
C
Raw Normal View History

2025-01-22 16:18:30 +01:00
#include <Kore/Graphics4/Texture.h>
#include <Kore/IO/FileReader.h>
namespace Kore {
class VideoSoundStream {
public:
VideoSoundStream(int nChannels, int freq) {}
void insertData(float *data, int nSamples) {}
float nextSample() {
return 0;
}
bool ended() {
return true;
}
};
}