SoundPlayer: Add samplerate variable to visualizations

also fix conflict
This commit is contained in:
Cesar Torres 2021-03-26 01:28:56 +01:00 committed by Andreas Kling
commit fd126578d9
Notes: sideshowbarker 2024-07-18 21:02:37 +09:00
12 changed files with 51 additions and 311 deletions

View file

@ -31,4 +31,5 @@
class Visualization {
public:
virtual void set_buffer(RefPtr<Audio::Buffer> buffer) = 0;
virtual void set_samplerate(int) { }
};