Changeset 479 for branches/juciphox/include/conf.h
- Timestamp:
- 08/12/08 12:52:17 (5 years ago)
- File:
-
- 1 edited
-
branches/juciphox/include/conf.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/juciphox/include/conf.h
r473 r479 24 24 int raw_save_first_only; //for series shooting 25 25 int raw_nr; 26 int sub_batch_prefix; // output of batch subtracts 27 int sub_batch_ext; 28 int sub_in_dark_value; // values <= to this are not subtracted, i.e. the dark value of your darkframe 29 int sub_out_dark_value; // minimum value to output from subtract, i.e. dark value of your final image 26 30 27 31 int show_osd; … … 216 220 int values_show_luminance; 217 221 218 int ns_enable_memdump; 222 int debug_shortcut_action; // 0=none, 1=dump, 2=page display 223 int debug_display; // 0=none, 1=props, 2=flash param, 3=tasks 224 219 225 int script_startup; // remote autostart 220 226 int remote_enable; // remote enable … … 244 250 245 251 int script_param_set; 252 int script_param_save; 246 253 247 254 long mem_view_addr_init; … … 258 265 #define SHOOTING_PROGRESS_PROCESSING 2 259 266 #define SHOOTING_PROGRESS_DONE 3 267 268 // video quality defaults. Ideally, these should match the camera default settings 269 #define VIDEO_DEFAULT_QUALITY 84 // ? where does 84 come from 270 #define VIDEO_MAX_QUALITY 99 271 #define VIDEO_DEFAULT_BITRATE 3 // should be 1 for all cams 260 272 261 273 extern int state_kbd_script_run; … … 277 289 extern int shutter_int; 278 290 291 // reyalp: putting these in conf, since the conf values are lookups for them 292 // prefixes and extentions available for raw images (index with conf.raw_prefix etc) 293 #define NUM_IMG_PREFIXES 3 // IMG_ CRW_ SND_ (could add ETC_ SDR_ AUT_ MVI_ MRK_) 294 #define NUM_IMG_EXTS 5 // .JPG .CRW .CR2 .THM .WAV (could add .AVI .MRK) 295 extern const char* img_prefixes[NUM_IMG_PREFIXES]; 296 extern const char* img_exts[NUM_IMG_EXTS]; 297 // ugh, but various things need it 298 #define VIDEO_BITRATE_STEPS 10 299 extern const char *video_bitrate_strings[VIDEO_BITRATE_STEPS]; 279 300 #endif
Note: See TracChangeset
for help on using the changeset viewer.