root/platform/ixus155_elph150/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 #include "platform.h"
   2 
   3 //To do
   4 // http://chdk.setepontos.com/index.php?topic=2031.msg27692#msg27692
   5 // PROPCASE_AV (68)
   6 const ApertureSize aperture_sizes_table[] = {
   7     {  9, 293, "2.8" },
   8     { 10, 307, "3.2" },
   9     { 11, 344, "3.5" },
  10     { 12, 388, "4.0" },
  11     { 13, 413, "4.5" },
  12     { 14, 443, "5.0" },
  13     { 15, 476, "5.6" },
  14     { 16, 500, "5.9" },
  15     { 17, 1410, "14.1" },
  16     { 18, 1600, "16.0" },
  17     { 19, 1800, "18.0" },
  18     { 20, 2000, "20.1" },
  19 };
  20 
  21 //To do
  22 const ShutterSpeed shutter_speeds_table[] = {
  23     { -12, -384, "15", 15000000 },
  24     { -11, -352, "13", 13000000 },
  25     { -10, -320, "10", 10000000 },
  26     {  -9, -288, "8",   8000000 },
  27     {  -8, -256, "6",   6000000 },
  28     {  -7, -224, "5",   5000000 },
  29     {  -6, -192, "4",   4000000 },
  30     {  -5, -160, "3.2", 3200000 },
  31     {  -4, -128, "2.5", 2500000 },
  32     {  -3,  -96, "2",   2000000 },
  33     {  -2,  -64, "1.6", 1600000 },
  34     {  -1,  -32, "1.3", 1300000 },
  35     {   0,    0, "1",   1000000 },
  36     {   1,   32, "0.8",  800000 },
  37     {   2,   64, "0.6",  600000 },
  38     {   3,   96, "0.5",  500000 },
  39     {   4,  128, "0.4",  400000 },
  40     {   5,  160, "0.3",  300000 },
  41     {   6,  192, "1/4",  250000 },
  42     {   7,  224, "1/5",  200000 },
  43     {   8,  256, "1/6",  166667 },
  44     {   9,  288, "1/8",  125000 },
  45     {  10,  320, "1/10", 100000 },
  46     {  11,  352, "1/13",  76923 },
  47     {  12,  384, "1/15",  66667 },
  48     {  13,  416, "1/20",  50000 },
  49     {  14,  448, "1/25",  40000 },
  50     {  15,  480, "1/30",  33333 },
  51     {  16,  512, "1/40",  25000 },
  52     {  17,  544, "1/50",  20000 },
  53     {  18,  576, "1/60",  16667 },
  54     {  19,  608, "1/80",  12500 },
  55     {  20,  640, "1/100", 10000 },
  56     {  21,  672, "1/125",  8000 },
  57     {  22,  704, "1/160",  6250 },
  58     {  23,  736, "1/200",  5000 },
  59     {  24,  768, "1/250",  4000 },
  60     {  25,  800, "1/320",  3125 },
  61     {  26,  832, "1/400",  2500 },
  62     {  27,  864, "1/500",  2000 },
  63     {  28,  896, "1/640",  1563 },
  64     {  29,  928, "1/800",  1250 },
  65     {  30,  960, "1/1000", 1000 },
  66     {  31,  992, "1/1250",  800 },
  67     {  32, 1024, "1/1600",  625 },
  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 };
  78 
  79 //http://chdk.setepontos.com/index.php?topic=5051.msg77808#msg77808
  80 const CapturemodeMap modemap[] = {
  81     { MODE_AUTO,                32768 },
  82     { MODE_P,                   32772 },
  83     { MODE_LONG_SHUTTER,        32774 },
  84     { MODE_PORTRAIT,            32788 },
  85     { MODE_SNOW,                32796 }, //
  86     { MODE_FIREWORK,            32798 }, //
  87     { MODE_LOWLIGHT,            32808 }, //
  88     { MODE_SUPER_VIVID,         33325 },
  89     { MODE_POSTER_EFFECT,       33326 },
  90     { MODE_FACE_SELF_TIMER,     33327 }, //
  91     { MODE_FISHEYE,             33330 },
  92     { MODE_MINIATURE,           33331 }, //
  93     { MODE_TOY_CAMERA,          33334 },
  94     { MODE_MONOCHROME,          33338 },
  95     { MODE_LIVE,                33340 },
  96 } ;
  97 
  98 #include "../generic/shooting.c"
  99 
 100 long get_file_next_counter() {
 101     return get_file_counter();
 102 }
 103 
 104 long get_target_file_num() {
 105     return get_exposure_counter();
 106 }
 107 
 108 #if defined(CAM_DATE_FOLDER_NAMING)
 109 void get_target_dir_name(char *out)
 110 {
 111     static char buf[32];
 112     extern void _GetImageFolder(char*,int,int,int);
 113     _GetImageFolder(buf,get_file_next_counter(),CAM_DATE_FOLDER_NAMING,time(NULL));
 114     strncpy(out,buf,15);
 115     out[15] = 0;
 116 }
 117 #else
 118 long get_target_dir_num()
 119 {
 120     return 0;
 121 }
 122 #endif

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