Esempio n. 1
0
func (a *Stream) GetPositionSecs() float64 {
	return float64(C.al_get_audio_stream_position_secs((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a))))
}
Esempio n. 2
0
File: audio.go Progetto: beoran/algo
// Gets the position in the audio stream, expressed in seconds.
func (self *AudioStream) PositionSeconds() (secs float64) {
	return float64(C.al_get_audio_stream_position_secs(self.handle))
}