Ignore:
Timestamp:
07/09/08 12:59:17 (5 years ago)
Author:
Jucifer
Message:

re-committing old revisions 434-439

trunk: (changes by ewavr)

  • add AF in video for ixus series
  • small AF in video fix

juciphox branch:

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/juciphox/include/platform.h

    r427 r434  
    6666}; 
    6767 
    68 #if CAM_PROPSET == 2 
     68#if CAM_PROPSET == 2     // most digic3 cameras 
    6969 #define PROPCASE_DRIVE_MODE                                    102 
    7070 #define PROPCASE_FOCUS_MODE                                    133 
     
    9090 #define PROPCASE_EV_CORRECTION_2                               207 
    9191 #define PROPCASE_ORIENTATION_SENSOR                    219 
    92 #elif CAM_PROPSET == 1 
     92 #define PROPCASE_DIGITAL_ZOOM_STATE                            94 
     93 #define PROPCASE_DIGITAL_ZOOM_POSITION                         95 
     94#elif CAM_PROPSET == 1   // most digic2 cameras 
    9395 #define PROPCASE_DRIVE_MODE                                    6 
    9496 #define PROPCASE_FOCUS_MODE                                    12 
     
    120122 #define PROPCASE_EV_CORRECTION_2                               26 
    121123 #define PROPCASE_ORIENTATION_SENSOR                    37 
     124 #define PROPCASE_DIGITAL_ZOOM_STATE                            58 
     125 #define PROPCASE_DIGITAL_ZOOM_POSITION                         57 
    122126#else 
    123127 #error unknown camera processor 
     
    143147#define KBD_INITIAL_DELAY 300 
    144148 
    145 // Video recording current status constants, see movie_status variable   
     149// Video recording current status constants, see movie_status variable  
    146150#define VIDEO_RECORD_NEVER_STARTED 0   
    147151#define VIDEO_RECORD_STOPPED 1   
    148152#define VIDEO_RECORD_IN_PROGRESS 4 
     153 
     154//Optical & digital zoom status constants, see zoom_status variable  
     155#define ZOOM_OPTICAL_MIN         1 
     156#define ZOOM_OPTICAL_MAX         2 
     157#define ZOOM_OPTICAL_MEDIUM      3 
     158#define ZOOM_OPTICAL_IN          4 
     159#define ZOOM_OPTICAL_OUT         5 
     160#define ZOOM_OPTICAL_REACHED_MIN 7 
     161 
     162#define ZOOM_DIGITAL_MAX         9 
     163#define ZOOM_DIGITAL_MEDIUM      10 
     164#define ZOOM_DIGITAL_IN          11 
     165#define ZOOM_DIGITAL_OUT         12 
     166#define ZOOM_DIGITAL_REACHED_MAX 13 
    149167 
    150168typedef struct { 
     
    470488void MakeAFScan(void);  
    471489extern int movie_status;  
     490extern int zoom_status; 
    472491 
    473492void wait_until_remote_button_is_released(void); 
Note: See TracChangeset for help on using the changeset viewer.