root/platform/s5is/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      0x37
   2 #define PARAM_EXPOSURE_COUNTER  0x02
   3 
   4 // DRYOS-Notes:
   5 // propertycase
   6 //   196 - overall brightness (of viewport?)
   7 
   8 #include "platform.h"
   9 
  10 const ApertureSize aperture_sizes_table[] = {
  11         {  9, 283, "2.7" },
  12         { 10, 320, "3.2" },
  13         { 11, 352, "3.5" },
  14         { 12, 384, "4.0" },
  15         { 13, 416, "4.5" },
  16         { 14, 448, "5.0" },
  17         { 15, 480, "5.6" },
  18         { 16, 512, "6.3" },
  19         { 17, 544, "7.1" },
  20         { 18, 576, "8.0" },
  21 };
  22 
  23 const ShutterSpeed shutter_speeds_table[] = {
  24         { -12, -384, "15", 15000000 },
  25         { -11, -352, "13", 13000000 },
  26         { -10, -320, "10", 10000000 },
  27         {  -9, -288, "8",   8000000 },
  28         {  -8, -256, "6",   6000000 },
  29         {  -7, -224, "5",   5000000 },
  30         {  -6, -192, "4",   4000000 },
  31         {  -5, -160, "3.2", 3200000 },
  32         {  -4, -128, "2.5", 2500000 },
  33         {  -3,  -96, "2",   2000000 },
  34         {  -2,  -64, "1.6", 1600000 },
  35         {  -1,  -32, "1.3", 1300000 },
  36         {   0,    0, "1",   1000000 },
  37         {   1,   32, "0.8",  800000 },
  38         {   2,   64, "0.6",  600000 },
  39         {   3,   96, "0.5",  500000 },
  40         {   4,  128, "0.4",  400000 },
  41         {   5,  160, "0.3",  300000 },
  42         {   6,  192, "1/4",  250000 },
  43         {   7,  224, "1/5",  200000 },
  44         {   8,  256, "1/6",  166667 },
  45         {   9,  288, "1/8",  125000 },
  46         {  10,  320, "1/10", 100000 },
  47         {  11,  352, "1/13",  76923 },
  48         {  12,  384, "1/15",  66667 },
  49         {  13,  416, "1/20",  50000 },
  50         {  14,  448, "1/25",  40000 },
  51         {  15,  480, "1/30",  33333 },
  52         {  16,  512, "1/40",  25000 },
  53         {  17,  544, "1/50",  20000 },
  54         {  18,  576, "1/60",  16667 },
  55         {  19,  608, "1/80",  12500 },
  56         {  20,  640, "1/100", 10000 },
  57         {  21,  672, "1/125",  8000 },
  58         {  22,  704, "1/160",  6250 },
  59         {  23,  736, "1/200",  5000 },
  60         {  24,  768, "1/250",  4000 },
  61         {  25,  800, "1/320",  3125 },
  62         {  26,  832, "1/400",  2500 },
  63         {  27,  864, "1/500",  2000 },
  64         {  28,  896, "1/640",  1563 },
  65         {  29,  928, "1/800",  1250 },
  66         {  30,  960, "1/1000", 1000 },
  67         {  31,  992, "1/1250",  800 },
  68         {  32, 1021, "1/1600",  625 },
  69         {  33, 1053, "1/2000",  500 },
  70         {  34, 1084, "1/2500",  400 },
  71         {  35, 1117, "1/3200",  313 },
  72 };
  73 
  74 const ISOTable iso_table[] = {
  75         { -1,    1,   "HI", -1},
  76         {  0,    0, "Auto", -1},
  77         {  1,   80,   "80", -1},
  78         {  2,  100,  "100", -1},
  79         {  3,  200,  "200", -1},
  80         {  4,  400,  "400", -1},
  81         {  5,  800,  "800", -1},
  82         {  6, 1600, "1600", -1},
  83         {  7, 3200, "3200", -1},
  84 };          
  85 
  86 /*
  87 http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&fcategoryid=223&modelid=15207#ModelTechSpecsAct
  88 Shooting Modes
  89         Auto; Creative: P, Av, Tv, M, C; Image: Portrait, Landscape, Sports,
  90         Special Scene
  91                 (Foliage, Snow, Beach, Fireworks, Aquarium, Indoor, Night Scene, Color Accent, Color Swap),
  92         Night Snapshot, Super Macro, Stitch Assist, Movie
  93 Movie: 640 x 480 (30 fps/30 fps LP), 320 x 240 (60 fps/30 fps) available up to 4GB or 60 minutes
  94 canon mode list  in 101a
  95 */
  96 const CapturemodeMap modemap[] = {
  97         { MODE_AUTO,               32768  },
  98         { MODE_P,                  32772  },
  99         { MODE_TV,                 32771  },
 100         { MODE_AV,                 32770  },
 101         { MODE_M,                  32769  },
 102         { MODE_PORTRAIT,           32781  },
 103         { MODE_NIGHT_SNAPSHOT,     32779  },
 104         { MODE_LANDSCAPE,          32780  },
 105         { MODE_VIDEO_STD,          2594   },
 106 //      { MODE_VIDEO_RECORDING,    3618   },
 107         { MODE_STITCH,             33290  },
 108         { MODE_COLOR_SWAP,         16923  }, // was MODE_MY_COLORS
 109         { MODE_NIGHT_SCENE,        16398  },
 110         { MODE_INDOOR,             16401  },
 111         { MODE_FOLIAGE,            16402  },
 112         { MODE_SNOW,               16403  },
 113         { MODE_BEACH,              16404  },
 114         { MODE_FIREWORK,           16405  },
 115         { MODE_AQUARIUM,           16407  },
 116         { MODE_COLOR_ACCENT,       16922  },
 117         { MODE_SPORTS,             33287  }, // guessed, base on sx1/sx10
 118 //      { MODE_SUPER_MACRO,          ???  }, // not really a mode ?
 119 //      { MODE_C1,          8222  }, // guessed
 120 };
 121 
 122 #include "../generic/shooting.c"
 123 
 124 // dof_tbl copied from A720/A650, probably wrong though it doesn't look like it's used anywhere.
 125 const int dof_tbl[] = {5800, 6420, 7060, 7700, 8340, 9950, 11550, 13160, 14750, 17150, 19570, 22760, 26750, 30750, 34800};
 126 const int dof_tbl_size = sizeof(dof_tbl)/sizeof(dof_tbl[0]);
 127 
 128 long get_file_next_counter() {
 129         return get_file_counter();
 130 }
 131 
 132 long get_target_file_num() {
 133         long n;
 134         
 135         n = get_file_next_counter();
 136         n = (n>>4)&0x3FFF;
 137         return n;
 138 }
 139 
 140 long get_target_dir_num() {
 141         long n;
 142         
 143         n = get_file_next_counter();
 144         n = (n>>18)&0x3FF;
 145         return n;
 146 }

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