diff options
Diffstat (limited to 'servers/audio/effects/audio_effect_pitch_shift.cpp')
-rw-r--r-- | servers/audio/effects/audio_effect_pitch_shift.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/servers/audio/effects/audio_effect_pitch_shift.cpp b/servers/audio/effects/audio_effect_pitch_shift.cpp index 89273d744b..172b5c2ce8 100644 --- a/servers/audio/effects/audio_effect_pitch_shift.cpp +++ b/servers/audio/effects/audio_effect_pitch_shift.cpp @@ -2,9 +2,11 @@ /* audio_effect_pitch_shift.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -33,7 +35,7 @@ #include "core/math/math_funcs.h" #include "servers/audio_server.h" -/* Thirdparty code, so disable clang-format with Godot style */ +/* Thirdparty code, so disable clang-format with Redot style */ /* clang-format off */ /**************************************************************************** @@ -282,7 +284,7 @@ void SMBPitchShift::smbFft(float *fftBuffer, long fftFrameSize, long sign) } -/* Godot code again */ +/* Redot code again */ /* clang-format on */ void AudioEffectPitchShiftInstance::process(const AudioFrame *p_src_frames, AudioFrame *p_dst_frames, int p_frame_count) { |