CHDK_DE Vorschauversion  Trunk Rev. 6014
 Alle Datenstrukturen Dateien Funktionen Variablen Typdefinitionen Aufzählungen Aufzählungswerte Makrodefinitionen
shooting.c-Dateireferenz
#include "platform.h"
#include "../generic/shooting.c"
+ Include-Abhängigkeitsdiagramm für shooting.c:

gehe zum Quellcode dieser Datei

Makrodefinitionen

#define PARAM_FILE_COUNTER   0x38
 

Funktionen

long get_file_next_counter ()
 
long get_target_file_num ()
 
long get_target_dir_num ()
 

Variablen

const ApertureSize aperture_sizes_table []
 
const ShutterSpeed shutter_speeds_table []
 
const ISOTable iso_table []
 
const CapturemodeMap modemap []
 

Makro-Dokumentation

#define PARAM_FILE_COUNTER   0x38

Definiert in Zeile 1 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 157 der Datei shooting.c.

157  {
158  return get_file_counter();
159 }
long get_target_dir_num ( )

Definiert in Zeile 169 der Datei shooting.c.

169  {
170  long n;
171 
172  n = get_file_next_counter();
173  n = (n>>18)&0x3FF;
174  return n;
175 }
long get_target_file_num ( )

Definiert in Zeile 161 der Datei shooting.c.

161  {
162  long n;
163 
164  n = get_file_next_counter();
165  n = (n>>4)&0x3FFF;
166  return n;
167 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 0, 326, "3.2" },
{ 1, 340, "3.5" },
{ 2, 355, "3.5" },
{ 3, 369, "4.0" },
{ 4, 383, "4.0" },
{ 5, 396, "4.0" },
{ 6, 408, "4.5" },
{ 7, 422, "4.5" },
{ 8, 436, "5.0" },
{ 9, 452, "5.0" },
{ 10, 471, "5.6" },
{ 11, 490, "5.7" },
{ 12, 601, "9.0" },
{ 13, 615, "10.0" },
{ 14, 630, "10.0" },
{ 15, 644, "11.0" },
{ 16, 658, "11.0" },
{ 17, 671, "11.0" },
{ 18, 683, "13.0" },
{ 19, 697, "13.0" },
{ 20, 711, "14.0" },
{ 21, 727, "14.0" },
{ 22, 746, "16.0" },
{ 23, 765, "16.0" }
}

Definiert in Zeile 9 der Datei shooting.c.

const ISOTable iso_table[]
Initialisierung:
= {
{ 0, 0, "Auto", -1},
{ 1, 80, "80", -1},
{ 2, 100, "100", -1},
{ 3, 200, "200", -1},
{ 4, 400, "400", -1},
{ 5, 800, "800", -1},
{ 6, 1600, "1600", -1},
}

Definiert in Zeile 119 der Datei shooting.c.

const CapturemodeMap modemap[]
Initialisierung:
= {
{ MODE_VIDEO_STD, 2601 },
{ MODE_LONG_SHUTTER, 32774 },
{ MODE_SUNSET, 32786 },
{ MODE_FOLIAGE, 32787 },
{ MODE_SNOW, 32788 },
{ MODE_BEACH, 32789 },
{ MODE_FIREWORK, 32790 },
{ MODE_ZOOM_BLUR, 33313 },
{ MODE_AQUARIUM, 32792 },
{ MODE_ISO_3200, 32797 },
{ MODE_DIGITAL_MACRO, 33288 },
{ MODE_STITCH, 33290 },
{ MODE_COLOR_ACCENT, 33307 },
{ MODE_COLOR_SWAP, 33308 },
{ MODE_AUTO, 32768 },
{ MODE_P, 32772 },
{ MODE_NIGHT_SNAPSHOT, 32779 },
{ MODE_PORTRAIT, 32781 },
{ MODE_KIDS_PETS, 32784 },
{ MODE_INDOOR, 32785 },
}

Definiert in Zeile 129 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 68 der Datei shooting.c.