@@ -211,7 +211,7 @@ VRC7SOUND_API void vrc7_set_clock_rate(struct vrc7_sound *vrc7_s, double clock_r
211211
212212/*
213213Sets the sample rate of the vrc7_sound object. This function only has an effect if you are using vrc7_fetch_sample. This is not to be
214- confused with the sample rate of the signal member of the vrc7_sound object which is set by vrc7_set_clock_rate.
214+ confused with the sample rate of the signal variable of the vrc7_sound object which is set by vrc7_set_clock_rate.
215215*/
216216VRC7SOUND_API void vrc7_set_sample_rate (struct vrc7_sound * vrc7_s , double sample_rate );
217217
@@ -222,12 +222,12 @@ VRC7SOUND_API void vrc7_set_patch_set(struct vrc7_sound *vrc7_s, int patch_set);
222222
223223/*
224224Updates the vrc7. This function has to be called at 1/72th of the clock rate set by vrc7_set_clock_rate. After calling this function,
225- the signal member of the vrc7_object will contain new data. If you are using vrc7_fetch_sample, you do not need to call this function.
225+ the signal variable of the vrc7_sound object will contain new data. If you are using vrc7_fetch_sample, you should not call this function.
226226*/
227227VRC7SOUND_API void vrc7_tick (struct vrc7_sound * vrc7_s );
228228
229229/*
230- Fetches a single sample and updates the vrc7 . This function internally calls vrc7_tick, so you should not call it manually when using
230+ Fetches a single sample and updates the vrc7_sound object . This function internally calls vrc7_tick, so you should not call it manually when using
231231vrc7_fetch_sample. This function has to be called at the sample rate set by vrc7_set_sample_rate.
232232*/
233233VRC7SOUND_API void vrc7_fetch_sample (struct vrc7_sound * vrc7_s , int16_t * sample );
@@ -270,12 +270,12 @@ VRC7SOUND_API void vrc7_get_default_patch(int set, uint32_t index, struct vrc7_p
270270*/
271271
272272/*
273- Filter function that leaves the raw output from the vrc7 in the signal member . In other words, this function does nothing.
273+ Filter function that leaves the raw output from the vrc7 in the signal variable . In other words, this function does nothing.
274274*/
275275VRC7SOUND_API void vrc7_filter_raw (struct vrc7_sound * vrc7_s );
276276
277277/*
278- Filter function converts the pulse output of the vrc7 into a more usable signal, but does not apply any filters to it.
278+ Filter function that converts the pulse output of the vrc7 into a more usable signal, but does not apply any filters to it.
279279The output signal is filled with the sum of each of the channels outputs.
280280*/
281281VRC7SOUND_API void vrc7_filter_no_filter (struct vrc7_sound * vrc7_s );
0 commit comments