Пример #1
0
        public static void Resume(CVideoStream stream)
        {
            if (stream == null)
            {
                throw new ArgumentException("stream is null");
            }
            if (_VideoDecoder == null)
            {
                throw new NotSupportedException("_VideoDecoder is null (already closed?)");
            }

            _VideoDecoder.Resume(stream);
        }
Пример #2
0
 public static void Resume(CVideoStream stream)
 {
     _VideoDecoder.Resume(stream);
 }
Пример #3
0
 public static void VdResume(int StreamID)
 {
     _VideoDecoder.Resume(StreamID);
 }