亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? visca_cli.c

?? visca lib, for camera control
?? C
?? 第 1 頁 / 共 5 頁
字號:
  char *command;  char *arg1;  char *arg2;  char *arg3;  char *arg4;  char *arg5;  int intarg1=0;  int intarg2=0;  int intarg3=0;  int intarg4=0;  int intarg5=0;  int boolarg;  VISCATitleData_t *temptitle;    /*Variables that hold return values from VISCA routines*/  UInt8_t value8, value8b, value8c;  UInt16_t value16;    /*tokenize the commandline*/  command = strtok(commandline, " ");  arg1 = strtok(NULL, " ");  arg2 = strtok(NULL, " ");  arg3 = strtok(NULL, " ");  arg4 = strtok(NULL, " ");  arg5 = strtok(NULL, " ");    /*Try to convert the arguments to integers*/  if (arg1 != NULL) {    intarg1 = atoi(arg1);  }  if (arg2 != NULL) {    intarg2 = atoi(arg2);  }  if (arg3 != NULL) {    intarg3 = atoi(arg3);  }  if (arg4 != NULL) {    intarg4 = atoi(arg4);  }  if (arg5 != NULL) {    intarg5 = atoi(arg5);  }    /*Try to find a boolean value*/  if ((arg1 != NULL) && (strcmp(arg1, "true") == 0)) {    boolarg = 2;  } else if ((arg1 != NULL) && (strcmp(arg1, "false") == 0)) {    boolarg = 3;  } else if ((arg1 != NULL) && (strcmp(arg1, "1") == 0)) {    boolarg = 2;  } else if ((arg1 != NULL) && (strcmp(arg1, "0") == 0)) {    boolarg = 3;  } else {    boolarg = -1;  }  #if DEBUG  fprintf(stderr, "command: %s\n", command);  fprintf(stderr, "arg1: %s\narg2: %s\narg3: %s\narg4: %s\narg5: %s\n",           arg1, arg2, arg3, arg4, arg5);  fprintf(stderr,           "intarg1: %i\nintarg2: %i\nintarg3: %i\nintarg4:%i\nintarg5:%i\n",           intarg1, intarg2, intarg3, intarg4, intarg5);  fprintf(stderr, "boolarg: %i\n", boolarg);#endif  if (strcmp(command, "set_zoom_tele") == 0) {    if (VISCA_set_zoom_tele(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_zoom_wide") == 0) {    if (VISCA_set_zoom_wide(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_zoom_stop") == 0) {    if (VISCA_set_zoom_stop(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_focus_far") == 0) {    if (VISCA_set_focus_far(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_focus_near") == 0) {    if (VISCA_set_focus_near(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_focus_stop") == 0) {    if (VISCA_set_focus_stop(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_focus_one_push") == 0) {    if (VISCA_set_focus_one_push(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_focus_infinity") == 0) {    if (VISCA_set_focus_infinity(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_focus_autosense_high") == 0) {    if (VISCA_set_focus_autosense_high(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_focus_autosense_low") == 0) {    if (VISCA_set_focus_autosense_low(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_whitebal_one_push") == 0) {    if (VISCA_set_whitebal_one_push(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_rgain_up") == 0) {    if (VISCA_set_rgain_up(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_rgain_down") == 0) {    if (VISCA_set_rgain_down(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_rgain_reset") == 0) {    if (VISCA_set_rgain_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_bgain_up") == 0) {    if (VISCA_set_bgain_up(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_bgain_down") == 0) {    if (VISCA_set_bgain_down(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_bgain_reset") == 0) {    if (VISCA_set_bgain_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_shutter_up") == 0) {    if (VISCA_set_shutter_up(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_shutter_down") == 0) {    if (VISCA_set_shutter_down(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_shutter_reset") == 0) {    if (VISCA_set_shutter_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_iris_up") == 0) {    if (VISCA_set_iris_up(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_iris_down") == 0) {    if (VISCA_set_iris_down(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_iris_reset") == 0) {    if (VISCA_set_iris_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_gain_up") == 0) {    if (VISCA_set_gain_up(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_gain_down") == 0) {    if (VISCA_set_gain_down(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_gain_reset") == 0) {    if (VISCA_set_gain_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_bright_up") == 0) {    if (VISCA_set_bright_up(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_bright_down") == 0) {    if (VISCA_set_bright_down(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_bright_reset") == 0) {    if (VISCA_set_bright_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_aperture_up") == 0) {    if (VISCA_set_aperture_up(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_aperture_down") == 0) {    if (VISCA_set_aperture_down(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_aperture_reset") == 0) {    if (VISCA_set_aperture_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_exp_comp_up") == 0) {    if (VISCA_set_exp_comp_up(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_exp_comp_down") == 0) {    if (VISCA_set_exp_comp_down(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_exp_comp_reset") == 0) {    if (VISCA_set_exp_comp_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_title_clear") == 0) {    if (VISCA_set_title_clear(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_irreceive_on") == 0) {    if (VISCA_set_irreceive_on(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_irreceive_off") == 0) {    if (VISCA_set_irreceive_off(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_irreceive_onoff") == 0) {    if (VISCA_set_irreceive_onoff(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_pantilt_home") == 0) {    if (VISCA_set_pantilt_home(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_pantilt_reset") == 0) {    if (VISCA_set_pantilt_reset(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_pantilt_limit_downleft_clear") == 0) {    if (VISCA_set_pantilt_limit_downleft_clear(&interface, &camera)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_pantilt_limit_upright_clear") == 0) {    if (VISCA_set_pantilt_limit_upright_clear(&interface, &camera)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_datascreen_on") == 0) {    if (VISCA_set_datascreen_on(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_datascreen_off") == 0) {    if (VISCA_set_datascreen_off(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }    if (strcmp(command, "set_datascreen_onoff") == 0) {    if (VISCA_set_datascreen_onoff(&interface, &camera)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }    if (strcmp(command, "set_power") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_power(&interface, &camera, boolarg)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }    if (strcmp(command, "set_keylock") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (boolarg == 03) {      boolarg = 0;    }    if (VISCA_set_keylock (&interface, &camera, boolarg)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_dzoom") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_dzoom (&interface, &camera, boolarg)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_focus_auto") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_focus_auto (&interface, &camera, boolarg)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_exp_comp_power") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_exp_comp_power (&interface, &camera, boolarg)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本成人在线网站| 7799精品视频| 欧美日韩中字一区| 久久综合狠狠综合久久综合88 | 成人app软件下载大全免费| 欧美日本一区二区| 亚洲欧美国产77777| 国产精品66部| 精品三级在线看| 日韩电影免费在线看| 97久久精品人人做人人爽50路| 日韩欧美在线网站| 五月天一区二区| 色哟哟在线观看一区二区三区| 久久噜噜亚洲综合| 日本午夜一区二区| 欧美日韩国产精选| 亚洲第一久久影院| 欧美午夜片在线看| 亚洲国产精品一区二区久久 | 91网站黄www| 亚洲国产精品成人综合| 国产呦萝稀缺另类资源| 日韩美一区二区三区| 日本成人在线电影网| 欧美日韩一区二区三区免费看| 亚洲免费在线电影| 色婷婷久久久久swag精品| 亚洲天堂网中文字| 日本久久电影网| 一区二区三区在线观看欧美 | 大胆欧美人体老妇| 欧美经典三级视频一区二区三区| 国产精品一区二区在线播放| 欧美一区二区成人| 久久99久久99精品免视看婷婷 | 国产精品欧美久久久久一区二区| 国产精品99久久久久久久女警| 国产欧美一区二区三区在线老狼| 国产激情一区二区三区四区 | 精品免费国产一区二区三区四区| 精品一区二区在线观看| 久久精品视频一区二区三区| 成人免费视频caoporn| 亚洲三级理论片| 91福利国产精品| 蜜桃久久久久久久| 国产精品色在线观看| 色婷婷狠狠综合| 男男视频亚洲欧美| 中日韩av电影| 欧美视频完全免费看| 狠狠色丁香久久婷婷综| 中文在线免费一区三区高中清不卡| 99精品视频在线观看| 亚洲成年人影院| 日本一区二区三区四区| 91黄视频在线观看| 国产一区999| 亚洲自拍另类综合| 久久婷婷一区二区三区| 91丨九色porny丨蝌蚪| 日韩专区在线视频| 国产精品全国免费观看高清| 欧美色综合影院| 国产在线精品一区二区| 中文字幕日本不卡| 精品美女一区二区三区| 一本高清dvd不卡在线观看| 青青草国产成人av片免费| 国产精品成人免费精品自在线观看| 欧美亚洲禁片免费| 高清不卡一区二区在线| 天天做天天摸天天爽国产一区 | 日韩电影在线观看网站| 国产日韩欧美精品综合| 欧美日韩一级视频| 成人免费毛片片v| 蜜臀av在线播放一区二区三区| 中文一区二区在线观看| 欧美一区二区三区性视频| 国产成人av资源| 日韩黄色在线观看| 亚洲日穴在线视频| 久久久久99精品一区| 在线成人高清不卡| 欧美亚洲国产怡红院影院| 国产成人免费9x9x人网站视频| 亚洲国产cao| 一区二区三区中文在线观看| 久久久精品日韩欧美| 欧美一二三四在线| 欧美老女人第四色| 欧美日精品一区视频| 欧美自拍偷拍一区| 色综合久久综合网欧美综合网| 韩国三级中文字幕hd久久精品| 三级不卡在线观看| 视频一区二区国产| 亚洲国产精品尤物yw在线观看| 亚洲乱码国产乱码精品精可以看| 中文字幕乱码日本亚洲一区二区| 精品剧情在线观看| 亚洲精品在线观| 久久综合九色综合97_久久久| 日韩免费性生活视频播放| 制服丝袜日韩国产| 日韩视频一区二区在线观看| 欧美一区国产二区| 精品国产1区2区3区| 3751色影院一区二区三区| 欧美日韩激情一区二区三区| 丁香婷婷综合激情五月色| 国产福利一区在线| 国产成人亚洲综合a∨婷婷图片| 精品无码三级在线观看视频| 精彩视频一区二区三区 | 1区2区3区国产精品| 日韩伦理免费电影| 亚洲欧美一区二区久久| 亚洲精品免费在线| 亚洲成av人综合在线观看| 亚洲国产欧美另类丝袜| 五月天精品一区二区三区| 蜜臀av亚洲一区中文字幕| 麻豆精品在线播放| 国产精品一区二区你懂的| 国产精品一二三区| 色综合天天综合网天天狠天天 | 夫妻av一区二区| 99久久精品国产一区| 在线观看视频一区| 91精品婷婷国产综合久久| 精品国产成人在线影院| 国产精品日产欧美久久久久| 一区二区免费视频| 久久99国产精品免费网站| 成人一区二区三区中文字幕| 欧洲精品在线观看| 欧美www视频| 亚洲人午夜精品天堂一二香蕉| 亚洲一本大道在线| 国产精品一二三区| 欧美性做爰猛烈叫床潮| 亚洲精品在线免费观看视频| 中文字幕一区视频| 美日韩黄色大片| 成人国产精品免费网站| 欧美日本国产视频| 欧美激情中文字幕| 天堂久久一区二区三区| 国产91精品欧美| 3d动漫精品啪啪一区二区竹菊| 久久精品夜色噜噜亚洲a∨| 亚洲国产综合91精品麻豆| 久久成人免费网站| 在线精品视频一区二区三四| 2020国产精品久久精品美国| 亚洲精品久久久蜜桃| 韩国v欧美v日本v亚洲v| 欧美综合天天夜夜久久| 国产日韩欧美高清在线| 日韩va亚洲va欧美va久久| 不卡在线观看av| 久久天堂av综合合色蜜桃网| 一区二区三区视频在线看| 国产精品白丝av| 日韩三级av在线播放| 一区二区三区丝袜| 99久久伊人网影院| 久久精品免视看| 卡一卡二国产精品| 欧美精品久久天天躁| 亚洲天堂久久久久久久| 成人性生交大片免费看在线播放| 日韩欧美视频在线| 日韩不卡免费视频| 欧美日韩久久久一区| 亚洲欧美日韩精品久久久久| 国产呦萝稀缺另类资源| 欧美成人伊人久久综合网| 日本午夜精品一区二区三区电影| 色综合天天综合色综合av | 亚州成人在线电影| 色婷婷综合久久久中文一区二区 | 日韩国产精品大片| 欧美性大战久久| 亚洲免费电影在线| 99精品在线观看视频| 国产精品美女久久久久久久| 国产九色精品成人porny | 欧美一区午夜精品| 日日欢夜夜爽一区| 欧美剧在线免费观看网站| 亚洲成人av资源| 欧美精品99久久久**| 日韩精品欧美精品| 欧美一区二区三区在线| 蜜臀av性久久久久蜜臀aⅴ| 制服丝袜日韩国产|