From: kazu <kazu@7b47e76f-e598-2f43-bc14-414d160cc389> Date: Fri, 19 Apr 2024 09:38:19 +0000 (+0000) Subject: Minor fix and update document X-Git-Url: http://10.11.0.4:5575/?a=commitdiff_plain;h=e69247cc8708e3884269d2862d2e5bd3a93d0baf;p=ksynth.git Minor fix and update document git-svn-id: file:///raid/svn-main/kazu-ksynth/trunk@25 7b47e76f-e598-2f43-bc14-414d160cc389 --- diff --git a/src/ksynth.c b/src/ksynth.c index 6bee50a..d3d72c8 100644 --- a/src/ksynth.c +++ b/src/ksynth.c @@ -4,7 +4,7 @@ #define MIN_BUF 16 #define MAX_BUF 65536 -#define RELEASE_TIME 400 +#define RELEASE_TIME 300 #if defined(_MSC_VER) && !defined(__clang__) float compute_velocity_sse2(float logVel, float pow, float coeff) { @@ -304,6 +304,7 @@ void ksynth_fill_buffer(struct KSynth* ksynth_instance, float* buffer, unsigned int num_channels = ksynth_instance->num_channel; float velocity = 1.0f; + static struct timespec rendering_time_start, rendering_time_end; clock_gettime(CLOCK_MONOTONIC, &rendering_time_start); @@ -411,9 +412,13 @@ float* ksynth_generate_buffer(struct KSynth* ksynth_instance, unsigned int buffe float* buffer = malloc(buffer_size * sizeof(float)); - ksynth_fill_buffer(ksynth_instance, buffer, buffer_size); + if (buffer) { + ksynth_fill_buffer(ksynth_instance, buffer, buffer_size); + return buffer; + } - return buffer; + fprintf(stderr, "[KSynth] Error: Failed to create buffer!\n"); + return NULL; } float ksynth_get_rendering_time(struct KSynth* ksynth_instance) { diff --git a/src/ksynth.h b/src/ksynth.h index bbe976f..ddda8b6 100644 --- a/src/ksynth.h +++ b/src/ksynth.h @@ -25,303 +25,296 @@ extern "C" { #define M_PI 3.14159265358979323846264338327950288 #endif - struct KSynth { - struct Sample** samples; - unsigned int sample_rate; - unsigned char num_channel; - unsigned long polyphony; - unsigned char polyphony_per_channel[16]; - unsigned long max_polyphony; - float rendering_time; +struct KSynth { + struct Sample** samples; + unsigned int sample_rate; + unsigned char num_channel; + unsigned long polyphony; + unsigned char polyphony_per_channel[16]; + unsigned long max_polyphony; + float rendering_time; #ifdef ATOMIC_TEST - _Atomic(bool) lock; + _Atomic(bool) lock; #endif - struct Chan channels[16]; - struct Voice** voices; - }; + struct Chan channels[16]; + struct Voice** voices; +}; - /** - * @~english - * @brief Creates a new KSynth instance. - * - * This function creates a new KSynth instance with the specified parameters. - * The `sample_file_path` parameter specifies the path to the sample file which will be loaded and used for synthesis. - * The `sample_rate` parameter defines the audio sample rate in Hz. - * The `num_channel` parameter specifies the number of audio channels (1 for mono, 2 for stereo). - * The `max_polyphony` parameter sets the maximum number of simultaneous notes that can be played. - * Values exceeding 100,000 will be clamped to 100,000. - * - * @param sample_file_path Path to the sample file - * @param sample_rate Sample rate - * @param num_channel Number of channels (1-2) - * @param max_polyphony Maximum polyphony (1-100,000) - * @return A pointer to the newly created KSynth instance on success, NULL on failure. - * - * @~japanese - * @brief æ°ããKSynthã¤ã³ã¹ã¿ã³ã¹ãä½æãã¾ãã - * - * ãã®é¢æ°ã¯ãæå®ããããã©ã¡ã¼ã¿ã§æ°ããKSynthã¤ã³ã¹ã¿ã³ã¹ãä½æãã¾ãã - * `sample_file_path`ãã©ã¡ã¼ã¿ã¯ãåæã«ä½¿ç¨ããããµã³ãã«ãã¡ã¤ã«ã¸ã®ãã¹ãæå®ãã¾ãã - * `sample_rate`ãã©ã¡ã¼ã¿ã¯ããªã¼ãã£ãªãµã³ãã«ã¬ã¼ãï¼Hzï¼ãå®ç¾©ãã¾ãã - * `num_channel`ãã©ã¡ã¼ã¿ã¯ããªã¼ãã£ãªãã£ã³ãã«ã®æ°ãæå®ãã¾ãï¼ã¢ãã©ã«ã®å ´åã¯1ãã¹ãã¬ãªã®å ´åã¯2ï¼ã - * `max_polyphony`ãã©ã¡ã¼ã¿ã¯ãåæã«åçã§ããæ大ãã¼ãæ°ãè¨å®ãã¾ãã - * 100,000ãè¶ ããå¤ã¯100,000ã«ã¯ã©ã³ãããã¾ãã - * - * @param sample_file_path ãµã³ãã«ãã¡ã¤ã«ã¸ã®ãã¹ - * @param sample_rate ãµã³ãã«ã¬ã¼ã - * @param num_channel ãã£ã³ãã«æ°ï¼1ã2ï¼ - * @param max_polyphony æ大ããªãã©ãã¼ï¼1ã100,000ï¼ - * @return æåããå ´åã¯æ°ããKSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ã失æããå ´åã¯NULL - */ - struct KSynth* ksynth_new(const char* sample_file_path, unsigned int sample_rate, unsigned char num_channel, unsigned long max_polyphony); +/** + * @~english + * @brief Creates a new KSynth instance. + * + * This function creates a new KSynth instance with the specified parameters. + * The `sample_file_path` parameter specifies the path to the sample file which will be loaded and used for synthesis. + * The `sample_rate` parameter defines the audio sample rate in Hz. + * The `num_channel` parameter specifies the number of audio channels (1 for mono, 2 for stereo). + * The `max_polyphony` parameter sets the maximum number of simultaneous notes that can be played. + * Values exceeding 100,000 will be clamped to 100,000. + * + * @param sample_file_path Path to the sample file + * @param sample_rate Sample rate + * @param num_channel Number of channels (1-2) + * @param max_polyphony Maximum polyphony (1-100,000) + * @return A pointer to the newly created KSynth instance on success, NULL on failure. + * + * @~japanese + * @brief æ°ããKSynthã¤ã³ã¹ã¿ã³ã¹ãä½æãã¾ãã + * + * ãã®é¢æ°ã¯ãæå®ããããã©ã¡ã¼ã¿ã§æ°ããKSynthã¤ã³ã¹ã¿ã³ã¹ãä½æãã¾ãã + * `sample_file_path`ãã©ã¡ã¼ã¿ã¯ãåæã«ä½¿ç¨ããããµã³ãã«ãã¡ã¤ã«ã¸ã®ãã¹ãæå®ãã¾ãã + * `sample_rate`ãã©ã¡ã¼ã¿ã¯ããªã¼ãã£ãªãµã³ãã«ã¬ã¼ãï¼Hzï¼ãå®ç¾©ãã¾ãã + * `num_channel`ãã©ã¡ã¼ã¿ã¯ããªã¼ãã£ãªãã£ã³ãã«ã®æ°ãæå®ãã¾ãï¼ã¢ãã©ã«ã®å ´åã¯1ãã¹ãã¬ãªã®å ´åã¯2ï¼ã + * `max_polyphony`ãã©ã¡ã¼ã¿ã¯ãåæã«åçã§ããæ大ãã¼ãæ°ãè¨å®ãã¾ãã + * 100,000ãè¶ ããå¤ã¯100,000ã«ã¯ã©ã³ãããã¾ãã + * + * @param sample_file_path ãµã³ãã«ãã¡ã¤ã«ã¸ã®ãã¹ + * @param sample_rate ãµã³ãã«ã¬ã¼ã + * @param num_channel ãã£ã³ãã«æ°ï¼1ã2ï¼ + * @param max_polyphony æ大ããªãã©ãã¼ï¼1ã100,000ï¼ + * @return æåããå ´åã¯æ°ããKSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ã失æããå ´åã¯NULL + */ +struct KSynth* ksynth_new(const char* sample_file_path, unsigned int sample_rate, unsigned char num_channel, unsigned long max_polyphony); - /** - * @~english - * @brief Turns a note on for the specified MIDI channel and note. - * - * @param ksynth_instance Pointer to the KSynth instance - * @param channel MIDI channel - * @param note Note number - * @param velocity Velocity - * - * @~japanese - * @brief æå®ãããMIDIãã£ã³ãã«ã¨ãã¼ãã®ãã¼ããªã³ãè¡ãã¾ãã - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @param channel MIDIãã£ã³ãã« - * @param note ãã¼ãçªå· - * @param velocity ããã·ã㣠- */ - void ksynth_note_on(struct KSynth* ksynth_instance, unsigned char channel, unsigned char note, unsigned char velocity); +/** + * @~english + * @brief Turns a note on for the specified MIDI channel and note. + * + * @param ksynth_instance Pointer to the KSynth instance + * @param channel MIDI channel + * @param note Note number + * @param velocity Velocity + * + * @~japanese + * @brief æå®ãããMIDIãã£ã³ãã«ã¨ãã¼ãã®ãã¼ããªã³ãè¡ãã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @param channel MIDIãã£ã³ãã« + * @param note ãã¼ãçªå· + * @param velocity ããã·ã㣠+ */ +void ksynth_note_on(struct KSynth* ksynth_instance, unsigned char channel, unsigned char note, unsigned char velocity); - /** - * @~english - * @brief Enables or disables a specific CC for a note or channel. - * - * It current only supports CC 64, also known as Damper Pedal/Sustain. - * - * @param ksynth_instance Pointer to the KSynth instance - * @param channel MIDI channel - * @param param1 CC ID - * @param param2 CC param - * - * @~japanese - * @brief ãã¼ãã¾ãã¯ãã£ã³ãã«ã®ç¹å®ã® CC ãæå¹ã¾ãã¯ç¡å¹ã«ãã¾ãã - * - * ç¾å¨ããã³ãã¼ ããã«/ãµã¹ãã£ã³ã¨ãå¼ã°ãã CC 64 ã®ã¿ããµãã¼ããã¦ãã¾ãã - * - * i don't speak japanese, please fix - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @param channel MIDIãã£ã³ãã« - * @param param1 CC ID - * @param param2 CCãã©ã¡ã¼ã¿ - */ - void ksynth_cc(struct KSynth* ksynth_instance, unsigned char channel, unsigned char param1, unsigned char param2); +/** + * @~english + * @brief Handles MIDI Control Change messages for a synthesizer. (supporting only pan and sustain for now) + * + * Updates pan and sustain pedal information based on the given MIDI channel and data. + * + * @param ksynth_instance Pointer to the KSynth instance. + * @param channel MIDI channel (0 to 15). + * @param param1 is Continuos Controller ID + * @param param2 is Continuos Controller value + * + * @~japanese + * @brief ã·ã³ã»ãµã¤ã¶ã¼ã® MIDI ã³ã³ããã¼ã«ãã§ã³ã¸ã¡ãã»ã¼ã¸ãå¦çãã¾ãã(ç¾å¨ã¯ãã³ã¨ãµã¹ãã£ã³ã®ã¿ããµãã¼ããã¦ãã¾ãã) + * + * ä¸ãããã MIDI ãã£ã³ãã«ã¨ãã¼ã¿ã«åºã¥ãã¦ããã³ã¨ãµã¹ãã£ã³ããã«ã®æ å ±ãæ´æ°ãã¾ãã + * + * @param ksynth_instance KSynth ã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @param channel MIDI ãã£ã³ãã«ï¼0 ãã 15ï¼ + * @param param1 ã³ã³ããã¼ã«ãã§ã³ã¸ã® ID + * @param param2 ã³ã³ããã¼ã«ãã§ã³ã¸ã®å¤ + */ +void ksynth_cc(struct KSynth* ksynth_instance, unsigned char channel, unsigned char param1, unsigned char param2); - /** - * @~english - * @brief Turns a note off for the specified MIDI channel and note. - * - * @param ksynth_instance Pointer to the KSynth instance - * @param channel MIDI channel - * @param note Note number - * - * @~japanese - * @brief æå®ãããMIDIãã£ã³ãã«ã¨ãã¼ãã®ãã¼ããªããè¡ãã¾ãã - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @param channel MIDIãã£ã³ãã« - * @param note ãã¼ãçªå· - */ - void ksynth_note_off(struct KSynth* ksynth_instance, unsigned char channel, unsigned char note); +/** + * @~english + * @brief Turns a note off for the specified MIDI channel and note. + * + * @param ksynth_instance Pointer to the KSynth instance + * @param channel MIDI channel + * @param note Note number + * + * @~japanese + * @brief æå®ãããMIDIãã£ã³ãã«ã¨ãã¼ãã®ãã¼ããªããè¡ãã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @param channel MIDIãã£ã³ãã« + * @param note ãã¼ãçªå· + */ +void ksynth_note_off(struct KSynth* ksynth_instance, unsigned char channel, unsigned char note); - /** - * @~english - * @brief Turns off all notes. - * - * @param ksynth_instance Pointer to the KSynth instance - * - * @~japanese - * @brief ãã¹ã¦ã®ãã¼ãããªãã«ãã¾ãã - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - */ - void ksynth_note_off_all(struct KSynth* ksynth_instance); +/** + * @~english + * @brief Turns off all notes. + * + * @param ksynth_instance Pointer to the KSynth instance + * + * @~japanese + * @brief ãã¹ã¦ã®ãã¼ãããªãã«ãã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + */ +void ksynth_note_off_all(struct KSynth* ksynth_instance); - /** - * @~english - * @brief Gets the current polyphony. - * - * @param ksynth_instance Pointer to the KSynth instance - * @return The current polyphony - * - * @~japanese - * @brief ç¾å¨ã®ããªãã©ãã¼ãåå¾ãã¾ãã - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @return ç¾å¨ã®ããªãã©ãã¼ - */ - int ksynth_get_polyphony(struct KSynth* ksynth_instance); +/** + * @~english + * @brief Gets the current polyphony. + * + * @param ksynth_instance Pointer to the KSynth instance + * @return The current polyphony + * + * @~japanese + * @brief ç¾å¨ã®ããªãã©ãã¼ãåå¾ãã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @return ç¾å¨ã®ããªãã©ãã¼ + */ +int ksynth_get_polyphony(struct KSynth* ksynth_instance); - /** - * @~english - * @brief Gets the maximum polyphony. - * - * @param ksynth_instance Pointer to the KSynth instance - * @return The maximum polyphony - * - * @~japanese - * @brief æ大ããªãã©ãã¼ãåå¾ãã¾ãã - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @return æ大ããªãã©ãã¼ - */ - int ksynth_get_max_polyphony(struct KSynth* ksynth_instance); +/** + * @~english + * @brief Gets the maximum polyphony. + * + * @param ksynth_instance Pointer to the KSynth instance + * @return The maximum polyphony + * + * @~japanese + * @brief æ大ããªãã©ãã¼ãåå¾ãã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @return æ大ããªãã©ãã¼ + */ +int ksynth_get_max_polyphony(struct KSynth* ksynth_instance); - /** - * @~english - * @brief Sets the maximum polyphony. - * - * @param ksynth_instance Pointer to the KSynth instance - * @param max_polyphony Maximum polyphony (Note: Values exceeding 100,000 will be clamped) - * @return Returns true on success, false on failure. - * - * @~japanese - * @brief æ大ããªãã©ãã¼ãè¨å®ãã¾ãã - * @warning ãã®é¢æ°ãå¼ã³åºããªãã§ãã ãããåä½ãã¾ããï¼å¸¸ã«falseãè¿ãã¾ãï¼ã - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @param max_polyphony æ大ããªãã©ãã¼ï¼æ³¨ï¼100,000ãè¶ ããå¤ã¯ã¯ã©ã³ãããã¾ãï¼ - * @return æåããå ´åã¯trueã失æããå ´åã¯false - */ - bool ksynth_set_max_polyphony(struct KSynth* ksynth_instance, unsigned long max_polyphony); +/** + * @~english + * @brief Sets the maximum polyphony. + * + * @param ksynth_instance Pointer to the KSynth instance + * @param max_polyphony Maximum polyphony (Note: Values exceeding 100,000 will be clamped) + * @return Returns true on success, false on failure. + * + * @~japanese + * @brief æ大ããªãã©ãã¼ãè¨å®ãã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @param max_polyphony æ大ããªãã©ãã¼ï¼æ³¨ï¼100,000ãè¶ ããå¤ã¯ã¯ã©ã³ãããã¾ãï¼ + * @return æåããå ´åã¯trueã失æããå ´åã¯false + */ +bool ksynth_set_max_polyphony(struct KSynth* ksynth_instance, unsigned long max_polyphony); - /** - * @~english - * @brief Generates a buffer with the specified size. - * - * This function generates audio data for a buffer of a given size. - * The size of the buffer determines the duration of audio that will be generated. - * Smaller buffer sizes allow for more granularity in the audio, making strummed notes - * sound better. - * Larger buffer sizes typically result in more audio data being generated per call, - * potentially reducing the frequency of function calls to generate audio. - * However, extremely large buffer sizes may increase memory usage and latency, and make - * the audio sound choppy as a result. - * - * @param ksynth_instance Pointer to the KSynth instance - * @param buffer Pointer to the buffer you want to fill up with data - * @param buffer_size Size of the buffer - * - * @~japanese - * @brief æå®ããããµã¤ãºã®ãããã¡ãçæãã¾ãã - * - * ãã®é¢æ°ã¯ãæå®ããããµã¤ãºã®ãããã¡ã¼ã®ãªã¼ãã£ãª ãã¼ã¿ãçæãã¾ãã - * ãããã¡ã®ãµã¤ãºã«ãã£ã¦ãçæããããªã¼ãã£ãªã®é·ãã決ã¾ãã¾ãã - * ãããã¡ ãµã¤ãºãå°ããããã¨ããªã¼ãã£ãªã®ç²åº¦ãåä¸ããããé³´ãããããã¼ãã®é³ãè¯ããªãã¾ãã - * é常ããããã¡ ãµã¤ãºã大ããã¨ãå¼ã³åºããã¨ã«çæãããé³å£°ãã¼ã¿ãå¤ããªããé³å£°ãçæããããã®é¢æ°å¼ã³åºãã®é »åº¦ãæ¸å°ããå¯è½æ§ãããã¾ãã - * ãã ãããããã¡ ãµã¤ãºãé常ã«å¤§ããã¨ãã¡ã¢ãªä½¿ç¨éã¨é 延ãå¢å ããçµæã¨ãã¦é³å£°ãéåãéåãã«ãªãå¯è½æ§ãããã¾ãã - * - * i don't speak japanese, please fix - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @param buffer AAAA - * @param buffer_size ãããã¡ã®ãµã¤ãº - */ - void ksynth_fill_buffer(struct KSynth* ksynth_instance, float* buffer, unsigned int buffer_size); +/** + * @~english + * @brief Generates a buffer with the specified size. + * + * This function generates audio data for a buffer of a given size. + * The size of the buffer determines the duration of audio that will be generated. + * Smaller buffer sizes allow for more granularity in the audio, making strummed notes + * sound better. + * Larger buffer sizes typically result in more audio data being generated per call, + * potentially reducing the frequency of function calls to generate audio. + * However, extremely large buffer sizes may increase memory usage and latency, and make + * the audio sound choppy as a result. + * + * @param ksynth_instance Pointer to the KSynth instance + * @param buffer Pointer to the buffer you want to fill up with data + * @param buffer_size Size of the buffer + * + * @~japanese + * @brief æå®ããããµã¤ãºã®ãããã¡ãçæãã¾ãã + * + * ãã®é¢æ°ã¯ãæå®ããããµã¤ãºã®ãããã¡ã¼ã®ãªã¼ãã£ãª ãã¼ã¿ãçæãã¾ãã + * ãããã¡ã®ãµã¤ãºã«ãã£ã¦ãçæããããªã¼ãã£ãªã®é·ãã決ã¾ãã¾ãã + * ãããã¡ ãµã¤ãºãå°ããããã¨ããªã¼ãã£ãªã®ç²åº¦ãåä¸ããããé³´ãããããã¼ãã®é³ãè¯ããªãã¾ãã + * é常ããããã¡ ãµã¤ãºã大ããã¨ãå¼ã³åºããã¨ã«çæãããé³å£°ãã¼ã¿ãå¤ããªããé³å£°ãçæããããã®é¢æ°å¼ã³åºãã®é »åº¦ãæ¸å°ããå¯è½æ§ãããã¾ãã + * ãã ãããããã¡ ãµã¤ãºãé常ã«å¤§ããã¨ãã¡ã¢ãªä½¿ç¨éã¨é 延ãå¢å ããçµæã¨ãã¦é³å£°ãéåãéåãã«ãªãå¯è½æ§ãããã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @param buffer ãããã¡ã¸ã®ãã¤ã³ã¿ + * @param buffer_size ãããã¡ã®ãµã¤ãº + */ +void ksynth_fill_buffer(struct KSynth* ksynth_instance, float* buffer, unsigned int buffer_size); - /** - * @~english - * @brief Generates a buffer with the specified size. - * - * This function generates audio data for a buffer of a given size. - * It internally points to ksynth_fill_buffer, but instead of having the user manage the buffer, - * 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) - * @return A pointer to the generated buffer on success, NULL on failure. - * - * @~japanese - * @brief æå®ããããµã¤ãºã®ãããã¡ãçæãã¾ãã - * - * ãã®é¢æ°ã¯ãæå®ããããµã¤ãºã®ãããã¡ã¼ã®ãªã¼ãã£ãª ãã¼ã¿ãçæãã¾ãã - * ãã®é¢æ°ã¯å é¨çã« ksynth_fill_buffer ãæãã¾ãããã¦ã¼ã¶ã¼ã«ãããã¡ã¼ã管çããã代ããã«ããã®é¢æ°ã¯ã¦ã¼ã¶ã¼ã®ããã«ãããã¡ã¼ãæºåããæ»ãå¤ã¨ãã¦ãã¤ã³ã¿ã¼ãä¸ãã¾ãã - * - * i don't speak japanese, please fix - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @param buffer_size ãããã¡ã®ãµã¤ãºï¼æ³¨ï¼é常ã¯32ãã16384ã®å¤ã§ãï¼ - * @return æåããå ´åã¯çæããããããã¡ã¸ã®ãã¤ã³ã¿ã失æããå ´åã¯NULL - */ - float* ksynth_generate_buffer(struct KSynth* ksynth_instance, unsigned int buffer_size); +/** + * @~english + * @brief Generates a buffer with the specified size. + * + * This function generates audio data for a buffer of a given size. + * It internally points to ksynth_fill_buffer, but instead of having the user manage the buffer, + * 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) + * @return A pointer to the generated buffer on success, NULL on failure. + * + * @~japanese + * @brief æå®ããããµã¤ãºã®ãããã¡ãçæãã¾ãã + * + * ãã®é¢æ°ã¯ãæå®ããããµã¤ãºã®ãããã¡ã¼ã®ãªã¼ãã£ãª ãã¼ã¿ãçæãã¾ãã + * ãã®é¢æ°ã¯å é¨çã« ksynth_fill_buffer ãæãã¾ãããã¦ã¼ã¶ã¼ã«ãããã¡ã¼ã管çããã代ããã«ããã®é¢æ°ã¯ã¦ã¼ã¶ã¼ã®ããã«ãããã¡ã¼ãæºåããæ»ãå¤ã¨ãã¦ãã¤ã³ã¿ã¼ãä¸ãã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @param buffer_size ãããã¡ã®ãµã¤ãºï¼æ³¨ï¼é常ã¯32ãã16384ã®å¤ã§ãï¼ + * @return æåããå ´åã¯çæããããããã¡ã¸ã®ãã¤ã³ã¿ã失æããå ´åã¯NULL + */ +float* ksynth_generate_buffer(struct KSynth* ksynth_instance, unsigned int buffer_size); - /** - * @~english - * @brief Gets the rendering time. - * - * The rendering time represents the time taken by the synthesis engine to generate audio data for the buffer. - * When the rendering time reaches 100%, it indicates that the synthesis process is taking as long as the buffer duration, - * and any longer processing time may result in buffer underrun, leading to audio glitches or gaps. - * - * @param ksynth_instance Pointer to the KSynth instance - * @return Rendering time as a percentage of the buffer duration (0 to 100%) - * - * @~japanese - * @brief ã¬ã³ããªã³ã°æéãåå¾ãã¾ãã - * - * ã¬ã³ããªã³ã°æéã¯ãåæã¨ã³ã¸ã³ããããã¡ã®ããã®ãªã¼ãã£ãªãã¼ã¿ãçæããã®ã«ãããæéã表ãã¾ãã - * ã¬ã³ããªã³ã°æéã100%ã«éããã¨ãåæããã»ã¹ããããã¡ã®æéã¨åããããã®æéãåããã¨ã示ãã - * ããé·ãå¦çæéã¯ãããã¡ã®ã¢ã³ãã¼ã©ã³ãå¼ãèµ·ããããªã¼ãã£ãªã®ã°ãªãããã®ã£ãããå¼ãèµ·ããå¯è½æ§ãããã¾ãã - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @return ãããã¡ã®æéã®å²åã¨ãã¦ã®ã¬ã³ããªã³ã°æéï¼0ãã100%ï¼ - */ - float ksynth_get_rendering_time(struct KSynth* ksynth_instance); +/** + * @~english + * @brief Gets the rendering time. + * + * The rendering time represents the time taken by the synthesis engine to generate audio data for the buffer. + * When the rendering time reaches 100%, it indicates that the synthesis process is taking as long as the buffer duration, + * and any longer processing time may result in buffer underrun, leading to audio glitches or gaps. + * + * @param ksynth_instance Pointer to the KSynth instance + * @return Rendering time as a percentage of the buffer duration (0 to 1.0) Multiply by 100 to treat as a percentage + * + * @~japanese + * @brief ã¬ã³ããªã³ã°æéãåå¾ãã¾ãã + * + * ã¬ã³ããªã³ã°æéã¯ãåæã¨ã³ã¸ã³ããããã¡ã®ããã®ãªã¼ãã£ãªãã¼ã¿ãçæããã®ã«ãããæéã表ãã¾ãã + * ã¬ã³ããªã³ã°æéã100%ã«éããã¨ãåæããã»ã¹ããããã¡ã®æéã¨åããããã®æéãåããã¨ã示ãã + * ããé·ãå¦çæéã¯ãããã¡ã®ã¢ã³ãã¼ã©ã³ãå¼ãèµ·ããããªã¼ãã£ãªã®ã°ãªãããã®ã£ãããå¼ãèµ·ããå¯è½æ§ãããã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @return ãããã¡ã®æéã®å²åã¨ãã¦ã®ã¬ã³ããªã³ã°æéï¼0ãã1.0ï¼100ãæããã¨ããã¼ã»ã³ãã¼ã¸ã¨ãã¦æ±ãã¾ã + */ +float ksynth_get_rendering_time(struct KSynth* ksynth_instance); - /** - * @~english - * @brief Gets the number of active polyphony for the specified MIDI channel. - * - * @param ksynth_instance Pointer to the KSynth instance - * @param channel MIDI channel - * @return Number of active polyphony for the specified MIDI channel - * - * @~japanese - * @brief æå®ãããMIDIãã£ã³ãã«ã®ã¢ã¯ãã£ããªããªãã©ãã¼ã®æ°ãåå¾ãã¾ãã - * - * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - * @param channel MIDIãã£ã³ãã« - * @return æå®ãããMIDIãã£ã³ãã«ã®ã¢ã¯ãã£ããªããªãã©ãã¼ã®æ° - */ - int ksynth_get_polyphony_for_channel(struct KSynth* ksynth_instance, unsigned char channel); +/** + * @~english + * @brief Gets the number of active polyphony for the specified MIDI channel. + * + * @param ksynth_instance Pointer to the KSynth instance + * @param channel MIDI channel + * @return Number of active polyphony for the specified MIDI channel + * + * @~japanese + * @brief æå®ãããMIDIãã£ã³ãã«ã®ã¢ã¯ãã£ããªããªãã©ãã¼ã®æ°ãåå¾ãã¾ãã + * + * @param ksynth_instance KSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + * @param channel MIDIãã£ã³ãã« + * @return æå®ãããMIDIãã£ã³ãã«ã®ã¢ã¯ãã£ããªããªãã©ãã¼ã®æ° + */ +int ksynth_get_polyphony_for_channel(struct KSynth* ksynth_instance, unsigned char channel); - /** - * @~english - * @brief Frees the buffer. - * - * @param buffer Pointer to the buffer to be freed - * - * @~japanese - * @brief ãããã¡ã解æ¾ãã¾ãã - * - * @param buffer 解æ¾ãããããã¡ã¸ã®ãã¤ã³ã¿ - */ - void ksynth_buffer_free(float* buffer); +/** + * @~english + * @brief Frees the buffer. + * + * @param buffer Pointer to the buffer to be freed + * + * @~japanese + * @brief ãããã¡ã解æ¾ãã¾ãã + * + * @param buffer 解æ¾ãããããã¡ã¸ã®ãã¤ã³ã¿ + */ +void ksynth_buffer_free(float* buffer); - /** - * @~english - * @brief Frees the KSynth instance. - * - * @param ksynth_instance Pointer to the KSynth instance to be freed - * - * @~japanese - * @brief KSynthã¤ã³ã¹ã¿ã³ã¹ã解æ¾ãã¾ãã - * - * @param ksynth_instance 解æ¾ããKSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ - */ - void ksynth_free(struct KSynth* ksynth_instance); +/** + * @~english + * @brief Frees the KSynth instance. + * + * @param ksynth_instance Pointer to the KSynth instance to be freed + * + * @~japanese + * @brief KSynthã¤ã³ã¹ã¿ã³ã¹ã解æ¾ãã¾ãã + * + * @param ksynth_instance 解æ¾ããKSynthã¤ã³ã¹ã¿ã³ã¹ã¸ã®ãã¤ã³ã¿ + */ +void ksynth_free(struct KSynth* ksynth_instance); #ifdef __cplusplus }