示例#1
0
        public bool SetSource(CaptureSourceType type)
        {
            IntPtr error   = IntPtr.Zero;
            bool   raw_ret = gst_camera_capturer_set_source(Handle, (int)type, out error);

            if (error != IntPtr.Zero)
            {
                throw new GLib.GException(error);
            }
            bool ret = raw_ret;

            return(ret);
        }
		public bool SetSource(CaptureSourceType type) {
			IntPtr error = IntPtr.Zero;			
			bool raw_ret = gst_camera_capturer_set_source(Handle, (int) type, out error);
			if (error != IntPtr.Zero) throw new GLib.GException (error);
			bool ret = raw_ret;
			return ret;
		}		
示例#3
0
 public bool SetSource(CaptureSourceType type)
 {
     return true;
 }
示例#4
0
 public bool SetSource(CaptureSourceType type, string sourceElement)
 {
     return true;
 }
示例#5
0
 public bool SetSource(CaptureSourceType type)
 {
     return(true);
 }
示例#6
0
 public bool SetSource(CaptureSourceType type, string sourceElement)
 {
     return(true);
 }