Example #1
0
 public VlcPlayer(AxVLCPlugin2 axVLCPlugin21, int width, int height)
 {
     this.axVLCPlugin2 = axVLCPlugin21;
     this.Width        = width;
     this.Height       = height;
     this.rtspPlayer   = new VlcPlayer.playVideoCallBackHandler(this.startPlay);
 }
Example #2
0
 public VlcPlayer(AxVLCPlugin2 axVLCPlugin21)
 {
     this.axVLCPlugin2 = axVLCPlugin21;
     this.Width        = axVLCPlugin21.Width;
     this.Height       = axVLCPlugin21.Height;
     this.rtspPlayer   = new VlcPlayer.playVideoCallBackHandler(this.playVideo);
 }