Esempio n. 1
0
// Play plays the entries in the media list.
func (this *ListPlayer) Play() error {
	if this.ptr == nil {
		return os.EINVAL
	}

	C.libvlc_media_list_player_play(this.ptr)
	return checkError()
}
Esempio n. 2
0
// Play plays the entries in the media list.
func (this *ListPlayer) Play() error {
	if this.ptr == nil {
		return &VLCError{"ListPlayer is nil"}
	}

	C.libvlc_media_list_player_play(this.ptr)
	return checkError()
}