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