This source file includes following definitions.
- get_file_next_counter
- get_target_file_num
- get_target_dir_name
- get_target_dir_num
1
2
3 #include "platform.h"
4
5
6
7 const ApertureSize aperture_sizes_table[] = {
8 { 9, 352, "3.5" },
9 { 10, 384, "4.0" },
10 { 11, 416, "4.5" },
11 { 12, 448, "5.0" },
12 { 13, 480, "5.6" },
13 { 14, 512, "6.3" },
14 { 15, 544, "7.1" },
15 { 16, 576, "8.0" }
16 };
17
18 const ShutterSpeed shutter_speeds_table[] = {
19 { -12, -384, "15", 15000000 },
20 { -11, -352, "13", 13000000 },
21 { -10, -320, "10", 10000000 },
22 { -9, -288, "8", 8000000 },
23 { -8, -256, "6", 6000000 },
24 { -7, -224, "5", 5000000 },
25 { -6, -192, "4", 4000000 },
26 { -5, -160, "3.2", 3200000 },
27 { -4, -128, "2.5", 2500000 },
28 { -3, -96, "2", 2000000 },
29 { -2, -64, "1.6", 1600000 },
30 { -1, -32, "1.3", 1300000 },
31 { 0, 0, "1", 1000000 },
32 { 1, 32, "0.8", 800000 },
33 { 2, 64, "0.6", 600000 },
34 { 3, 96, "0.5", 500000 },
35 { 4, 128, "0.4", 400000 },
36 { 5, 160, "0.3", 300000 },
37 { 6, 192, "1/4", 250000 },
38 { 7, 224, "1/5", 200000 },
39 { 8, 256, "1/6", 166667 },
40 { 9, 288, "1/8", 125000 },
41 { 10, 320, "1/10", 100000 },
42 { 11, 352, "1/13", 76923 },
43 { 12, 384, "1/15", 66667 },
44 { 13, 416, "1/20", 50000 },
45 { 14, 448, "1/25", 40000 },
46 { 15, 480, "1/30", 33333 },
47 { 16, 512, "1/40", 25000 },
48 { 17, 544, "1/50", 20000 },
49 { 18, 576, "1/60", 16667 },
50 { 19, 608, "1/80", 12500 },
51 { 20, 640, "1/100", 10000 },
52 { 21, 672, "1/125", 8000 },
53 { 22, 704, "1/160", 6250 },
54 { 23, 736, "1/200", 5000 },
55 { 24, 768, "1/250", 4000 },
56 { 25, 800, "1/320", 3125 },
57 { 26, 832, "1/400", 2500 },
58 { 27, 864, "1/500", 2000 },
59 { 28, 896, "1/640", 1563 },
60 { 29, 928, "1/800", 1250 },
61 { 30, 960, "1/1000", 1000 },
62 { 31, 992, "1/1250", 800 },
63 { 32, 1024, "1/1600", 625 },
64 { 33, 1056, "1/2000", 500 },
65 { 34, 1088, "1/2500", 400 },
66 { 35, 1120, "1/3200", 313 },
67 };
68
69 const ISOTable iso_table[] = {
70 { 0, 0, "Auto", -1},
71 { 1, 100, "100", -1},
72 { 2, 200, "200", -1},
73 { 3, 400, "400", -1},
74 { 4, 800, "800", -1},
75 { 5, 1600, "1600", -1},
76 { 6, 3200, "3200", -1},
77 };
78
79
80
81 const CapturemodeMap modemap[] = {
82 { MODE_AUTO, 32768 },
83 { MODE_P, 32772 },
84 { MODE_FISHEYE, 33329 },
85 { MODE_MINIATURE, 33330 },
86 { MODE_TOY_CAMERA, 33333 },
87 { MODE_MONOCHROME, 33336 },
88 { MODE_VIDEO_SUPER_SLOW, 2633 },
89 { MODE_CREATIVE_EFFECT, 32785 },
90
91
92 };
93
94 #include "../generic/shooting.c"
95
96 long get_file_next_counter() {
97 return get_file_counter();
98 }
99
100 long get_target_file_num() {
101 long n;
102
103 n = get_file_next_counter();
104 n = (n>>4)&0x3FFF;
105 return n;
106 }
107
108 #if defined(CAM_DATE_FOLDER_NAMING)
109
110 void get_target_dir_name(char *out) {
111
112 extern void _GetImageFolder(char*,int,int,int);
113 _GetImageFolder(out,get_file_next_counter(),0x80,time(NULL));
114 }
115 #else
116 long get_target_dir_num() {
117 long n;
118
119 n = get_file_next_counter();
120 n = (n>>18)&0x3FF;
121 return n;
122 }
123 #endif