This source file includes following definitions.
- get_file_next_counter
- get_target_file_num
- get_target_dir_num
1 #define PARAM_FILE_COUNTER 0x34
2
3 #include "platform.h"
4
5 const ApertureSize aperture_sizes_table[] = {
6 { 9, 288, "2.8" },
7 { 10, 299, "2.8" },
8 { 11, 312, "3.2" },
9 { 12, 329, "3.2" },
10 { 13, 347, "3.5" },
11 { 14, 371, "4.0" },
12 { 15, 400, "4.0" },
13 { 16, 438, "5.0" },
14 { 17, 476, "5.6" },
15 { 18, 480, "5.6" },
16 { 19, 483, "5.6" },
17 { 20, 500, "6.3" },
18 { 21, 517, "6.3" },
19 { 22, 535, "7.1" },
20 { 23, 559, "8.0" },
21 { 24, 588, "8.0" },
22 { 25, 626, "10.0" },
23 { 26, 668, "11.0" },
24 { 27, 668, "11.0" },
25 };
26
27 const ShutterSpeed shutter_speeds_table[] = {
28 { -12, -384, "15", 15000000 },
29 { -11, -352, "13", 13000000 },
30 { -10, -320, "10", 10000000 },
31 { -9, -288, "8", 8000000 },
32 { -8, -256, "6", 6000000 },
33 { -7, -224, "5", 5000000 },
34 { -6, -192, "4", 4000000 },
35 { -5, -160, "3.2", 3200000 },
36 { -4, -128, "2.5", 2500000 },
37 { -3, -96, "2", 2000000 },
38 { -2, -64, "1.6", 1600000 },
39 { -1, -32, "1.3", 1300000 },
40 { 0, 0, "1", 1000000 },
41 { 1, 32, "0.8", 800000 },
42 { 2, 64, "0.6", 600000 },
43 { 3, 96, "0.5", 500000 },
44 { 4, 128, "0.4", 400000 },
45 { 5, 160, "0.3", 300000 },
46 { 6, 192, "1/4", 250000 },
47 { 7, 224, "1/5", 200000 },
48 { 8, 256, "1/6", 166667 },
49 { 9, 288, "1/8", 125000 },
50 { 10, 320, "1/10", 100000 },
51 { 11, 352, "1/13", 76923 },
52 { 12, 384, "1/15", 66667 },
53 { 13, 416, "1/20", 50000 },
54 { 14, 448, "1/25", 40000 },
55 { 15, 480, "1/30", 33333 },
56 { 16, 512, "1/40", 25000 },
57 { 17, 544, "1/50", 20000 },
58 { 18, 576, "1/60", 16667 },
59 { 19, 608, "1/80", 12500 },
60 { 20, 640, "1/100", 10000 },
61 { 21, 672, "1/125", 8000 },
62 { 22, 704, "1/160", 6250 },
63 { 23, 736, "1/200", 5000 },
64 { 24, 768, "1/250", 4000 },
65 { 25, 800, "1/320", 3125 },
66 { 26, 832, "1/400", 2500 },
67 { 27, 864, "1/500", 2000 },
68 { 28, 896, "1/640", 1563 },
69 { 29, 928, "1/800", 1250 },
70 { 30, 960, "1/1000", 1000 },
71 { 31, 992, "1/1250", 800 },
72 { 32, 1021, "1/1600", 625 },
73 { 33, 1053, "1/2000", 500 },
74 };
75
76 const ISOTable iso_table[] = {
77 { -1, 1, "HI", -1},
78 { 0, 0, "Auto", -1},
79 { 1, 80, "80", -1},
80 { 2, 100, "100", -1},
81 { 3, 200, "200", -1},
82 { 4, 400, "400", -1},
83 { 5, 800, "800", -1},
84 };
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99 const CapturemodeMap modemap[] = {
100 { MODE_LONG_SHUTTER, 32774 },
101 { MODE_AUTO, 32768 },
102 { MODE_P, 32772 },
103 { MODE_DIGITAL_MACRO, 33288 },
104 { MODE_VIDEO_STD, 2593 },
105
106 { MODE_VIDEO_COLOR_ACCENT, 2591 },
107 { MODE_VIDEO_COLOR_SWAP, 2592 },
108 { MODE_VIDEO_SPEED, 2594 },
109 { MODE_VIDEO_COMPACT, 2595 },
110 { MODE_STITCH, 33290 },
111 { MODE_COLOR_SWAP, 16921 },
112 { MODE_UNDERWATER, 16405 },
113 { MODE_NIGHT_SNAPSHOT, 16395 },
114 { MODE_PORTRAIT, 16397 },
115 { MODE_KIDS_PETS, 16399 },
116 { MODE_INDOOR, 16400 },
117 { MODE_FOLIAGE, 16401 },
118 { MODE_SNOW, 16402 },
119 { MODE_BEACH, 16403 },
120 { MODE_FIREWORK, 16404 },
121 { MODE_COLOR_ACCENT, 16920 }
122 };
123
124 #include "../generic/shooting.c"
125
126 long get_file_next_counter() {
127 return ((get_file_counter()>>4)+1)<<4;
128 }
129
130 long get_target_file_num() {
131 long n;
132
133 n = get_file_next_counter();
134 n = (n>>4)&0x3FFF;
135 return n;
136 }
137
138 long get_target_dir_num() {
139 long n;
140
141 n = get_file_next_counter();
142 n = (n>>18)&0x3FF;
143 return n;
144 }