Example #1
0
func (a *Stream) GetSpeed() float32 {
	return float32(C.al_get_audio_stream_speed((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a))))
}
Example #2
0
File: audio.go Project: beoran/algo
// Returns the speed of the audio stream
func (self *AudioStream) Speed() float32 {
	return float32(C.al_get_audio_stream_speed(self.handle))
}