tv96 28 core/gui_osd.c short tv96; tv96 75 core/gui_osd.c expo.tv96=shooting_get_tv96(); tv96 81 core/gui_osd.c expo.ev96_seted=expo.tv96+expo.av96; //Tv96+Av96 tv96 43 core/shooting.c short tv96; tv96 622 core/shooting.c float shooting_get_shutter_speed_from_tv96(short tv96) tv96 624 core/shooting.c return pow(2,((float)(-tv96))/96.0); tv96 649 core/shooting.c static int find_nearest_shutter_speed_entry(short tv96) tv96 651 core/shooting.c if (tv96 <= shutter_speeds_table[0].prop_id) tv96 657 core/shooting.c if ((tv96 > shutter_speeds_table[i].prop_id) && (tv96 <= shutter_speeds_table[i+1].prop_id)) tv96 659 core/shooting.c if ((tv96 - shutter_speeds_table[i].prop_id) < (shutter_speeds_table[i+1].prop_id - tv96)) tv96 670 core/shooting.c static short find_canon_shutter_speed(short tv96) tv96 672 core/shooting.c return shutter_speeds_table[find_nearest_shutter_speed_entry(tv96)].prop_id; tv96 675 core/shooting.c void shooting_set_tv96_direct(short tv96, short is_now) tv96 681 core/shooting.c set_property_case(PROPCASE_TV, &tv96, sizeof(tv96)); tv96 683 core/shooting.c set_property_case(PROPCASE_TV2, &tv96, sizeof(tv96)); // Save override to property that will update JPEG header & Canon OSD tv96 687 core/shooting.c photo_param_put_off.tv96 = tv96; tv96 691 core/shooting.c void shooting_set_tv96(short tv96, short is_now) tv96 694 core/shooting.c shooting_set_tv96_direct(find_canon_shutter_speed(tv96), is_now); tv96 751 core/shooting.c void shooting_set_user_tv96(short tv96) tv96 756 core/shooting.c tv96 = find_canon_shutter_speed(tv96); tv96 757 core/shooting.c set_property_case(PROPCASE_USER_TV, &tv96, sizeof(tv96)); tv96 760 core/shooting.c (void)tv96; tv96 1040 core/shooting.c photo_param_put_off.tv96 = PHOTO_PARAM_TV_NONE; tv96 1521 core/shooting.c bracketing.tv96 = shooting_get_tv96_override_value(); tv96 1527 core/shooting.c bracketing.tv96=shooting_get_tv96(); tv96 1529 core/shooting.c bracketing.tv96=shooting_get_user_tv96(); tv96 1537 core/shooting.c short value = bracketing.tv96 - (bracketing.dtv96 * bracket_steps[conf.bracket_type][bracketing.shoot_counter&1]); tv96 1626 core/shooting.c photo_param_put_off.tv96=PHOTO_PARAM_TV_NONE; tv96 1660 core/shooting.c if ( photo_param_put_off.tv96 != PHOTO_PARAM_TV_NONE || photo_param_put_off.sv96 ) tv96 1914 core/shooting.c if (((camera_info.state.state_kbd_script_run) || (usb_remote_active)) && (photo_param_put_off.tv96 != PHOTO_PARAM_TV_NONE)) tv96 1916 core/shooting.c shooting_set_tv96_direct(photo_param_put_off.tv96, SET_NOW); tv96 1917 core/shooting.c photo_param_put_off.tv96=PHOTO_PARAM_TV_NONE; tv96 47 include/shooting.h short tv96; tv96 75 include/shooting.h extern void shooting_set_tv96(short tv96, short is_now); tv96 76 include/shooting.h extern void shooting_set_tv96_direct(short tv96, short is_now); tv96 78 include/shooting.h extern void shooting_set_user_tv96(short tv96); tv96 79 include/shooting.h extern float shooting_get_shutter_speed_from_tv96(short tv96); tv96 670 tools/ubasic_test/camera_functions.c float shooting_get_shutter_speed_from_tv96(short tv96) tv96 672 tools/ubasic_test/camera_functions.c printf("*** shooting_get_shutter_speed_from_tv96 %d ***\n",tv96); tv96 673 tools/ubasic_test/camera_functions.c return pow(2,((float)(-tv96))/96.0);