示例#1
0
文件: Video.cs 项目: hpavlov/occurec
        public Video(bool fullAAVSimulation)
        {
            Properties.Settings.Default.Reload();

            player = new AAVPlayer(Properties.Settings.Default.SimulatorFilePath, Properties.Settings.Default.SimulatorFrameRate, fullAAVSimulation);
        }
示例#2
0
文件: Video.cs 项目: hpavlov/occurec
        public void Dispose()
        {
            if (player != null && player.IsRunning)
                player.Stop();

            player = null;
        }