Changeset 858


Ignore:
Timestamp:
12/06/09 01:36:05 (3 years ago)
Author:
reyalp
Message:

correct a590 mode map, see http://chdk.setepontos.com/index.php/topic,3228.msg44199.html#msg44199
comments only on g7

Location:
trunk/platform
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/platform/a590/shooting.c

    r847 r858  
    8181};           
    8282 
     83/* 
     84http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&tabact=ModelTechSpecsTabAct&fcategoryid=221&modelid=16336  
     85Shooting Modes 
     86        Auto, Easy, P, Av, Tv, M, Portrait, Landscape, 
     87        Special Scene  
     88                Foliage, Snow, Beach, Sunset, Fireworks, Night Scene, Aquarium 
     89        Indoor, Kids & Pets, Night Snapshot, Movie <- yes, these are dial, not scene! 
     90video resolutions 
     91640 x 480 (20 fps/20 fps LP), 320 x 240 (30 fps) available up to 4GB or 60 minutes, 
     92160 x 120 (3 minutes at 15 fps)  
     93canon mode list @FFEAED68 in 100e 
     94*/ 
     95// PROPCASE 49, verified by whim in http://chdk.setepontos.com/index.php/topic,3228.msg44199.html#msg44199 
    8396static const CapturemodeMap modemap[] = { 
    84     { MODE_AUTO,               32768 }, // PROPCASE 49 
    85     { MODE_P,                  32772 }, // 
    86         { MODE_TV,                  32771 },// 
    87         { MODE_AV,                  32770 },// 
    88         { MODE_M,                  32769 },     // 
    89         { MODE_VIDEO_STD,          2597  }, 
    90     { MODE_VIDEO_COMPACT,      2599  }, 
    91         { MODE_INDOOR,              32785 },    // 
    92         { MODE_SCN_KIDS_PETS,           32784 },        // 
     97// common modes 
     98        { MODE_M,                  32769 }, 
     99        { MODE_TV,                 32771 }, 
     100        { MODE_AV,                 32770 }, 
     101    { MODE_P,                  32772 }, 
     102    { MODE_AUTO,               32768 }, 
    93103        { MODE_PORTRAIT,           32781 }, 
     104        { MODE_INDOOR,             32785 }, 
     105         
     106        { MODE_KIDS_PETS,          32784 }, 
     107        { MODE_LANDSCAPE,          32780 }, 
    94108    { MODE_NIGHT_SNAPSHOT,     32779 }, 
    95         { MODE_LANDSCAPE,       32780 }, 
    96     { MODE_DIGITAL_MACRO,      33288 },//?? 
    97     { MODE_COLOR_ACCENT,       33306 }, //  { MODE_SCN_COLOR_ACCENT,   33306 }, 
    98     { MODE_MY_COLORS,          33307 }, 
    99     { MODE_SCN_KIDS_PETS,      16400 }, //  { MODE_SCN_CHILD,          16400 }, 
    100     { MODE_SCN_INDOOR,         16401 }, //  { MODE_SCN_PARTY,          16401 }, 
    101     { MODE_SCN_FOLIAGE,        16403 }, //  { MODE_SCN_GRASS,          16402 }, 
     109    { MODE_SCN_NIGHT,          16398 }, 
     110    { MODE_SCN_SUNSET,         16402 }, 
     111    { MODE_SCN_FOLIAGE,        16403 }, 
    102112    { MODE_SCN_SNOW,           16404 }, 
    103113    { MODE_SCN_BEACH,          16405 }, 
     114//    { ???,                   32791 }, 
     115    { MODE_SCN_AQUARIUM,       16408 }, 
    104116    { MODE_SCN_FIREWORK,       16406 }, 
    105     { MODE_SCN_AQUARIUM,       16408 }, 
    106     { MODE_SCN_WATER,          16402 }, 
     117    { MODE_VIDEO_STD,          2599  }, 
     118    { MODE_VIDEO_COMPACT,       2601  }, 
     119    { MODE_EASY,                33311 }, 
     120// not in canon list, but set OK  
     121// 33306 
     122//  2597 (note, this was listed as VIDEO_STD in the old mode map, but that is actually 2599 per whims test.) 
     123// 33288 
     124// 
    107125}; 
    108126 
  • trunk/platform/g7/shooting.c

    r855 r858  
    7777};           
    7878 
     79/* 
     80http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&tabact=ModelTechSpecsTabAct&fcategoryid=222&modelid=14321 
     81 
     82Shooting Modes 
     83        Auto, P, Av, Tv, M, C1, C2, 
     84        Special Scene  
     85                Portrait, Landscape, Night Scene, Sports, Foliage, Snow, Beach, Fireworks, Aquarium 
     86                Underwater, ISO 3200, Indoor, Kids & Pets, Night Snapshot, Color Accent, Color Swap 
     87        Stitch Assist, Movie 
     88 
     89video resolutions 
     901,024 x 768 (15 fps), 640 x 480 / 320 x 240 (30 fps/15 fps) available up to 4GB, 160 x 120 (3 min. at 15 fps) 
     91*/ 
    7992static const CapturemodeMap modemap[] = { 
    8093    { MODE_AUTO,               32768 }, 
     
    89102    { MODE_VIDEO_COLOR_ACCENT, 2594  }, 
    90103    { MODE_STITCH,             33290 }, 
    91     { MODE_MY_COLORS,      16922 }, 
     104    { MODE_MY_COLORS,          16922 }, 
    92105    { MODE_SCN_WATER,          16405 }, 
    93106    { MODE_SCN_AQUARIUM,       16406 }, 
Note: See TracChangeset for help on using the changeset viewer.