root/platform/sx60hs/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 extern void _LogCameraEvent(int id, const char *fmt,...);
   9 // aperture values recorded at wide angle
  10 //sx60 checked with propcase item 26
  11 //!pt=require'extras/proptools'
  12 //con 12> !pl=pt.get(26)
  13 //con 13> !pt.print(pl)
  14 const ApertureSize aperture_sizes_table[] = {
  15     { 9, 352, "3.4" },
  16     { 10, 384, "4.0" },
  17     { 11, 416, "4.5" },
  18     { 12, 448, "5.0" },
  19     { 13, 480, "5.6" },
  20     { 14, 512, "6.3" },
  21     { 15, 544, "7.1" },
  22     { 16, 576, "8.0" }
  23 };
  24 //sx60 verified, up to 2000 propcase item #268
  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 // verified for sx60 item #152
  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 //verified for sx60 from stubs_entry.S
  86 const CapturemodeMap modemap[] = {
  87 // note canon values for P, M etc have shifted by one compared to earlier dryos revs (e.g. M = 32769)
  88 { MODE_AUTO                 ,32768 },
  89 { MODE_M                    ,32770 },
  90 { MODE_AV                   ,32771 },
  91 { MODE_TV                   ,32772 },
  92 { MODE_P                    ,32773 },
  93 { MODE_HDR                  ,8775 },
  94 { MODE_FISHEYE              ,8759 },
  95 { MODE_MINIATURE            ,8760 },
  96 { MODE_TOY_CAMERA           ,8763 },
  97 { MODE_SOFTFOCUS            ,8765 },
  98 { MODE_MONOCHROME           ,8767 },
  99 { MODE_SUPER_VIVID          ,8754 },
 100 { MODE_POSTER_EFFECT        ,8755 },
 101 { MODE_PORTRAIT             ,16406 },
 102 { MODE_LOWLIGHT             ,16429 },
 103 { MODE_FACE_SELF_TIMER      ,16948 },
 104 { MODE_SMART_SHUTTER        ,16949 }, // smile detection
 105 { MODE_WINK_SELF_TIMER      ,16950 },
 106 { MODE_NIGHT_SCENE          ,16953 }, // handheld night scene
 107 { MODE_SNOW                 ,16414 },
 108 { MODE_FIREWORK             ,16416 },
 109 { MODE_SPORTS               ,33288 },
 110 { MODE_CREATIVE_EFFECT      ,33299 }, // Creative shot, various sub modes all use same number
 111 { MODE_HYBRID_AUTO          ,33298 }, // like movie digest
 112 //{                         ,33297 }, // ??? shows something about "adding to registry", possibly face recognition related?
 113 { MODE_VIDEO_STD             ,2643 }, // standard video on dial, regardless of res or FPS
 114 { MODE_VIDEO_IFRAME_MOVIE    ,2650 },
 115 { MODE_VIDEO_M               ,2651 }, // M video
 116 //{                          ,2648 }, // Another M video?
 117 //{                         ,4173 }, // C 
 118 //{                         ,4174 }, // C
 119 };
 120 
 121 #include "../generic/shooting.c"
 122 
 123 long get_file_next_counter() {
 124     return get_file_counter();
 125 }
 126 
 127 long get_target_file_num() {
 128     return get_exposure_counter();
 129 }
 130 #if defined(CAM_DATE_FOLDER_NAMING)
 131 void get_target_dir_name(char *out)
 132 {
 133     extern void _GetImageFolder(char*,int,int,int);
 134     _GetImageFolder(out,get_file_next_counter(),CAM_DATE_FOLDER_NAMING,time(NULL));
 135 }
 136 #else
 137 long get_target_dir_num() 
 138 {
 139     return 0;
 140 }
 141 #endif

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