示例#1
0
        public void StartVideo( )
        {
            if (VideoRunning)
            {
                return;
            }
            VideoRunning = true;
            if (PhotoRunning)
            {
                StopPhoto( );
            }
            var hr = VideoControl.Run( );

            checkHR(hr, "Failed running graph");
            WakeProcessing.Set( );
        }