diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-07 09:24:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 09:24:35 +0100 |
commit | 3ed2bd13adaf7ee4dc162f623699d46fd3326775 (patch) | |
tree | de68f2a97490c462f5474ccd22266d4a19c82231 /servers | |
parent | ca2b0f6e776ed3e8898093caa9706c8e176fe406 (diff) | |
parent | 7ac9ea75cc37ecf688441f05b6c36ef4ffeb7a77 (diff) |
Merge pull request #55670 from akien-mga/rename-videoplayer
Diffstat (limited to 'servers')
-rw-r--r-- | servers/audio/audio_rb_resampler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/audio/audio_rb_resampler.cpp b/servers/audio/audio_rb_resampler.cpp index d9c442facf..b37965a988 100644 --- a/servers/audio/audio_rb_resampler.cpp +++ b/servers/audio/audio_rb_resampler.cpp @@ -43,7 +43,7 @@ int AudioRBResampler::get_channel_count() const { // Linear interpolation based sample rate conversion (low quality) // Note that AudioStreamPlaybackResampled::mix has better algorithm, -// but it wasn't obvious to integrate that with VideoPlayer +// but it wasn't obvious to integrate that with VideoStreamPlayer template <int C> uint32_t AudioRBResampler::_resample(AudioFrame *p_dest, int p_todo, int32_t p_increment) { uint32_t read = offset & MIX_FRAC_MASK; |