示例#1
0
 /**
  * Play next item from media list
  */
 bool next()
 {
     return libvlc_media_list_player_next(*this) == 0;
 }
示例#2
0
	void VLCWrapper::next ()
	{
		int index = PlayQueue ();
		if (index < 0)
			libvlc_media_list_player_next (LPlayer_.get ());
	}