Exemple #1
0
        public static void Pause(CVideoStream stream)
        {
            if (stream == null)
            {
                throw new ArgumentException("stream is null");
            }
            if (_VideoDecoder == null)
            {
                throw new NotSupportedException("_VideoDecoder is null (already closed?)");
            }

            _VideoDecoder.Pause(stream);
        }
Exemple #2
0
 public static void Pause(CVideoStream stream)
 {
     _VideoDecoder.Pause(stream);
 }
Exemple #3
0
 public static void VdPause(int StreamID)
 {
     _VideoDecoder.Pause(StreamID);
 }