示例#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
文件: CVideo.cs 项目: zhaozw/Vocaluxe
 public static void VdResume(int StreamID)
 {
     _VideoDecoder.Resume(StreamID);
 }