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   0x3B
 

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   0x3B

Definiert in Zeile 1 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 106 der Datei shooting.c.

106  {
107 
108  return get_file_counter();
109 }
long get_target_dir_num ( )

Definiert in Zeile 127 der Datei shooting.c.

127  {
128 
129  long n;
130 
131  n = get_file_next_counter();
132  n = (n>>18)&0x3FF;
133  return n;
134 }
long get_target_file_num ( )

Definiert in Zeile 111 der Datei shooting.c.

111  {
112 
113  long n;
114 
115  n = get_file_next_counter();
116  n = (n>>4)&0x3FFF;
117  return n;
118 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 9, 293, "2.8" },
{ 10, 307, "3.2" },
{ 11, 344, "3.5" },
{ 12, 388, "4.0" },
{ 13, 413, "4.5" },
{ 14, 443, "5.0" },
{ 15, 476, "5.6" },
{ 16, 500, "5.9" },
}

Definiert in Zeile 5 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 64 der Datei shooting.c.

const CapturemodeMap modemap[]
Initialisierung:
= {
{ MODE_P, 32772 },
{ MODE_LIVE, 33332 },
{ MODE_AUTO, 32768 },
{ MODE_EASY, 33314 },
{ MODE_PORTRAIT, 16399 },
{ MODE_LANDSCAPE, 16398 },
{ MODE_KIDS_PETS, 16402 },
{ MODE_SMART_SHUTTER, 16937 },
{ MODE_LOWLIGHT, 16417 },
{ MODE_BEACH, 16407 },
{ MODE_FOLIAGE, 16405 },
{ MODE_SNOW, 16406 },
{ MODE_FIREWORK, 16408 },
{ MODE_LONG_SHUTTER, 16390 },
{ MODE_FISHEYE, 8747 },
{ MODE_MINIATURE, 8748 },
{ MODE_TOY_CAMERA, 8751 },
{ MODE_MONOCHROME, 8754 },
{ MODE_SUPER_VIVID, 8742 },
{ MODE_POSTER_EFFECT, 8743 },
{ MODE_DISCREET, 32817 },
{ MODE_VIDEO_STD, 2621 },
}

Definiert in Zeile 75 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 16 der Datei shooting.c.