예제 #1
0
 private void stopDisplayThread()
 {
     while (displayThread != null && !threadExit)
     {
         done = true;
         Utilities.sleep(1, 0);
     }
     displayThread = null;
 }
예제 #2
0
        public bool initVideo()
        {
            if (!startVideo())
            {
                return(false);
            }

            displayThread        = new PmfDisplayThread(this);
            displayThread.Daemon = true;
            displayThread.Name   = "UMD Browser - PMF Display Thread";
            displayThread.Start();

            return(true);
        }