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