diff options
author | Fabian Keller <github.100.fkeller@spamgourmet.com> | 2023-09-09 14:12:27 +0200 |
---|---|---|
committer | Fabian Keller <github.100.fkeller@spamgourmet.com> | 2023-09-09 14:12:27 +0200 |
commit | 178aad9a4e517d436984099b191794044a6d5f12 (patch) | |
tree | 03ca02523360f16cdbfdc4766d8909be35a3c931 /scene/audio | |
parent | fc99492d3066098e938449b10e02f8e01d07e2d1 (diff) | |
download | redot-engine-178aad9a4e517d436984099b191794044a6d5f12.tar.gz |
remove some dead declarations in audio_stream_player.h
Diffstat (limited to 'scene/audio')
-rw-r--r-- | scene/audio/audio_stream_player.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scene/audio/audio_stream_player.h b/scene/audio/audio_stream_player.h index c0c25aa983..b97387ebb1 100644 --- a/scene/audio/audio_stream_player.h +++ b/scene/audio/audio_stream_player.h @@ -60,15 +60,10 @@ private: MixTarget mix_target = MIX_TARGET_STEREO; - void _mix_internal(bool p_fadeout); - void _mix_audio(); - static void _mix_audios(void *self) { reinterpret_cast<AudioStreamPlayer *>(self)->_mix_audio(); } - void _set_playing(bool p_enable); bool _is_active() const; void _bus_layout_changed(); - void _mix_to_bus(const AudioFrame *p_frames, int p_amount); Vector<AudioFrame> _get_volume_vector(); |