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

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

?? visca_cli.c

?? visca lib, for camera control
?? C
?? 第 1 頁 / 共 5 頁
字號:
#endif#if !D30ONLY  if (strcmp(command, "set_slow_shutter_auto") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_slow_shutter_auto (&interface, &camera, boolarg)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_backlight_comp") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_backlight_comp (&interface, &camera, boolarg)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_zero_lux_shot") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_zero_lux_shot (&interface, &camera, boolarg)         != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_ir_led") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_ir_led (&interface, &camera, boolarg)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_mirror") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_mirror (&interface, &camera, boolarg)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_freeze") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_freeze (&interface, &camera, boolarg)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_display") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_display (&interface, &camera, boolarg)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_date_display") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_date_display (&interface, &camera, boolarg)!=VISCA_SUCCESS){      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_time_display") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_time_display (&interface, &camera, boolarg)!=VISCA_SUCCESS){      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_title_display") == 0) {    if ((arg1 == NULL) || (boolarg == -1)) {      return 41;    }    if (VISCA_set_title_display (&interface, &camera, boolarg)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_zoom_tele_speed") == 0) {    if ((arg1 == NULL) || (intarg1 < 2) || (intarg1 > 7)) {      return 41;    }    if (VISCA_set_zoom_tele_speed (&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_zoom_wide_speed") == 0) {    if ((arg1 == NULL) || (intarg1 < 2) || (intarg1 > 7)) {      return 41;    }    if (VISCA_set_zoom_wide_speed(&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_zoom_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1023)) {      return 41;    }    if (VISCA_set_zoom_value(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_focus_far_speed") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1023)) {      return 41;    }    if (VISCA_set_focus_far_speed(&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_focus_near_speed") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1023)) {      return 41;    }    if (VISCA_set_focus_near_speed(&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_focus_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 1000) || (intarg1 > 40959)) {      return 41;    }    if (VISCA_set_focus_value(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_focus_near_limit") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_focus_near_limit(&interface, &camera, intarg1)         != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_whitebal_mode") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 3)) {      return 41;    }    if (VISCA_set_whitebal_mode(&interface, &camera, intarg1)!=VISCA_SUCCESS){      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_rgain_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_rgain_value(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_bgain_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_bgain_value(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_shutter_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 27)) {      return 41;    }    if (VISCA_set_shutter_value(&interface, &camera, intarg1)!=VISCA_SUCCESS){      return 46;    }    return 10;  }  if (strcmp(command, "set_iris_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 17)) {      return 41;    }    if (VISCA_set_iris_value(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_gain_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 1) || (intarg1 > 7)) {      return 41;    }    if (VISCA_set_gain_value(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_bright_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_bright_value(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_aperture_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_aperture_value(&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_exp_comp_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_exp_comp_value(&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_auto_exp_mode") == 0) {    if (arg1 == NULL) {      return 41;    }        if (!((intarg1 == 0) || (intarg1 == 3) ||           (intarg1 == 10) || (intarg1 == 11) || (intarg1 == 13))) {      return 41;    }    if (VISCA_set_auto_exp_mode(&interface, &camera, intarg1)!=VISCA_SUCCESS){      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_wide_mode") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_wide_mode(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_picture_effect") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_picture_effect(&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_digital_effect") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_digital_effect(&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif#if !D30ONLY  if (strcmp(command, "set_digital_effect_level") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1)) {      return 41;    }    if (VISCA_set_digital_effect_level(&interface, &camera, intarg1)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "memory_set") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 5)) {      return 41;    }    if (VISCA_memory_set(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "memory_recall") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 5)) {      return 41;    }    if (VISCA_memory_recall(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "memory_reset") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 5)) {      return 41;    }    if (VISCA_memory_reset(&interface, &camera, intarg1)!=VISCA_SUCCESS) {      return 46;    }    return 10;  }#if !D30ONLY  if (strcmp(command, "set_zoom_and_focus_value") == 0) {    if ((arg1 == NULL) || (intarg1 < 0) || (intarg1 > 1023)) {      return 41;    }    if ((arg2 == NULL) || (intarg2 < 1000) || (intarg2 > 40959)) {      return 42;    }    if (VISCA_set_zoom_and_focus_value(&interface, &camera, intarg1, intarg2)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }#endif  if (strcmp(command, "set_pantilt_up") == 0) {    if ((arg1 == NULL) || (intarg1 < 1) || (intarg1 > 24)) {      return 41;    }    if ((arg2 == NULL) || (intarg2 < 1) || (intarg2 > 20)) {      return 42;    }    if (VISCA_set_pantilt_up(&interface, &camera, intarg1, intarg2)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_pantilt_down") == 0) {    if ((arg1 == NULL) || (intarg1 < 1) || (intarg1 > 24)) {      return 41;    }    if ((arg2 == NULL) || (intarg2 < 1) || (intarg2 > 20)) {      return 42;    }    if (VISCA_set_pantilt_down(&interface, &camera, intarg1, intarg2)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_pantilt_left") == 0) {    if ((arg1 == NULL) || (intarg1 < 1) || (intarg1 > 24)) {      return 41;    }    if ((arg2 == NULL) || (intarg2 < 1) || (intarg2 > 20)) {      return 42;    }    if (VISCA_set_pantilt_left(&interface, &camera, intarg1, intarg2)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_pantilt_right") == 0) {    if ((arg1 == NULL) || (intarg1 < 1) || (intarg1 > 24)) {      return 41;    }    if ((arg2 == NULL) || (intarg2 < 1) || (intarg2 > 20)) {      return 42;    }    if (VISCA_set_pantilt_right(&interface, &camera, intarg1, intarg2)        != VISCA_SUCCESS) {      return 46;    }    return 10;  }  if (strcmp(command, "set_pantilt_upleft") == 0) {    if ((arg1 == NULL) || (intarg1 < 1) || (intarg1 > 24)) {      return 41;    }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99天天综合性| 日韩高清不卡一区二区三区| 日韩欧美电影一区| 欧美日本在线看| 欧洲生活片亚洲生活在线观看| 91免费精品国自产拍在线不卡| 午夜欧美视频在线观看| 视频一区二区三区在线| 日本vs亚洲vs韩国一区三区二区 | 777午夜精品免费视频| 欧美日韩激情在线| 欧美一区二区三区性视频| 在线不卡的av| 精品91自产拍在线观看一区| 久久免费偷拍视频| 国产精品人妖ts系列视频| 国产精品人妖ts系列视频| 亚洲美女视频在线观看| 香蕉成人啪国产精品视频综合网 | 亚洲欧美激情插| 亚洲精品伦理在线| 免费在线观看成人| 国产91精品入口| 欧美伊人久久久久久久久影院 | 精品久久一区二区| 国产女同性恋一区二区| 亚洲精品免费看| 麻豆精品视频在线| av一区二区久久| 91精品国产一区二区三区| 26uuu色噜噜精品一区二区| 国产精品久久久久一区| 午夜精品久久久久| 国产91色综合久久免费分享| 欧美色偷偷大香| 久久精品一区四区| 亚洲综合一二区| 国产成人精品免费视频网站| 欧美性欧美巨大黑白大战| 日韩亚洲欧美高清| 亚洲乱码日产精品bd| 久久成人羞羞网站| 91一区一区三区| 日韩欧美一级精品久久| 亚洲四区在线观看| 国产在线一区二区| 欧美日韩在线三级| 精品免费99久久| 亚洲大尺度视频在线观看| 国产一区二区电影| 3d成人h动漫网站入口| 国产精品日日摸夜夜摸av| 久久精品国产一区二区三 | 日韩不卡一区二区三区| 成人h版在线观看| 精品理论电影在线| 亚洲综合久久av| 国产成人在线电影| 欧美成人激情免费网| 首页欧美精品中文字幕| 一本大道久久a久久综合婷婷| 精品噜噜噜噜久久久久久久久试看| 一区二区三区精品| 成人av先锋影音| 国产精品丝袜久久久久久app| 久久精品国产99| 日韩女同互慰一区二区| 蜜臀91精品一区二区三区 | 成人国产在线观看| 2020日本不卡一区二区视频| 蜜臀av亚洲一区中文字幕| 欧美私模裸体表演在线观看| 亚洲美女电影在线| 色诱亚洲精品久久久久久| 中文字幕一区二| 9久草视频在线视频精品| 国产精品久久综合| 成人久久18免费网站麻豆| 国产精品区一区二区三| 国产成人在线视频网站| 中文字幕av一区 二区| av综合在线播放| 亚洲黄网站在线观看| 在线影院国内精品| 同产精品九九九| 日韩一区二区高清| 久久精品国产亚洲aⅴ| 久久久精品综合| 成人午夜视频在线| 亚洲素人一区二区| 欧美日韩精品二区第二页| 看电视剧不卡顿的网站| 久久久久国产一区二区三区四区| 国产成a人亚洲精品| 亚洲欧洲制服丝袜| 欧美日韩国产成人在线免费| 青草av.久久免费一区| 久久午夜国产精品| 色综合久久久久综合体| 亚洲va韩国va欧美va| 精品日韩99亚洲| 91在线观看下载| 天堂成人免费av电影一区| 精品国产一区二区三区久久影院 | 捆绑调教美女网站视频一区| 中文文精品字幕一区二区| 欧美综合天天夜夜久久| 日本视频一区二区| 国产精品国产自产拍在线| 欧美中文字幕亚洲一区二区va在线| 免费日本视频一区| 亚洲视频在线一区二区| 欧美一区午夜视频在线观看| 国产成人一区在线| 日一区二区三区| 国产精品九色蝌蚪自拍| 日韩一区二区三区在线| 99久久er热在这里只有精品66| 亚洲一区自拍偷拍| 国产欧美日韩精品在线| 91精品国产一区二区三区香蕉| 99久久精品情趣| 久久99精品视频| 偷窥国产亚洲免费视频| 18成人在线视频| 久久久久综合网| 777午夜精品免费视频| 色噜噜狠狠成人网p站| 国产 欧美在线| 久草精品在线观看| 午夜精品爽啪视频| 亚洲精品免费在线观看| 国产欧美一区二区在线| 欧美刺激脚交jootjob| 欧美最猛黑人xxxxx猛交| 99视频一区二区三区| 国产成人在线视频网址| 国产麻豆精品在线| 蜜臀久久99精品久久久画质超高清| 亚洲一区欧美一区| 亚洲品质自拍视频| 亚洲视频在线观看三级| 中文字幕中文在线不卡住| 国产农村妇女毛片精品久久麻豆 | 蜜臀av一区二区在线免费观看| 午夜一区二区三区在线观看| 亚洲欧美日韩一区二区 | 欧美调教femdomvk| 在线看国产一区| 91黄色激情网站| 色伊人久久综合中文字幕| 色哟哟亚洲精品| 91同城在线观看| 色哟哟欧美精品| 欧美丰满少妇xxxbbb| 欧美日本免费一区二区三区| 欧美日韩视频在线一区二区| 欧美最猛黑人xxxxx猛交| 欧美日韩国产综合一区二区三区| 欧美亚洲免费在线一区| 欧美日韩国产一二三| 日韩欧美卡一卡二| 精品粉嫩超白一线天av| 国产亚洲成av人在线观看导航| 久久久久99精品国产片| 亚洲欧洲精品天堂一级| 亚洲激情欧美激情| 日韩av高清在线观看| 精品一区二区三区免费毛片爱| 国产乱码精品一区二区三| 成人黄色软件下载| 日本高清不卡视频| 91精品国产入口| 久久综合网色—综合色88| 国产精品美女久久福利网站| 亚洲欧洲综合另类在线| 天堂精品中文字幕在线| 国产一区啦啦啦在线观看| 成人av电影在线播放| 在线中文字幕一区二区| 亚洲精品一区二区三区四区高清| 久久亚洲私人国产精品va媚药| 欧美极品另类videosde| 一区二区免费看| 极品少妇xxxx偷拍精品少妇| kk眼镜猥琐国模调教系列一区二区| 欧美亚洲日本一区| 亚洲精品一区二区三区福利| 亚洲色图在线看| 美女视频黄久久| 色综合久久88色综合天天6 | www.日本不卡| 欧美丰满嫩嫩电影| 中文字幕一区二区三区色视频| 午夜精品福利久久久| 成人午夜在线播放| 日韩免费看网站| 亚洲国产美国国产综合一区二区| 国产综合久久久久影院| 91精品91久久久中77777|