示例#1
0
文件: player.go 项目: jteeuwen/go-vlc
// Chapter returns the current movie chapter.
func (this *Player) Chapter() (int, error) {
	if this.ptr == nil {
		return 0, syscall.EINVAL
	}
	return int(C.libvlc_media_player_get_chapter(this.ptr)), checkError()
}
示例#2
0
文件: player.go 项目: henrym/go-vlc
// Chapter returns the current movie chapter.
func (this *Player) Chapter() (int, error) {
	if this.ptr == nil {
		return 0, &VLCError{"Player is nil"}
	}
	return int(C.libvlc_media_player_get_chapter(this.ptr)), checkError()
}