Exemplo n.º 1
0
func (a *Stream) GetLength() uint32 {
	return uint32(C.al_get_audio_stream_length((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a))))
}
Exemplo n.º 2
0
Arquivo: audio.go Projeto: beoran/algo
// Returns the length of the audio stream
func (self *AudioStream) Length() uint {
	return uint(C.al_get_audio_stream_length(self.handle))
}