#define PARAM_FILE_COUNTER 0x29 // via debug parameters #include "platform.h" const ApertureSize aperture_sizes_table[] = { { 9, 294, "2.8" }, { 10, 309, "3.2" }, { 11, 328, "3.5" }, { 12, 353, "3.5" }, { 13, 385, "4.0" }, { 14, 384, "4.0" }, { 15, 416, "4.5" }, { 16, 449, "4.9" }, { 17, 545, "7.1" }, { 18, 560, "7.1" }, { 19, 579, "8.0" }, { 20, 604, "9.0" }, { 21, 636, "10" }, { 22, 667, "11" }, { 23, 700, "13" }, }; const ShutterSpeed shutter_speeds_table[] = { { -12, -384, "15", 15000000 }, { -11, -352, "13", 13000000 }, { -10, -320, "10", 10000000 }, { -9, -288, "8", 8000000 }, { -8, -256, "6", 6000000 }, { -7, -224, "5", 5000000 }, { -6, -192, "4", 4000000 }, { -5, -160, "3.2", 3200000 }, { -4, -128, "2.5", 2500000 }, { -3, -96, "2", 2000000 }, { -2, -64, "1.6", 1600000 }, { -1, -32, "1.3", 1300000 }, { 0, 0, "1", 1000000 }, { 1, 32, "0.8", 800000 }, { 2, 64, "0.6", 600000 }, { 3, 96, "0.5", 500000 }, { 4, 128, "0.4", 400000 }, { 5, 160, "0.3", 300000 }, { 6, 192, "1/4", 250000 }, { 7, 224, "1/5", 200000 }, { 8, 256, "1/6", 166667 }, { 9, 288, "1/8", 125000 }, { 10, 320, "1/10", 100000 }, { 11, 352, "1/13", 76923 }, { 12, 384, "1/15", 66667 }, { 13, 416, "1/20", 50000 }, { 14, 448, "1/25", 40000 }, { 15, 480, "1/30", 33333 }, { 16, 512, "1/40", 25000 }, { 17, 544, "1/50", 20000 }, { 18, 576, "1/60", 16667 }, { 19, 608, "1/80", 12500 }, { 20, 640, "1/100", 10000 }, { 21, 672, "1/125", 8000 }, { 22, 704, "1/160", 6250 }, { 23, 736, "1/200", 5000 }, { 24, 768, "1/250", 4000 }, { 25, 800, "1/320", 3125 }, { 26, 832, "1/400", 2500 }, { 27, 864, "1/500", 2000 }, { 28, 896, "1/640", 1563 }, { 29, 928, "1/800", 1250 }, { 30, 960, "1/1000", 1000 }, { 31, 992, "1/1250", 800 }, { 32, 1021, "1/1600", 625 }, { 33, 1053, "1/2000", 500 }, { 34, 1084, "1/2500", 400 }, { 35, 1117, "1/3200", 313 }, }; const ISOTable iso_table[] = { { 0, 0, "Auto", -1}, { 1, 50, "50", -1}, { 2, 100, "100", -1}, { 3, 200, "200", -1}, { 4, 400, "400", -1}, }; /* http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&fcategoryid=224&modelid=11158#ModelTechSpecsAct Shooting Modes Still Images: Auto, Manual, Scene Modes (Digital Macro, Portrait, Night Snapshot, Kids & Pets, Indoor, Underwater), My Colors, Stitch Assist; Movies: Standard, Fast Frame Rate, Compact, My Colors. Movie resolutions: 640x480, 320x240, 160x120 canon modelist @FF972440 in 101a */ static const CapturemodeMap modemap[] = { { MODE_SCN_DIGITAL_MACRO, 0 }, { MODE_P, 1 }, { MODE_LONG_SHUTTER, 2 }, { MODE_AUTO, 3 }, { MODE_MY_COLORS, 4 }, { MODE_SCN_PORTRAIT, 5 }, { MODE_SCN_UNDERWATER, 6 }, { MODE_SCN_INDOOR, 7 }, { MODE_SCN_KIDS_PETS, 8 }, { MODE_SCN_NIGHT_SNAPSHOT, 9 }, { MODE_STITCH, 10 }, { MODE_VIDEO_STD, 11 } }; #include "../generic/shooting.c" long get_file_next_counter() { return ((get_file_counter()>>4)+1)<<4; //return (get_file_counter()+1); } long get_target_file_num() { long n; n = get_file_next_counter(); n = (n>>4)&0x3FFF; return n; } long get_target_dir_num() { long n; n = get_file_next_counter(); n = (n>>18)&0x3FF; return n; } int circle_of_confusion = 5;