コード例 #1
0
ファイル: player.go プロジェクト: jteeuwen/go-vlc
// SetAdjustOptionFloat sets a float adjustment option value.
// Options that take a different type value are ignored.
func (this *Player) SetAdjustOptionFloat(option AdjustOption, v float32) error {
	if this.ptr == nil {
		return syscall.EINVAL
	}
	C.libvlc_video_set_adjust_float(this.ptr, C.uint(option), C.float(v))
	return checkError()
}
コード例 #2
0
ファイル: player.go プロジェクト: henrym/go-vlc
// SetAdjustOptionFloat sets a float adjustment option value.
// Options that take a different type value are ignored.
func (this *Player) SetAdjustOptionFloat(option AdjustOption, v float32) error {
	if this.ptr == nil {
		return &VLCError{"Player is nil"}
	}
	C.libvlc_video_set_adjust_float(this.ptr, C.uint(option), C.float(v))
	return checkError()
}