示例#1
0
        public static bool Finished(CVideoStream stream)
        {
            if (stream == null)
            {
                throw new ArgumentException("stream is null");
            }
            if (_VideoDecoder == null)
            {
                throw new NotSupportedException("_VideoDecoder is null (already closed?)");
            }

            return(_VideoDecoder.Finished(stream));
        }
示例#2
0
 public static bool Finished(CVideoStream stream)
 {
     return(_VideoDecoder.Finished(stream));
 }
示例#3
0
文件: CVideo.cs 项目: zhaozw/Vocaluxe
 public static bool VdFinished(int StreamID)
 {
     return(_VideoDecoder.Finished(StreamID));
 }