Files
LNXRNT/Kore/Backends/System/Pi/Sources/kinc/backend/VideoSoundStream.h
2026-06-09 13:00:08 -07:00

17 lines
299 B
C++

#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;
}
};
}