修复编译警告
This commit is contained in:
parent
99fc79735f
commit
9c165fecb6
@ -11,14 +11,14 @@ public:
|
||||
|
||||
void start();
|
||||
|
||||
CORE_API const char* get_name() override { return "audio_device_manager"; }
|
||||
const char* get_name() override { return "audio_device_manager"; }
|
||||
|
||||
CORE_API uint32_t get_sample_rate() const;
|
||||
[[nodiscard]] CORE_API uint32_t get_sample_rate() const;
|
||||
CORE_API void set_sample_rate(uint32_t sample_rate);
|
||||
CORE_API uint32_t get_buffer_size() const;
|
||||
[[nodiscard]] CORE_API uint32_t get_buffer_size() const;
|
||||
CORE_API void set_buffer_size(int buffer_size);
|
||||
CORE_API uint32_t get_input_channel_count() const;
|
||||
CORE_API uint32_t get_output_channel_count() const;
|
||||
[[nodiscard]] CORE_API uint32_t get_input_channel_count() const;
|
||||
[[nodiscard]] CORE_API uint32_t get_output_channel_count() const;
|
||||
|
||||
int stream_callback(float** output, float** input, unsigned long frame_count, double stream_time, RtAudioStreamStatus status);
|
||||
void log_all_devices();
|
||||
|
Loading…
x
Reference in New Issue
Block a user