From 9516a9185a9369301c6a379cde1b576d5bf5acc7 Mon Sep 17 00:00:00 2001 From: kazu Date: Fri, 19 Apr 2024 10:42:18 +0000 Subject: [PATCH] Fix document git-svn-id: file:///raid/svn-main/kazu-ksynth/trunk@27 7b47e76f-e598-2f43-bc14-414d160cc389 --- src/ksynth.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ksynth.h b/src/ksynth.h index 758d42f..57f6407 100644 --- a/src/ksynth.h +++ b/src/ksynth.h @@ -235,7 +235,7 @@ void ksynth_fill_buffer(struct KSynth* ksynth_instance, float* buffer, unsigned * this function prepares it for them and gives them a pointer as a return value. * * @param ksynth_instance Pointer to the KSynth instance - * @param buffer_size Size of the buffer (Note: Values are typically between 32 and 16384) + * @param buffer_size Size of the buffer (Note: Values are typically between 16 and 65536) * @return A pointer to the generated buffer on success, NULL on failure. * * @~japanese @@ -245,7 +245,7 @@ void ksynth_fill_buffer(struct KSynth* ksynth_instance, float* buffer, unsigned * この関数は内部的に ksynth_fill_buffer を指しますが、ユーザーにバッファーを管理させる代わりに、この関数はユーザーのためにバッファーを準備し、戻り値としてポインターを与えます。 * * @param ksynth_instance KSynthインスタンスへのポインタ - * @param buffer_size バッファのサイズ(注:通常は32から16384の値です) + * @param buffer_size バッファのサイズ(注:通常は16から65536の値です) * @return 成功した場合は生成されたバッファへのポインタ、失敗した場合はNULL */ float* ksynth_generate_buffer(struct KSynth* ksynth_instance, unsigned int buffer_size); -- 2.43.0