root/platform/sx220hs/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      0x3B       //sx220 changed
   8 #define PARAM_EXPOSURE_COUNTER  0x02
   9 
  10 //No zoom 3.1 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
  11 //maz zoom 5.9 7.1 8.0
  12 
  13 const ApertureSize aperture_sizes_table[] = {
  14         {  9, 322, "3.1" },
  15     { 10, 352, "3.5" },
  16         { 11, 384, "4.0" },
  17         { 12, 416, "4.5" },
  18         { 13, 448, "5.0" },
  19         { 14, 480, "5.6" },
  20         { 15, 512, "6.3" },
  21         { 16, 544, "7.1" },
  22         { 17, 576, "8.0" }
  23 };
  24 
  25 const ShutterSpeed shutter_speeds_table[] = {
  26         { -12, -384, "15", 15000000 },
  27         { -11, -352, "13", 13000000 },
  28         { -10, -320, "10", 10000000 },
  29         {  -9, -288, "8",   8000000 },
  30         {  -8, -256, "6",   6000000 },
  31         {  -7, -224, "5",   5000000 },
  32         {  -6, -192, "4",   4000000 },
  33         {  -5, -160, "3.2", 3200000 },
  34         {  -4, -128, "2.5", 2500000 },
  35         {  -3,  -96, "2",   2000000 },
  36         {  -2,  -64, "1.6", 1600000 },
  37         {  -1,  -32, "1.3", 1300000 },
  38         {   0,    0, "1",   1000000 },
  39         {   1,   32, "0.8",  800000 },
  40         {   2,   64, "0.6",  600000 },
  41         {   3,   96, "0.5",  500000 },
  42         {   4,  128, "0.4",  400000 },
  43         {   5,  160, "0.3",  300000 },
  44         {   6,  192, "1/4",  250000 },
  45         {   7,  224, "1/5",  200000 },
  46         {   8,  256, "1/6",  166667 },
  47         {   9,  288, "1/8",  125000 },
  48         {  10,  320, "1/10", 100000 },
  49         {  11,  352, "1/13",  76923 },
  50         {  12,  384, "1/15",  66667 },
  51         {  13,  416, "1/20",  50000 },
  52         {  14,  448, "1/25",  40000 },
  53         {  15,  480, "1/30",  33333 },
  54         {  16,  512, "1/40",  25000 },
  55         {  17,  544, "1/50",  20000 },
  56         {  18,  576, "1/60",  16667 },
  57         {  19,  608, "1/80",  12500 },
  58         {  20,  640, "1/100", 10000 },
  59         {  21,  672, "1/125",  8000 },
  60         {  22,  704, "1/160",  6250 },
  61         {  23,  736, "1/200",  5000 },
  62         {  24,  768, "1/250",  4000 },
  63         {  25,  800, "1/320",  3125 },
  64         {  26,  832, "1/400",  2500 },
  65         {  27,  864, "1/500",  2000 },
  66         {  28,  896, "1/640",  1563 },
  67         {  29,  928, "1/800",  1250 },
  68         {  30,  960, "1/1000", 1000 },
  69         {  31,  992, "1/1250",  800 },
  70         {  32, 1024, "1/1600",  625 },
  71         {  33, 1056, "1/2000",  500 },
  72         {  34, 1088, "1/2500",  400 },
  73         {  35, 1120, "1/3200",  313 },
  74 };
  75 
  76 const ISOTable iso_table[] = {
  77         {  0,    0, "Auto", -1},
  78         {  1,  100,  "100", -1},
  79         {  2,  200,  "200", -1},
  80         {  3,  400,  "400", -1},
  81         {  4,  800,  "800", -1},
  82         {  5, 1600, "1600", -1},
  83         {  6, 3200, "3200", -1},
  84 };
  85 
  86 const CapturemodeMap modemap[] = {
  87         { MODE_AUTO,                    32768  },
  88         { MODE_P,                           32772  },
  89         { MODE_TV,                              32771  },
  90         { MODE_AV,                              32770  },
  91         { MODE_M,                               32769  },
  92         { MODE_EASY,                            33314  },
  93         { MODE_PORTRAIT,                        32783  },
  94         { MODE_LANDSCAPE,                       32782  },
  95         { MODE_VIDEO_SPEED,                      2626  },       //MODE_VIDEO_SUPER_SLOW_MOTION
  96         { MODE_VIDEO_STD,                        2621  },
  97         { MODE_KIDS_PETS,                       32786  },
  98         { MODE_UNDERWATER,              16409  },
  99         { MODE_LOWLIGHT,                16417  },
 100         { MODE_BEACH,                           16407  },
 101         { MODE_FOLIAGE,                         16405  },
 102         { MODE_SNOW,                            16406  },       
 103         { MODE_FIREWORK,                        16408  },       
 104         { MODE_COLOR_ACCENT,             8733  },
 105         { MODE_COLOR_SWAP,                       8734  },       
 106         { MODE_STITCH,                              16908  },   //MODE_STITCH_ASSIST
 107         { MODE_SMART_SHUTTER,           16937  },
 108         { MODE_POSTER_EFFECT,            8743  },
 109         { MODE_FISHEYE,                  8747  },
 110         { MODE_MINIATURE,                        8748  },
 111         { MODE_SUPER_VIVID,                      8742  },
 112         { MODE_NIGHT_SCENE,                     16941  },       //MODE_HANDHELD_NIGHTSCENE
 113         { MODE_VIDEO_IFRAME_MOVIE,               2628  },
 114         { MODE_VIDEO_MOVIE_DIGEST,      33333  },
 115         { MODE_HIGHSPEED_BURST,         16904  },
 116         { MODE_BEST_IMAGE,              16905  },
 117         { MODE_TOY_CAMERA,                       8751  },
 118         { MODE_MONOCHROME,                       8754  },
 119         { MODE_WINK_SELF_TIMER,                 16938  },
 120     { MODE_FACE_SELF_TIMER,             16936  },
 121 };
 122 
 123 #include "../generic/shooting.c"
 124 
 125 long get_file_next_counter() {
 126         return get_file_counter();
 127 }
 128 
 129 long get_target_file_num() {
 130         long n;
 131 
 132 
 133         n = get_file_next_counter();
 134 
 135     n = (n>>4)&0x3FFF;
 136 
 137     return n;
 138 }
 139 
 140 void get_target_dir_name(char *out)
 141 {       
 142         extern void _GetImageFolder(char*,int,int,int);
 143         _GetImageFolder(out,get_file_next_counter(),CAM_DATE_FOLDER_NAMING,time(NULL));
 144 }
 145 
 146 long get_target_dir_num() {
 147         long n;
 148 
 149         n = get_file_next_counter();
 150         n = (n>>18)&0x3FF;
 151         return n;
 152 }

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