source: trunk/platform/ixus65_sd630/shooting.c @ 855

Revision 855, 5.2 KB checked in by reyalp, 3 years ago (diff)
  • attempt to fix broken mode maps in a630, a640, ixus65_sd630. Untested, but definitely closer than what was there before. checked against canon mode list and known correct cameras.
  • tweak some others: remove some invalid modes from a700, try to guess better values, add guessed MODE_MYCOLORS to ixus60_sd600, comments on g7, a540
  • Property svn:eol-style set to native
Line 
1#define PARAM_FILE_COUNTER      0x34
2
3#include "platform.h"
4
5const ApertureSize aperture_sizes_table[] = {
6    {  9, 290, "2.8" },
7    { 10, 313, "3.2" },
8    { 11, 337, "3.5" },
9    { 12, 391, "4.0" },
10    { 13, 420, "4.5" },
11    { 14, 448, "5.0" },
12    { 15, 480, "5.6" },
13    { 16, 512, "6.3" },
14    { 17, 544, "7.1" },
15    { 18, 576, "8.0" },
16    { 19, 999, "x.x" },
17};
18
19const ShutterSpeed shutter_speeds_table[] = {
20    { -12, -384, "15", 15000000 },
21    { -11, -352, "13", 13000000 },
22    { -10, -320, "10", 10000000 },
23    {  -9, -288, "8",   8000000 },
24    {  -8, -256, "6",   6000000 },
25    {  -7, -224, "5",   5000000 },
26    {  -6, -192, "4",   4000000 },
27    {  -5, -160, "3.2", 3200000 },
28    {  -4, -128, "2.5", 2500000 },
29    {  -3,  -96, "2",   2000000 },
30    {  -2,  -64, "1.6", 1600000 },
31    {  -1,  -32, "1.3", 1300000 },
32    {   0,    0, "1",   1000000 },
33    {   1,   32, "0.8",  800000 },
34    {   2,   64, "0.6",  600000 },
35    {   3,   96, "0.5",  500000 },
36    {   4,  128, "0.4",  400000 },
37    {   5,  160, "0.3",  300000 },
38    {   6,  192, "1/4",  250000 },
39    {   7,  224, "1/5",  200000 },
40    {   8,  256, "1/6",  166667 },
41    {   9,  288, "1/8",  125000 },
42    {  10,  320, "1/10", 100000 },
43    {  11,  352, "1/13",  76923 },
44    {  12,  384, "1/15",  66667 },
45    {  13,  416, "1/20",  50000 },
46    {  14,  448, "1/25",  40000 },
47    {  15,  480, "1/30",  33333 },
48    {  16,  512, "1/40",  25000 },
49    {  17,  544, "1/50",  20000 },
50    {  18,  576, "1/60",  16667 },
51    {  19,  608, "1/80",  12500 },
52    {  20,  640, "1/100", 10000 },
53    {  21,  672, "1/125",  8000 },
54    {  22,  704, "1/160",  6250 },
55    {  23,  736, "1/200",  5000 },
56    {  24,  768, "1/250",  4000 },
57    {  25,  800, "1/320",  3125 },
58    {  26,  832, "1/400",  2500 },
59    {  27,  864, "1/500",  2000 },
60    {  28,  896, "1/640",  1563 },
61    {  29,  928, "1/800",  1250 },
62    {  30,  960, "1/1000", 1000 },
63    {  31,  992, "1/1250",  800 },
64    {  32, 1021, "1/1600",  625 },
65    {  33, 1053, "1/2000",  500 },
66    {  34, 1084, "1/2500",  400 },
67};
68
69const ISOTable iso_table[] = {
70    {  0,    0, "Auto", -1},
71    {  1,   50,   "50", -1},
72    {  2,  100,  "100", -1},
73    {  3,  200,  "200", -1},
74    {  4,  400,  "400", -1},
75    {  5,  800,  "800", -1},
76};         
77
78/*
79canon modemap @FF973AD4 in 100a
80according to http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&fcategoryid=224&modelid=12956#ModelTechSpecsAct
81Shooting Modes
82    Auto, Camera M, Portrait,
83    Special Scene
84        Foliage, Snow, Beach, Fireworks, Underwater, Indoor,
85        Kids & Pets, Color Accent, Color Swap,
86    Night Snapshot, Digital Macro, My Colors, Stitch Assist, Movie
87
88Movie: 640 x 480 / 320 x 240 (30 fps/15 fps) available up to 1GB or 1 hour for each file size, 320 x 240 (1 min. at 60 fps), 160 x 120 (3 min. at 15 fps)
89*/
90/* names below mostly guessed from a540 and ixus60_sd600 */
91static const CapturemodeMap modemap[] = {
92    // common, should be OK
93    { MODE_P,                  32772 }, // may be called manual, but effectively P
94    { MODE_AUTO,               32768 },
95    { MODE_PORTRAIT,           32781 },
96    { MODE_STITCH,             33290 },
97
98    // the following match a540 and ixus60
99    { MODE_SCN_KIDS_PETS,      16399 }, // "kids and pets"
100    { MODE_SCN_INDOOR,         16400 }, // "indoor"
101    { MODE_SCN_FOLIAGE,        16401 }, // "foliage"
102    { MODE_SCN_SNOW,           16402 }, // "snow"
103    { MODE_SCN_BEACH,          16403 }, // "beach"
104    { MODE_SCN_FIREWORK,       16404 }, // "fireworks"
105    { MODE_SCN_UNDERWATER,     16405 }, // "under water"
106    { MODE_SCN_COLOR_ACCENT,   16920 }, // "color accent"
107    { MODE_SCN_COLOR_SWAP,     16921 }, // "color swap"
108
109    { MODE_DIGITAL_MACRO,      33288 }, // ixus60
110    { MODE_NIGHT_SNAPSHOT,     32779 }, // ixus60
111    { MODE_MY_COLORS,          32774 }, // by elimination: should be "my colors" ?
112
113    // match a540 and ixus60
114    { MODE_VIDEO_STD,          2593  }, //
115    { MODE_VIDEO_SPEED,        2594  }, // "fast frame rate"
116    { MODE_VIDEO_COMPACT,      2595  }, // "compact"
117    { MODE_VIDEO_COLOR_ACCENT, 2591  }, // "color accent"
118    { MODE_VIDEO_COLOR_SWAP,   2592  }, // "color swap"
119};
120
121#include "../generic/shooting.c"
122
123long get_file_next_counter() {
124    return ((get_file_counter()>>4)+1)<<4;
125}
126
127long get_target_file_num() {
128    long n;
129   
130    n = get_file_next_counter();
131    n = (n>>4)&0x3FFF;
132    return n;
133}
134
135long get_target_dir_num() {
136    long n;
137   
138    n = get_file_next_counter();
139    n = (n>>18)&0x3FF;
140    if (get_target_file_num()%100 == 1) ++n;
141    return n;
142}
143
144int circle_of_confusion = 6;
145
146void change_video_tables(int a, int b)
147{
148}
149
150char* shooting_get_tv_str()
151{
152    short int tvv;
153    long i;
154   
155    _GetPropertyCase(PROPCASE_TV, &tvv, sizeof(tvv));
156
157    for (i=0;i<SS_SIZE;i++)
158    {
159        if (shutter_speeds_table[i].prop_id >= tvv)
160          return (char*)shutter_speeds_table[i].name;
161    }
162    return (void*)"?";
163}
164
165char* shooting_get_av_str()
166{
167    short int avv;
168    long i;
169   
170    _GetPropertyCase(PROPCASE_AV, &avv, sizeof(avv));
171
172    for (i = 0; i < AS_SIZE-1; i++)
173    {
174        if (aperture_sizes_table[i].prop_id <= avv && aperture_sizes_table[i+1].prop_id > avv)
175          return (char*)aperture_sizes_table[i].name;
176    }
177    return (char*) "?";
178}
Note: See TracBrowser for help on using the repository browser.