예제 #1
0
파일: player.go 프로젝트: jteeuwen/go-vlc
// ToggleMute toggles the current mute status.
func (this *Player) ToggleMute() error {
	if this.ptr == nil {
		return syscall.EINVAL
	}
	C.libvlc_audio_toggle_mute(this.ptr)
	return checkError()
}
예제 #2
0
파일: player.go 프로젝트: henrym/go-vlc
// ToggleMute toggles the current mute status.
func (this *Player) ToggleMute() error {
	if this.ptr == nil {
		return &VLCError{"Player is nil"}
	}
	C.libvlc_audio_toggle_mute(this.ptr)
	return checkError()
}