Esempio n. 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));
        }
Esempio n. 2
0
 public static bool Finished(CVideoStream stream)
 {
     return(_VideoDecoder.Finished(stream));
 }
Esempio n. 3
0
 public static bool VdFinished(int StreamID)
 {
     return(_VideoDecoder.Finished(StreamID));
 }