|
From: <kro...@us...> - 2007-04-10 11:48:35
|
Revision: 300
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=300&view=rev
Author: kroko_koenig
Date: 2007-04-10 04:42:31 -0700 (Tue, 10 Apr 2007)
Log Message:
-----------
Add a small waiting time after clearing the playlist to give the dll enought time. (Multitask)
Modified Paths:
--------------
trunk/plugins/VideoLAN/VideoLanPlugin.cs
Modified: trunk/plugins/VideoLAN/VideoLanPlugin.cs
===================================================================
--- trunk/plugins/VideoLAN/VideoLanPlugin.cs 2007-04-09 16:35:53 UTC (rev 299)
+++ trunk/plugins/VideoLAN/VideoLanPlugin.cs 2007-04-10 11:42:31 UTC (rev 300)
@@ -161,6 +161,10 @@
vlcControl.Stop();
vlcControl.ClearPlayList();
+
+ System.Threading.Thread.Sleep(1000);
+ //wait for vlc strange playlist problem
+
vlcControl.AddToPlayList(strFile, null, option);
vlcControl.Play();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|