WaveCrop parameters renamed

This commit is contained in:
JupiterRider 2024-11-24 15:58:13 +01:00
parent 3282ea28f2
commit 0c2506a3cd
2 changed files with 9 additions and 9 deletions

View file

@ -315,12 +315,12 @@ func WaveCopy(wave Wave) Wave {
return v
}
// WaveCrop - Crop a wave to defined samples range
func WaveCrop(wave Wave, initSample int32, finalSample int32) {
// WaveCrop - Crop a wave to defined frames range
func WaveCrop(wave Wave, initFrame int32, finalFrame int32) {
cwave := wave.cptr()
cinitSample := (C.int)(initSample)
cfinalSample := (C.int)(finalSample)
C.WaveCrop(cwave, cinitSample, cfinalSample)
cinitFrame := (C.int)(initFrame)
cfinalFrame := (C.int)(finalFrame)
C.WaveCrop(cwave, cinitFrame, cfinalFrame)
}
// LoadWaveSamples - Get samples data from wave as a floats array

View file

@ -490,7 +490,7 @@ var setSoundVolume func(sound uintptr, volume float32)
var setSoundPitch func(sound uintptr, pitch float32)
var setSoundPan func(sound uintptr, pan float32)
var waveCopy func(copy uintptr, wave uintptr)
var waveCrop func(wave *Wave, initSample int32, finalSample int32)
var waveCrop func(wave *Wave, initFrame int32, finalFrame int32)
var waveFormat func(wave *Wave, sampleRate int32, sampleSize int32, channels int32)
var loadWaveSamples func(wave uintptr) *float32
var unloadWaveSamples func(samples []float32)
@ -3701,9 +3701,9 @@ func WaveCopy(wave Wave) Wave {
return copy
}
// WaveCrop - Crop a wave to defined samples range
func WaveCrop(wave *Wave, initSample int32, finalSample int32) {
waveCrop(wave, initSample, finalSample)
// WaveCrop - Crop a wave to defined frames range
func WaveCrop(wave *Wave, initFrame int32, finalFrame int32) {
waveCrop(wave, initFrame, finalFrame)
}
// WaveFormat - Convert wave data to desired format