root/platform/g7x/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 "lolevel.h"
   2 #include "platform.h"
   3 #include "core.h"
   4 #include "conf.h"
   5 #include "keyboard.h"
   6 
   7 #define PARAM_FILE_COUNTER      0x1        // see comments in ixus140 port
   8 
   9 // aperture values recorded at wide angle
  10 const ApertureSize aperture_sizes_table[] = {
  11     { 9,  171, "1.8" },
  12     { 10, 192, "2.0" },
  13     { 11, 224, "2.2" },
  14     { 12, 256, "2.5" },
  15     { 13, 288, "2.8" },
  16     { 14, 320, "3.2" },
  17     { 15, 352, "3.5" },
  18     { 16, 369, "4.0" },
  19     { 17, 401, "4.5" },
  20     { 18, 433, "5.0" },
  21     { 19, 465, "5.6" },
  22     { 20, 497, "6.3" },
  23     { 21, 529, "7.1" },
  24     { 22, 561, "8.0" },
  25     { 23, 593, "9.0" },
  26     { 24, 625, "10.0" },
  27     { 25, 657, "11.0" },
  28 };
  29 
  30 // note camera supports up to 250s shutter
  31 const ShutterSpeed shutter_speeds_table[] = {
  32     { -24, -768, "250", 250000000 },
  33     { -23, -736, "200", 200000000 },
  34     { -22, -704, "160", 160000000 },
  35     { -21, -672, "125", 125000000 },
  36     { -20, -640, "100", 100000000 },
  37     { -19, -608, "80",   80000000 },
  38     { -18, -576, "60",   60000000 },
  39     { -17, -544, "50",   50000000 },
  40     { -16, -512, "40",   40000000 },
  41     { -15, -480, "30",   30000000 },
  42     { -14, -448, "25",   25000000 },
  43     { -13, -416, "20",   20000000 },
  44     { -12, -384, "15",   15000000 },
  45     { -11, -352, "13",   13000000 },
  46     { -10, -320, "10",   10000000 },
  47     {  -9, -288, "8",     8000000 },
  48     {  -8, -256, "6",     6000000 },
  49     {  -7, -224, "5",     5000000 },
  50     {  -6, -192, "4",     4000000 },
  51     {  -5, -160, "3.2",   3200000 },
  52     {  -4, -128, "2.5",   2500000 },
  53     {  -3,  -96, "2",     2000000 },
  54     {  -2,  -64, "1.6",   1600000 },
  55     {  -1,  -32, "1.3",   1300000 },
  56     {   0,    0, "1",     1000000 },
  57     {   1,   32, "0.8",    800000 },
  58     {   2,   64, "0.6",    600000 },
  59     {   3,   96, "0.5",    500000 },
  60     {   4,  128, "0.4",    400000 },
  61     {   5,  160, "0.3",    300000 },
  62     {   6,  192, "1/4",    250000 },
  63     {   7,  224, "1/5",    200000 },
  64     {   8,  256, "1/6",    166667 },
  65     {   9,  288, "1/8",    125000 },
  66     {  10,  320, "1/10",   100000 },
  67     {  11,  352, "1/13",    76923 },
  68     {  12,  384, "1/15",    66667 },
  69     {  13,  416, "1/20",    50000 },
  70     {  14,  448, "1/25",    40000 },
  71     {  15,  480, "1/30",    33333 },
  72     {  16,  512, "1/40",    25000 },
  73     {  17,  544, "1/50",    20000 },
  74     {  18,  576, "1/60",    16667 },
  75     {  19,  608, "1/80",    12500 },
  76     {  20,  640, "1/100",   10000 },
  77     {  21,  672, "1/125",    8000 },
  78     {  22,  704, "1/160",    6250 },
  79     {  23,  736, "1/200",    5000 },
  80     {  24,  768, "1/250",    4000 },
  81     {  25,  800, "1/320",    3125 },
  82     {  26,  832, "1/400",    2500 },
  83     {  27,  864, "1/500",    2000 },
  84     {  28,  896, "1/640",    1563 },
  85     {  29,  928, "1/800",    1250 },
  86     {  30,  960, "1/1000",   1000 },
  87     {  31,  992, "1/1250",    800 },
  88     {  32, 1024, "1/1600",    625 },
  89     {  33, 1056, "1/2000",    500 },
  90 };
  91 
  92 const ISOTable iso_table[] = {
  93         {  0,    0, " Auto", -1},
  94         {  1,  125,   "125", -1},
  95         {  2,  160,   "160", -1},
  96         {  3,  200,   "200", -1},
  97         {  4,  250,   "250", -1},
  98         {  5,  320,   "320", -1},
  99         {  6,  400,   "400", -1},
 100         {  7,  500,   "500", -1},
 101         {  8,  640,   "640", -1},
 102         {  9,  800,   "800", -1},
 103         { 10, 1000,  "1000", -1},
 104         { 11, 1250,  "1250", -1},
 105         { 12, 1600,  "1600", -1},
 106         { 13, 2000,  "2000", -1},
 107         { 14, 2500,  "2500", -1},
 108         { 15, 3200,  "3200", -1},
 109         { 16, 4000,  "4000", -1},
 110         { 17, 5000,  "5000", -1},
 111         { 18, 6400,  "6400", -1},
 112         { 19, 8000,  "8000", -1},
 113         { 20,10000, "10000", -1},
 114         { 21,12800, "12800", -1},
 115 };
 116 
 117 const CapturemodeMap modemap[] = {
 118 // note canon values for P, M etc have shifted by one 
 119 { MODE_AUTO                 ,32768 },
 120 { MODE_M                    ,32770 },
 121 { MODE_AV                   ,32771 },
 122 { MODE_TV                   ,32772 },
 123 { MODE_P                    ,32773 },
 124 { MODE_HDR | MODE_DISABLE_RAW ,8775 },
 125 { MODE_NOSTALGIC            ,8753 },
 126 { MODE_FISHEYE              ,8759 },
 127 { MODE_MINIATURE            ,8760 },
 128 { MODE_TOY_CAMERA           ,8763 },
 129 { MODE_BACKGROUND_DEFOCUS   ,8764 },
 130 { MODE_SOFTFOCUS            ,8765 },
 131 { MODE_MONOCHROME           ,8767 },
 132 { MODE_SUPER_VIVID          ,8754 },
 133 { MODE_POSTER_EFFECT        ,8755 },
 134 { MODE_PORTRAIT             ,16406 },
 135 { MODE_FACE_SELF_TIMER      ,16948 },
 136 { MODE_SMART_SHUTTER        ,16949 }, // smile detection
 137 { MODE_WINK_SELF_TIMER      ,16950 },
 138 { MODE_STAR_PORTRAIT        ,16452 },
 139 { MODE_STAR_NIGHTSCAPE      ,16453 },
 140 { MODE_STAR_TRAILS          ,16454 },
 141 { MODE_NIGHT_SCENE | MODE_DISABLE_RAW ,16953 }, // handheld night scene
 142 { MODE_UNDERWATER           ,16929 },
 143 { MODE_SNOW                 ,16414 },
 144 { MODE_FIREWORK             ,16416 },
 145 { MODE_CREATIVE_EFFECT      ,33299 }, // Creative shot, various sub modes all use same number
 146 { MODE_HYBRID_AUTO | MODE_DISABLE_RAW ,33298 }, // like movie digest. RAW in hybrid auto actually works if you enable "unsafe IO", otherwise hangs
 147 //{                         ,33297 }, // ???
 148 { MODE_VIDEO_STD             ,2643 }, // standard video on dial, regardless of res or FPS
 149 { MODE_VIDEO_IFRAME_MOVIE    ,2650 },
 150 { MODE_VIDEO_M               ,2651 }, // M video
 151 { MODE_VIDEO_STAR_TIME_LAPSE,16459 }, // VIDEO?
 152 //{                         ,4172 }, // C, in propcase 54
 153 };
 154 
 155 #include "../generic/shooting.c"
 156 
 157 long get_file_next_counter() {
 158     return get_file_counter();
 159 }
 160 
 161 long get_target_file_num() {
 162     return get_exposure_counter();
 163 }
 164 /*
 165 CAM_DATE_FOLDER_NAMING values
 166 0x000   A/DCIM/1nn___nn/MRK_nnnn.MRK
 167 0x001   A/DCIM/1nn___nn/ETC_nnnn.TMP
 168 0x002   A/DCIM/1nn___nn/IMG_nnnn.JPG
 169 0x004   A/DCIM/1nn___nn/MVI_nnnn.THM
 170 0x008   A/DCIM/1nn___nn/SND_nnnn.WAV
 171 0x010   A/DCIM/1nn___nn/IMG_nnnn.CR2
 172 0x020   A/DCIM/1nn___nn/MVI_nnnn.MOV
 173 0x040   A/DCIM/1nn___nn/MVI_nnnn.MP4
 174 0x080   A/DCIM/1nn___nn
 175 0x100   A/DCIM/1nn___nn/ETC_nnnn.TMP
 176 larger values and multiple bits also seem to be ETC_nnnn.TMP
 177 */
 178 #if defined(CAM_DATE_FOLDER_NAMING)
 179 void get_target_dir_name(char *out)
 180 {
 181     extern void _GetImageFolder(char*,int,int,int);
 182     _GetImageFolder(out,get_file_next_counter(),CAM_DATE_FOLDER_NAMING,time(NULL));
 183 }
 184 #else
 185 long get_target_dir_num() 
 186 {
 187     return 0;
 188 }
 189 #endif

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