예제 #1
0
        public static float GetLength(CVideoStream stream)
        {
            if (stream == null)
            {
                throw new ArgumentException("stream is null");
            }
            if (_VideoDecoder == null)
            {
                throw new NotSupportedException("_VideoDecoder is null (already closed?)");
            }

            return(_VideoDecoder.GetLength(stream));
        }
예제 #2
0
 public static float GetLength(CVideoStream stream)
 {
     return(_VideoDecoder.GetLength(stream));
 }
예제 #3
0
파일: CVideo.cs 프로젝트: zhaozw/Vocaluxe
 public static float VdGetLength(int StreamID)
 {
     return(_VideoDecoder.GetLength(StreamID));
 }