Ignore:
Timestamp:
08/12/08 12:52:17 (5 years ago)
Author:
phyrephox
Message:

+ added taskviewer by reyalp http://chdk.setepontos.com/index.php/topic,2110.msg19622.html#msg19622
+ added Fishpeppers Boot Logo from here: http://chdk.setepontos.com/index.php/topic,2122.0.html
+ raw subtract for filebrowser by reyalp - http://chdk.setepontos.com/index.php/topic,2099.msg19362.html#msg19362

  • makefile changes:

added several docs in the /docs dir, these are "catted" together during compilation -> one big readme file's gonna be put into the zip. Also includes camera specific notes, if existing (placeholders for now) (thx for helping with this, Hacki).

  • Ixus 860is / SD870 - fixed ubasic_set_led (diff provided by FE50)
  • patched symboldmod and changed splashscreen a little (diff sent in by CHDKLover)
  • added toggle in scripts menu: now the saving of script params can be turned on/off (default: off)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/juciphox/include/conf.h

    r473 r479  
    2424    int raw_save_first_only; //for series shooting 
    2525    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 
    2630 
    2731    int show_osd; 
     
    216220    int values_show_luminance; 
    217221 
    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 
    219225    int script_startup;                 // remote autostart 
    220226    int remote_enable;                  // remote enable 
     
    244250 
    245251    int script_param_set; 
     252    int script_param_save; 
    246253     
    247254    long mem_view_addr_init; 
     
    258265#define SHOOTING_PROGRESS_PROCESSING    2 
    259266#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 
    260272 
    261273extern int state_kbd_script_run; 
     
    277289extern int shutter_int; 
    278290 
     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) 
     295extern const char* img_prefixes[NUM_IMG_PREFIXES]; 
     296extern const char* img_exts[NUM_IMG_EXTS]; 
     297// ugh, but various things need it 
     298#define VIDEO_BITRATE_STEPS 10 
     299extern const char *video_bitrate_strings[VIDEO_BITRATE_STEPS]; 
    279300#endif 
Note: See TracChangeset for help on using the changeset viewer.