// Constructor public PanasonicCamera() { videoSource = new JPEGSource(); JPEGSource.SetAllowUnsafeHeaderParsing20(); streamType = StreamType.Jpeg; }
// Constructor public BoschCamera() { videoSource = new JPEGSource(); //JPEGSource.SetAllowUnsafeHeaderParsing20(); streamType = StreamType.Jpeg; }
// Create video source object public VsICoreProvider CreateVideoSource(object config) { JPEGConfiguration cfg = (JPEGConfiguration)config; if (cfg != null) { JPEGSource source = new JPEGSource(); source.VideoSource = cfg.source; source.Login = cfg.login; source.Password = cfg.password; source.FrameInterval = cfg.frameInterval; return((VsICoreProvider)source); } return(null); }
// Constructor public Axis206() { videoSource = new JPEGSource(); streamType = StreamType.Jpeg; }
// Create video source object public VsICoreProvider CreateVideoSource(object config) { JPEGConfiguration cfg = (JPEGConfiguration) config; if (cfg != null) { JPEGSource source = new JPEGSource(); source.VideoSource = cfg.source; source.Login = cfg.login; source.Password = cfg.password; source.FrameInterval = cfg.frameInterval; return (VsICoreProvider) source; } return null; }
// Constructor public PixordCamera() { videoSource = new JPEGSource(); streamType = StreamType.Jpeg; }