TsRemux.TsRemux.StopMPlayer C# (CSharp) 메소드

StopMPlayer() 개인적인 메소드

private StopMPlayer ( ) : void
리턴 void
        private void StopMPlayer()
        {
            lock (_Serializer)
            {
                if (_MPlayerProcess != null)
                {
                    _MPlayerProcess.CancelOutputRead();
                    _MPlayerProcess.Kill();

                    _FormInstance = null;
                    TrimSetTimer.Enabled = false;
                    _MPlayerProcess = null;

                    MPlayerEndUIConfig();
                }
            }
        }
TsRemux