root/platform/sx160is/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 
   2 #define PARAM_FILE_COUNTER      0x3A
   3 
   4 #include "platform.h"
   5 
   6 //To do: I used this method, but I'm not sure: http://chdk.setepontos.com/index.php?topic=9722.msg100580#msg100580
   7 const ApertureSize aperture_sizes_table[] = {
   8     {  9, 355, "3.5" },
   9     { 10, 391, "4.0" },
  10     { 11, 430, "4.5" },
  11     { 12, 460, "5.0" },
  12     { 13, 481, "5.6" },
  13     { 14, 500, "5.9" },
  14     { 15, 512, "6.3" },
  15     { 16, 544, "7.1" },
  16     { 17, 576, "8.0" },
  17 
  18 };
  19 
  20 const ShutterSpeed shutter_speeds_table[] = {
  21     { -12, -384, "15", 15000000 },
  22     { -11, -352, "13", 13000000 },
  23     { -10, -320, "10", 10000000 },
  24     {  -9, -288, "8",   8000000 },
  25     {  -8, -256, "6",   6000000 },
  26     {  -7, -224, "5",   5000000 },
  27     {  -6, -192, "4",   4000000 },
  28     {  -5, -160, "3.2", 3200000 },
  29     {  -4, -128, "2.5", 2500000 },
  30     {  -3,  -96, "2",   2000000 },
  31     {  -2,  -64, "1.6", 1600000 },
  32     {  -1,  -32, "1.3", 1300000 },
  33     {   0,    0, "1",   1000000 },
  34     {   1,   32, "0.8",  800000 },
  35     {   2,   64, "0.6",  600000 },
  36     {   3,   96, "0.5",  500000 },
  37     {   4,  128, "0.4",  400000 },
  38     {   5,  160, "0.3",  300000 },
  39     {   6,  192, "1/4",  250000 },
  40     {   7,  224, "1/5",  200000 },
  41     {   8,  256, "1/6",  166667 },
  42     {   9,  288, "1/8",  125000 },
  43     {  10,  320, "1/10", 100000 },
  44     {  11,  352, "1/13",  76923 },
  45     {  12,  384, "1/15",  66667 },
  46     {  13,  416, "1/20",  50000 },
  47     {  14,  448, "1/25",  40000 },
  48     {  15,  480, "1/30",  33333 },
  49     {  16,  512, "1/40",  25000 },
  50     {  17,  544, "1/50",  20000 },
  51     {  18,  576, "1/60",  16667 },
  52     {  19,  608, "1/80",  12500 },
  53     {  20,  640, "1/100", 10000 },
  54     {  21,  672, "1/125",  8000 },
  55     {  22,  704, "1/160",  6250 },
  56     {  23,  736, "1/200",  5000 },
  57     {  24,  768, "1/250",  4000 },
  58     {  25,  800, "1/320",  3125 },
  59     {  26,  832, "1/400",  2500 },
  60     {  27,  864, "1/500",  2000 },
  61     {  28,  896, "1/640",  1563 },
  62     {  29,  928, "1/800",  1250 },
  63     {  30,  960, "1/1000", 1000 },
  64     {  31,  992, "1/1250",  800 },
  65     {  32, 1024, "1/1600",  625 },
  66     {  33, 1056, "1/2000",  500 },
  67     {  34, 1088, "1/2500",  400 }    
  68 };
  69 
  70 const ISOTable iso_table[] = {
  71     {  0,     0,  "Auto", -1},
  72     {  1,  100,  "100", -1},
  73     {  2,  200,  "200", -1},
  74     {  3,  400,  "400", -1},
  75     {  4,  800,  "800", -1},
  76     {  5, 1600, "1600", -1},
  77     {  6, 3200, "3200", -1},
  78 };
  79 
  80 
  81 const CapturemodeMap modemap[] = {
  82     { MODE_VIDEO_IFRAME_MOVIE,  2633  },
  83     { MODE_VIDEO_STD,           2626  },
  84     { MODE_SUPER_VIVID,         8746  },
  85     { MODE_POSTER_EFFECT,       8747  },
  86     { MODE_FISHEYE,             8751  },
  87     { MODE_MINIATURE,           8752  },
  88     { MODE_TOY_CAMERA,          8755  },
  89     { MODE_MONOCHROME,          8758  },
  90     { MODE_PORTRAIT,           16401  },
  91     { MODE_SNOW,               16409  },
  92     { MODE_FIREWORK,           16411  },
  93     { MODE_LOWLIGHT,           16421  },
  94     { MODE_FACE_SELF_TIMER,    16940  },
  95     { MODE_M,                  32769  },
  96     { MODE_TV,                 32771  },
  97     { MODE_AV,                 32770  },
  98     { MODE_P,                  32772  },
  99     { MODE_AUTO,               32768  },
 100     { MODE_DISCREET,           32821  },
 101     { MODE_LIVE,               33336  },
 102 };
 103 
 104 #include "../generic/shooting.c"
 105 
 106 long get_file_next_counter() {
 107     return get_file_counter();
 108 }
 109 
 110 long get_target_file_num() {
 111     long n;
 112 
 113     n = get_file_next_counter();
 114     n = (n>>4)&0x3FFF;
 115     return n;
 116 }
 117 
 118 
 119 #if defined(CAM_DATE_FOLDER_NAMING)
 120 // SX160 camera uses date to name directory
 121 void get_target_dir_name(char *out)
 122 {
 123     extern void _GetImageFolder(char*,int,int,int);
 124     _GetImageFolder(out,get_file_next_counter(),CAM_DATE_FOLDER_NAMING,time(NULL));
 125 }
 126 #else
 127 long get_target_dir_num() 
 128 {
 129     long n;
 130 
 131     n = get_file_next_counter();
 132     n = (n>>18)&0x3FF;
 133     return n;
 134 }
 135 #endif

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