예제 #1
0
파일: player.go 프로젝트: jteeuwen/go-vlc
// SetMute sets mute mode to the specified value.
func (this *Player) SetMute(toggle bool) error {
	if this.ptr == nil {
		return syscall.EINVAL
	}

	if toggle {
		C.libvlc_audio_set_mute(this.ptr, 1)
	} else {
		C.libvlc_audio_set_mute(this.ptr, 0)
	}

	return checkError()
}
예제 #2
0
파일: player.go 프로젝트: henrym/go-vlc
// SetMute sets mute mode to the specified value.
func (this *Player) SetMute(toggle bool) error {
	if this.ptr == nil {
		return &VLCError{"Player is nil"}
	}

	if toggle {
		C.libvlc_audio_set_mute(this.ptr, 1)
	} else {
		C.libvlc_audio_set_mute(this.ptr, 0)
	}

	return checkError()
}