Exemplo n.º 1
0
 public static void Close(ref CVideoStream stream)
 {
     //Check for null because the videostreams may close themselves on destroy (GC)
     if (_VideoDecoder != null)
     {
         _VideoDecoder.Close(ref stream);
     }
 }
Exemplo n.º 2
0
 public static bool VdClose(int StreamID)
 {
     return(_VideoDecoder.Close(StreamID));
 }