Beispiel #1
0
        public static bool GetFrame(CVideoStream stream, float time)
        {
            if (stream == null)
            {
                throw new ArgumentException("stream is null");
            }
            if (_VideoDecoder == null)
            {
                throw new NotSupportedException("_VideoDecoder is null (already closed?)");
            }

            return(_VideoDecoder.GetFrame(stream, time));
        }
Beispiel #2
0
 public static bool GetFrame(CVideoStream stream, float time)
 {
     return(_VideoDecoder.GetFrame(stream, time));
 }
Beispiel #3
0
 public static bool VdGetFrame(int StreamID, ref STexture Frame, float Time, ref float VideoTime)
 {
     return(_VideoDecoder.GetFrame(StreamID, ref Frame, Time, ref VideoTime));
 }