root/platform/a620/shooting.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. get_file_next_counter
  2. get_target_file_num
  3. get_target_dir_num

   1 #define PARAM_FILE_COUNTER      0x2F
   2 
   3 #include "platform.h"
   4 
   5 const ApertureSize aperture_sizes_table[] = {
   6     {  9, 288, "2.8" },
   7     { 10, 320, "3.2" },
   8     { 11, 352, "3.5" },
   9     { 12, 384, "4.0" },
  10     { 13, 416, "4.5" },
  11     { 14, 448, "5.0" },
  12     { 15, 480, "5.6" },
  13     { 16, 512, "6.3" },
  14     { 17, 544, "7.1" },
  15     { 18, 576, "8.0" },
  16 //   { 19, 608, "9.0" },
  17 //    { 20, 640, "10.1"},
  18 //    { 21, 672, "11.3" },
  19 //    { 22, 704, "12.7" },
  20 //    { 23, 736, "14.3" },
  21 //    { 24, 768, "16.0" },
  22 };
  23 
  24 const ShutterSpeed shutter_speeds_table[] = {
  25     { -12, -384, "15", 15000000 },
  26     { -11, -352, "13", 13000000 },
  27     { -10, -320, "10", 10000000 },
  28     {  -9, -288, "8",   8000000 },
  29     {  -8, -256, "6",   6000000 },
  30     {  -7, -224, "5",   5000000 },
  31     {  -6, -192, "4",   4000000 },
  32     {  -5, -160, "3.2", 3200000 },
  33     {  -4, -128, "2.5", 2500000 },
  34     {  -3,  -96, "2",   2000000 },
  35     {  -2,  -64, "1.6", 1600000 },
  36     {  -1,  -32, "1.3", 1300000 },
  37     {   0,    0, "1",   1000000 },
  38     {   1,   32, "0.8",  800000 },
  39     {   2,   64, "0.6",  600000 },
  40     {   3,   96, "0.5",  500000 },
  41     {   4,  128, "0.4",  400000 },
  42     {   5,  160, "0.3",  300000 },
  43     {   6,  192, "1/4",  250000 },
  44     {   7,  224, "1/5",  200000 },
  45     {   8,  256, "1/6",  166667 },
  46     {   9,  288, "1/8",  125000 },
  47     {  10,  320, "1/10", 100000 },
  48     {  11,  352, "1/13",  76923 },
  49     {  12,  384, "1/15",  66667 },
  50     {  13,  416, "1/20",  50000 },
  51     {  14,  448, "1/25",  40000 },
  52     {  15,  480, "1/30",  33333 },
  53     {  16,  512, "1/40",  25000 },
  54     {  17,  544, "1/50",  20000 },
  55     {  18,  576, "1/60",  16667 },
  56     {  19,  608, "1/80",  12500 },
  57     {  20,  640, "1/100", 10000 },
  58     {  21,  672, "1/125",  8000 },
  59     {  22,  704, "1/160",  6250 },
  60     {  23,  736, "1/200",  5000 },
  61     {  24,  768, "1/250",  4000 },
  62     {  25,  800, "1/320",  3125 },
  63     {  26,  832, "1/400",  2500 },
  64     {  27,  864, "1/500",  2000 },
  65     {  28,  896, "1/640",  1563 },
  66     {  29,  928, "1/800",  1250 },
  67     {  30,  960, "1/1000", 1000 },
  68     {  31,  992, "1/1250",  800 },
  69     {  32, 1021, "1/1600",  625 },
  70     {  33, 1053, "1/2000",  500 },
  71     {  34, 1084, "1/2500",  400 },
  72 };
  73 
  74 const ISOTable iso_table[] = {
  75     {  0,    0, "Auto", -1},
  76     {  1,   50,   "50", -1},
  77     {  2,  100,  "100", -1},
  78     {  3,  200,  "200", -1},
  79     {  4,  400,  "400", -1},
  80 };          
  81 
  82 /*
  83 Shooting Modes
  84         Auto; Creative: P, Av, Tv, M, C; Image: Portrait, Landscape, Night Scene,
  85         Special Scene 
  86                 (Foliage, Snow, Beach, Fireworks, Underwater, Indoor, Kids & Pets, Night Snapshot)
  87         My Colors, Stitch Assist, Movie
  88 video resolutions
  89 640 x 480/320 x 240 (30 fps/15 fps), 320 x 240 (1 min. at 60 fps), 160 x 120 (3 min. at 15 fps)
  90 
  91 canon mode list @FFD4A024 in 100f
  92 */
  93 const CapturemodeMap modemap[] = {
  94     { MODE_AUTO,               6  },
  95     { MODE_P,                  1  },
  96     { MODE_TV,                 3  },
  97     { MODE_AV,                 2  },
  98     { MODE_M,                  0  },
  99     { MODE_PORTRAIT,           9  },
 100     { MODE_NIGHT_SCENE,        8  },
 101     { MODE_LANDSCAPE,          7  },
 102     { MODE_VIDEO_STD,          18 }, // note, not in canon modelist, possibly 0x10012 ?
 103     { MODE_STITCH,             5  },
 104     { MODE_MY_COLORS,          4  },
 105     { MODE_UNDERWATER,         13 },
 106     { MODE_NIGHT_SNAPSHOT,     15 },
 107     { MODE_KIDS_PETS,          16 },
 108     { MODE_INDOOR,             14 },
 109     { MODE_FOLIAGE,            10 },
 110     { MODE_SNOW,               11 },
 111     { MODE_BEACH,              12 },
 112     { MODE_FIREWORK,           17 }
 113 /*
 114 in canon mode list
 115 ROM:FFD4A06C                 DCD 0x10012
 116 ROM:FFD4A070                 DCD 0x10013
 117 ROM:FFD4A074                 DCD 0x10014
 118 ROM:FFD4A078                 DCD 0x10015
 119 ROM:FFD4A07C                 DCD 0x20016  // C ?
 120 */
 121 };
 122 
 123 #include "../generic/shooting.c"
 124 
 125 long get_file_next_counter() {
 126     return ((get_file_counter()>>4)+1)<<4;
 127 }
 128 
 129 long get_target_file_num() {
 130     long n;
 131     
 132     n = get_file_next_counter();
 133     n = (n>>4)&0x3FFF;
 134     return n;
 135 }
 136 
 137 long get_target_dir_num() {
 138     long n;
 139     
 140     n = get_file_next_counter();
 141     n = (n>>18)&0x3FF;
 142     if (get_target_file_num()%100 == 1) ++n;
 143     return n;
 144 }

/* [<][>][^][v][top][bottom][index][help] */