Ejemplo n.º 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);
        }
Ejemplo n.º 2
0
 public static void Resume(CVideoStream stream)
 {
     _VideoDecoder.Resume(stream);
 }
Ejemplo n.º 3
0
 public static void VdResume(int StreamID)
 {
     _VideoDecoder.Resume(StreamID);
 }