예제 #1
0
파일: player.go 프로젝트: jteeuwen/go-vlc
// SetAudioDelay sets the current audio delay.
func (this *Player) SetAudioDelay(delay int64) (err error) {
	if this.ptr == nil {
		return syscall.EINVAL
	}

	if C.libvlc_audio_set_delay(this.ptr, C.int64_t(delay)) != 0 {
		err = checkError()
	}

	return
}
예제 #2
0
파일: player.go 프로젝트: henrym/go-vlc
// SetAudioDelay sets the current audio delay.
func (this *Player) SetAudioDelay(delay int64) (err error) {
	if this.ptr == nil {
		return &VLCError{"Player is nil"}
	}

	if C.libvlc_audio_set_delay(this.ptr, C.int64_t(delay)) != 0 {
		err = checkError()
	}

	return
}