コード例 #1
0
ファイル: player.go プロジェクト: jteeuwen/go-vlc
// AdjustOption returns an integer adjustment option.
func (this *Player) AdjustOption(option AdjustOption) (int, error) {
	if this.ptr == nil {
		return 0, syscall.EINVAL
	}
	return int(C.libvlc_video_get_adjust_int(this.ptr, C.uint(option))), checkError()
}
コード例 #2
0
ファイル: player.go プロジェクト: henrym/go-vlc
// AdjustOption returns an integer adjustment option.
func (this *Player) AdjustOption(option AdjustOption) (int, error) {
	if this.ptr == nil {
		return 0, &VLCError{"Player is nil"}
	}
	return int(C.libvlc_video_get_adjust_int(this.ptr, C.uint(option))), checkError()
}