Changeset 993 for trunk/include/conf.h
- Timestamp:
- 12/02/10 00:29:46 (2 years ago)
- File:
-
- 1 edited
-
trunk/include/conf.h (modified) (17 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/conf.h
r986 r993 24 24 int raw_prefix; 25 25 int raw_ext; 26 int raw_save_first_only; //for series shooting26 int raw_save_first_only; //for series shooting 27 27 int raw_nr; 28 int sub_batch_prefix; // output of batch subtracts28 int sub_batch_prefix; // output of batch subtracts 29 29 int sub_batch_ext; 30 int sub_in_dark_value; // values <= to this are not subtracted, i.e. the dark value of your darkframe31 int sub_out_dark_value; // minimum value to output from subtract, i.e. dark value of your final image30 int sub_in_dark_value; // values <= to this are not subtracted, i.e. the dark value of your darkframe 31 int sub_out_dark_value; // minimum value to output from subtract, i.e. dark value of your final image 32 32 int raw_cache; 33 33 int dng_raw; … … 69 69 int show_movie_refresh; 70 70 71 72 71 int zoom_value; 73 72 … … 113 112 114 113 color histo_color; 115 color histo_color2; // markers/border114 color histo_color2; // markers/border 116 115 color osd_color; 117 116 color osd_color_warn; … … 126 125 int menu_symbol_enable; 127 126 color reader_color; 128 color zebra_color; // under/over127 color zebra_color; // under/over 129 128 color grid_color; 130 129 color osd_color_override; … … 157 156 158 157 int use_zoom_mf; 159 long alt_mode_button; //for S-series158 long alt_mode_button; // for S-series 160 159 int alt_prevent_shutdown; 161 160 … … 167 166 int video_quality; 168 167 int video_bitrate; 169 168 170 169 int tv_bracket_value; 171 170 int av_bracket_value; … … 181 180 int override_disable_all; 182 181 183 184 182 int tv_override_value; 185 183 int tv_override_koef; 186 184 int tv_enum_type; 187 185 int av_override_value; 188 186 189 187 int nd_filter_state; 190 188 191 189 int iso_override_value; 192 190 int iso_override_koef; … … 197 195 int clear_override; 198 196 int clear_zoom_override; 199 197 200 198 int autoiso_enable; 201 199 int autoiso_shutter; … … 219 217 int dof_depth_in_misc; 220 218 int dof_dist_from_lens; 221 222 219 223 220 int values_show_in_review; 224 221 int values_show_zoom; 225 int values_show_real_aperture; 222 int values_show_real_aperture; 226 223 int values_show_real_iso; 227 224 int values_show_market_iso; … … 238 235 int debug_display; // 0=none, 1=props, 2=flash param, 3=tasks 239 236 int debug_propcase_page; // save propcase page 240 int debug_lua_restart_on_error;// 0=no, 1=yes241 int debug_misc_vals_show;// 0=no, 1=yes242 243 int script_startup; // remote autostart244 int remote_enable; // remote enable237 int debug_lua_restart_on_error; // 0=no, 1=yes 238 int debug_misc_vals_show; // 0=no, 1=yes 239 240 int script_startup; // remote autostart 241 int remote_enable; // remote enable 245 242 int user_menu_enable; 246 243 int user_menu_vars[USER_MENU_ITEMS]; … … 258 255 int edge_overlay_filter; 259 256 int edge_overlay_thresh; 260 int edge_overlay_zoom; // shall zoom be set when *edg file is loaded?261 int edge_overlay_pano; // whether a full press changes back to live mode262 int edge_overlay_pano_overlap; // overlap in % in pano mode263 int edge_overlay_show; // whether to show overlay even when no button is pressed264 int edge_overlay_play; // whether edge overlay is switched on also for play mode257 int edge_overlay_zoom; // shall zoom be set when *edg file is loaded? 258 int edge_overlay_pano; // whether a full press changes back to live mode 259 int edge_overlay_pano_overlap; // overlap in % in pano mode 260 int edge_overlay_show; // whether to show overlay even when no button is pressed 261 int edge_overlay_play; // whether edge overlay is switched on also for play mode 265 262 color edge_overlay_color; 266 263 … … 275 272 int script_param_set; 276 273 int script_param_save; 277 274 278 275 long mem_view_addr_init; 279 276 int flash_sync_curtain; … … 288 285 #define ALT_PREVENT_SHUTDOWN_ALT 1 289 286 #define ALT_PREVENT_SHUTDOWN_ALT_SCRIPT 2 290 #define ALT_PREVENT_SHUTDOWN_ALWAYS 3287 #define ALT_PREVENT_SHUTDOWN_ALWAYS 3 291 288 292 289 #define SHOOTING_PROGRESS_NONE 0 … … 296 293 297 294 // video quality defaults. Ideally, these should match the camera default settings 298 #define VIDEO_DEFAULT_QUALITY 84 // ? where does 84 come from295 #define VIDEO_DEFAULT_QUALITY 84 // ? where does 84 come from 299 296 #define VIDEO_MAX_QUALITY 99 300 #define VIDEO_DEFAULT_BITRATE 3 // should be 1 for all cams297 #define VIDEO_DEFAULT_BITRATE 3 // should be 1 for all cams 301 298 302 299 extern int state_kbd_script_run; … … 307 304 extern int state_expos_over; 308 305 309 extern void script_autostart(); // remote autostart306 extern void script_autostart(); // remote autostart 310 307 extern void conf_save(); 311 308 extern void conf_restore(); … … 317 314 // reyalp: putting these in conf, since the conf values are lookups for them 318 315 // prefixes and extentions available for raw images (index with conf.raw_prefix etc) 319 #define NUM_IMG_PREFIXES 3 // IMG_ CRW_ SND_ (could add ETC_ SDR_ AUT_ MVI_ MRK_)320 #define NUM_IMG_EXTS 5 // .JPG .CRW .CR2 .THM .WAV (could add .AVI .MRK)316 #define NUM_IMG_PREFIXES 3 // IMG_ CRW_ SND_ (could add ETC_ SDR_ AUT_ MVI_ MRK_) 317 #define NUM_IMG_EXTS 5 // .JPG .CRW .CR2 .THM .WAV (could add .AVI .MRK) 321 318 extern const char* img_prefixes[NUM_IMG_PREFIXES]; 322 319 extern const char* img_exts[NUM_IMG_EXTS]; … … 324 321 #define VIDEO_BITRATE_STEPS 10 325 322 extern const char *video_bitrate_strings[VIDEO_BITRATE_STEPS]; 323 326 324 #endif
Note: See TracChangeset
for help on using the changeset viewer.