Changeset 1520 for branches/reyalp-flt
- Timestamp:
- 12/31/11 05:54:12 (17 months ago)
- Location:
- branches/reyalp-flt/platform
- Files:
-
- 10 edited
-
g10/lib.c (modified) (2 diffs)
-
g11/lib.c (modified) (1 diff)
-
g11/sub/100f/lib.c (modified) (1 diff)
-
g11/sub/100j/lib.c (modified) (1 diff)
-
g11/sub/100l/lib.c (modified) (1 diff)
-
s90/lib.c (modified) (1 diff)
-
s90/sub/100c/lib.c (modified) (1 diff)
-
s90/sub/101a/lib.c (modified) (1 diff)
-
s90/sub/101c/lib.c (modified) (1 diff)
-
s95/lib.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/reyalp-flt/platform/g10/lib.c
r1514 r1520 74 74 int vid_get_viewport_width() 75 75 { 76 return 720 ; // G1076 return 360 ; // G10 77 77 } 78 78 … … 82 82 } 83 83 84 // Y multiplier for cameras with 480 pixel high viewports (CHDK code assumes 240) 85 int vid_get_viewport_yscale() { 86 return 2; // G10 viewport is 480 pixels high 87 } -
branches/reyalp-flt/platform/g11/lib.c
r1376 r1520 49 49 } 50 50 51 // Viewport and Bitmap values that shouldn't change across firmware versions. 52 // Values that may change are in lib.c for each firmware version. 53 54 int vid_get_viewport_width() 55 { 56 return 360; 57 } 58 59 long vid_get_viewport_height() 60 { 61 return 240; 62 } 63 64 // Y multiplier for cameras with 480 pixel high viewports (CHDK code assumes 240) 65 int vid_get_viewport_yscale() { 66 return 2; // G11 viewport is 480 pixels high 67 } -
branches/reyalp-flt/platform/g11/sub/100f/lib.c
r1514 r1520 87 87 return (char*)0x97234;// G11 OK /* Search for a9999 ; "9999" */ 88 88 } 89 90 int vid_get_viewport_width()91 {92 return 720;93 }94 95 long vid_get_viewport_height()96 {97 return 240;98 99 } -
branches/reyalp-flt/platform/g11/sub/100j/lib.c
r1514 r1520 107 107 108 108 } 109 110 int vid_get_viewport_width()111 {112 return 720;113 }114 115 long vid_get_viewport_height()116 {117 return 240;118 119 } -
branches/reyalp-flt/platform/g11/sub/100l/lib.c
r1514 r1520 107 107 108 108 } 109 110 int vid_get_viewport_width()111 {112 return 720;113 }114 115 long vid_get_viewport_height()116 {117 return 240;118 119 } -
branches/reyalp-flt/platform/s90/lib.c
r977 r1520 49 49 } 50 50 51 // Viewport and Bitmap values that shouldn't change across firmware versions. 52 // Values that may change are in lib.c for each firmware version. 53 54 int vid_get_viewport_width() 55 { 56 return 360; 57 } 58 59 long vid_get_viewport_height() 60 { 61 return 240; 62 } 63 64 // Y multiplier for cameras with 480 pixel high viewports (CHDK code assumes 240) 65 int vid_get_viewport_yscale() { 66 return 2; // S90 viewport is 480 pixels high 67 } 68 -
branches/reyalp-flt/platform/s90/sub/100c/lib.c
r1514 r1520 85 85 return (char*)0x9792C;// S90 OK /* Search for a9999 ; "9999" */ 86 86 } 87 88 int vid_get_viewport_width()89 {90 return 720;91 }92 93 long vid_get_viewport_height()94 {95 return 240;96 97 } -
branches/reyalp-flt/platform/s90/sub/101a/lib.c
r1514 r1520 105 105 return (char*)0x9792C;// S90 OK /* Search for a9999 ; "9999" */ 106 106 } 107 108 int vid_get_viewport_width()109 {110 return 720;111 }112 113 long vid_get_viewport_height()114 {115 return 240;116 117 } -
branches/reyalp-flt/platform/s90/sub/101c/lib.c
r1514 r1520 105 105 return (char*)0x9792C;// S90 OK /* Search for a9999 ; "9999" */ 106 106 } 107 108 int vid_get_viewport_width()109 {110 return 720;111 }112 113 long vid_get_viewport_height()114 {115 return 240;116 117 } -
branches/reyalp-flt/platform/s95/lib.c
r1518 r1520 75 75 // Y multiplier for cameras with 480 pixel high viewports (CHDK code assumes 240) 76 76 int vid_get_viewport_yscale() { 77 return 2; // G12viewport is 480 pixels high77 return 2; // S95 viewport is 480 pixels high 78 78 }
Note: See TracChangeset
for help on using the changeset viewer.