Changeset 1276 for trunk/platform/ixus55_sd450/shooting.c
- Timestamp:
- 08/07/11 17:56:07 (23 months ago)
- File:
-
- 1 edited
-
trunk/platform/ixus55_sd450/shooting.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/platform/ixus55_sd450/shooting.c
r860 r1276 129 129 130 130 int circle_of_confusion = 5; 131 132 133 char* shooting_get_tv_str()134 {135 short int tvv;136 long i;137 _GetPropertyCase(PROPCASE_TV, &tvv, sizeof(tvv));138 for (i=0;i<SS_SIZE;i++){139 if (shutter_speeds_table[i].prop_id >= tvv)140 return (char*)shutter_speeds_table[i].name;141 }142 return (void*)"?";143 }144 145 char* shooting_get_av_str()146 {147 short int avv;148 long i;149 _GetPropertyCase(PROPCASE_AV, &avv, sizeof(avv));150 for (i=0;i<AS_SIZE;i++){151 if (aperture_sizes_table[i].prop_id == avv)152 return (char*)aperture_sizes_table[i].name;153 }154 return (char*) "?";155 }156
Note: See TracChangeset
for help on using the changeset viewer.