Exemplo n.º 1
0
func (a *Stream) GetPositionSecs() float64 {
	return float64(C.al_get_audio_stream_position_secs((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a))))
}
Exemplo n.º 2
0
Arquivo: audio.go Projeto: 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))
}