root/platform/sx420is/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_name
  4. get_target_dir_num

   1 // TODO this holds and exposure count of some kind, but it only updates when rebooting or switching to play!
   2 #define PARAM_FILE_COUNTER      0x1
   3 
   4 #include "platform.h"
   5 
   6 //TODO
   7 const ApertureSize aperture_sizes_table[] = {
   8     { 9,  348, "3.5" },
   9     { 10, 371, "4.0" },
  10     { 11, 402, "4.5" },
  11     { 12, 435, "5.0" },
  12     { 13, 465, "5.6" },
  13     { 14, 497, "6.3" },
  14 };
  15 
  16 
  17 const ShutterSpeed shutter_speeds_table[] = {
  18     { -12, -384, "15", 15000000 },
  19     { -11, -352, "13", 13000000 },
  20     { -10, -320, "10", 10000000 },
  21     {  -9, -288, "8",   8000000 },
  22     {  -8, -256, "6",   6000000 },
  23     {  -7, -224, "5",   5000000 },
  24     {  -6, -192, "4",   4000000 },
  25     {  -5, -160, "3.2", 3200000 },
  26     {  -4, -128, "2.5", 2500000 },
  27     {  -3,  -96, "2",   2000000 },
  28     {  -2,  -64, "1.6", 1600000 },
  29     {  -1,  -32, "1.3", 1300000 },
  30     {   0,    0, "1",   1000000 },
  31     {   1,   32, "0.8",  800000 },
  32     {   2,   64, "0.6",  600000 },
  33     {   3,   96, "0.5",  500000 },
  34     {   4,  128, "0.4",  400000 },
  35     {   5,  160, "0.3",  300000 },
  36     {   6,  192, "1/4",  250000 },
  37     {   7,  224, "1/5",  200000 },
  38     {   8,  256, "1/6",  166667 },
  39     {   9,  288, "1/8",  125000 },
  40     {  10,  320, "1/10", 100000 },
  41     {  11,  352, "1/13",  76923 },
  42     {  12,  384, "1/15",  66667 },
  43     {  13,  416, "1/20",  50000 },
  44     {  14,  448, "1/25",  40000 },
  45     {  15,  480, "1/30",  33333 },
  46     {  16,  512, "1/40",  25000 },
  47     {  17,  544, "1/50",  20000 },
  48     {  18,  576, "1/60",  16667 },
  49     {  19,  608, "1/80",  12500 },
  50     {  20,  640, "1/100", 10000 },
  51     {  21,  672, "1/125",  8000 },
  52     {  22,  704, "1/160",  6250 },
  53     {  23,  736, "1/200",  5000 },
  54     {  24,  768, "1/250",  4000 },
  55     {  25,  800, "1/320",  3125 },
  56     {  26,  832, "1/400",  2500 },
  57     {  27,  864, "1/500",  2000 },
  58     {  28,  896, "1/640",  1563 },
  59     {  29,  928, "1/800",  1250 },
  60     {  30,  960, "1/1000", 1000 },
  61     {  31,  992, "1/1250",  800 },
  62     {  32, 1021, "1/1600",  625 },
  63         {  33, 1056, "1/2000",  500 },
  64         {  34, 1088, "1/2500",  400 },
  65         {  35, 1120, "1/3200",  313 },
  66         {  36, 1152, "1/4000",  250 },
  67 };
  68 
  69 const ISOTable iso_table[] = {
  70     {  0,     0,  "Auto", -1},
  71     {  1,   100,   "100", -1},
  72     {  2,   200,   "200", -1},
  73     {  3,   400,   "400", -1},
  74     {  4,   800,   "800", -1},
  75     {  5,  1600,  "1600", -1},
  76 };
  77 
  78 
  79 const CapturemodeMap modemap[] = {
  80     { MODE_AUTO,                32768 },
  81     { MODE_P,                   32773 },
  82     { MODE_LONG_SHUTTER,        32775 },    
  83     { MODE_PORTRAIT,            32790 },
  84     { MODE_FIREWORK,            32800 },    
  85     { MODE_LOWLIGHT,            32813 },
  86     { MODE_SUPER_VIVID,         33330 },
  87     { MODE_POSTER_EFFECT,       33331 },
  88     { MODE_FACE_SELF_TIMER,     33332 },
  89     { MODE_FISHEYE,             33335 },
  90     { MODE_MINIATURE,           33336 },
  91     { MODE_TOY_CAMERA,          33339 },
  92     { MODE_MONOCHROME,          33343 },
  93     { MODE_LIVE,                33345 },    
  94 };
  95 
  96 #include "../generic/shooting.c"
  97 
  98 long get_file_next_counter() {
  99     return get_file_counter();
 100 }
 101 
 102 long get_target_file_num() {
 103     return get_exposure_counter();
 104 }
 105 #if defined(CAM_DATE_FOLDER_NAMING)
 106 void get_target_dir_name(char *out)
 107 {
 108     extern void _GetImageFolder(char*,int,int,int);
 109     _GetImageFolder(out,get_file_next_counter(),CAM_DATE_FOLDER_NAMING,time(NULL));
 110 }
 111 #else
 112 long get_target_dir_num() 
 113 {
 114     return 0;
 115 }
 116 #endif

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