Changeset 404
- Timestamp:
- 05/23/08 10:45:44 (5 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 10 edited
-
core/gui.c (modified) (1 diff)
-
core/raw.c (modified) (2 diffs)
-
include/camera.h (modified) (1 diff)
-
platform/tx1/sub/100g/Makefile (modified) (1 diff)
-
platform/tx1/sub/100g/mount.c (added)
-
platform/tx1/sub/100g/stubs_auto.S (modified) (3 diffs)
-
platform/tx1/sub/100g/stubs_entry.S (modified) (2 diffs)
-
platform/tx1/sub/100g/stubs_entry_2.S (modified) (1 diff)
-
platform/tx1/sub/101b/Makefile (modified) (1 diff)
-
platform/tx1/sub/101b/mount.c (added)
-
platform/tx1/sub/101b/stubs_auto.S (modified) (3 diffs)
-
platform/tx1/sub/101b/stubs_entry_2.S (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/core/gui.c
r393 r404 1369 1369 voltage_step = (conf.batt_step_25)?25:1; 1370 1370 load_bad_pixels_list("A/CHDK/badpixel"); 1371 load_bad_pixels_list("A/CHDK/badpixel.txt"); 1371 1372 } 1372 1373 -
trunk/core/raw.c
r324 r404 144 144 void patch_bad_pixel(unsigned int x,unsigned int y){ 145 145 if ((x>=2) && (x<CAM_RAW_ROWPIX-2) && (y>=2) && (y<CAM_RAW_ROWS-2)) 146 set_raw_pixel(x,y,(get_raw_pixel(x-2,y)+get_raw_pixel(x+2,y)+get_raw_pixel(x,y-2)+get_raw_pixel(x,y+2))/4); 146 // set_raw_pixel(x,y,(get_raw_pixel(x-2,y)+get_raw_pixel(x+2,y)+get_raw_pixel(x,y-2)+get_raw_pixel(x,y+2))/4); 147 set_raw_pixel(x,y,0); 147 148 } 148 149 … … 195 196 void load_bad_pixels_list(char* filename){ 196 197 char *buf; 197 const char *grid;198 198 int fd; 199 199 -
trunk/include/camera.h
r403 r404 471 471 #undef CAM_HAS_MANUAL_FOCUS 472 472 #undef CAM_CAN_UNLOCK_OPTICAL_ZOOM_IN_VIDEO 473 #define CAM_MULTIPART 1 473 474 474 475 -
trunk/platform/tx1/sub/100g/Makefile
r388 r404 1 1 topdir=../../../../ 2 2 3 OBJS=boot.o stubs_min.o stubs_auto.o stubs_entry.o lib.o stubs_entry_2.o capt_seq.o movie_rec.o 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 3 OBJS=boot.o stubs_min.o stubs_auto.o stubs_entry.o lib.o stubs_entry_2.o capt_seq.o movie_rec.o mount.o 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c mount.c 5 5 6 6 include $(topdir)/platform/makefile_sub.inc -
trunk/platform/tx1/sub/100g/stubs_auto.S
r388 r404 18 18 STUB(FF81BD58) 19 19 STUB(FF81BF54) 20 STUB(FF81CA18) 21 STUB(FF81CA44) 22 STUB(FF81E370) 23 STUB(FF81E440) 20 24 STUB(FF826F90) 25 STUB(FF848778) 26 STUB(FF848788) 21 27 STUB(FF918F9C) 22 28 STUB(FF91F884) … … 30 36 STUB(FF939A08) 31 37 STUB(FFA4D7B0) 38 STUB(FFA7D434) 39 STUB(FFA7D524) 40 STUB(FFA939CC) 41 STUB(FFAACFF0) 42 STUB(FFAAD0C8) 43 STUB(FFAAD1F4) 44 STUB(FFAAD95C) 45 STUB(FFAAD9AC) 46 STUB(FFAADA64) 47 STUB(FFAADBB8) 48 STUB(FFAADCDC) 49 STUB(FFAADD64) 50 STUB(FFAADF30) 51 STUB(FFAC1550) 32 52 STUB(FFB057F8) 33 53 STUB(FFB1CF10) … … 80 100 STUB(FFB41E88) 81 101 STUB(FFB4D970) 102 STUB(FFB5F514) 82 103 STUB(FFB63C14) 83 104 STUB(FFBAD0D0) -
trunk/platform/tx1/sub/100g/stubs_entry.S
r388 r404 101 101 NSTUB(iosDevAdd, 0xff92965c) 102 102 NSTUB(iosDrvInstall, 0xff929920) 103 NSTUB(iosDevFind, 0xff9295e8)104 103 NSTUB(isalpha, 0xff91fa14) 105 104 // ALT: NSTUB(isalpha, 0xff91fa14) // 4/0 … … 178 177 NSTUB(vsprintf, 0xff9271e4) 179 178 NSTUB(write, 0xff92850c) 180 NSTUB(fprintf, 0xff920374)181 // ALT: NSTUB(fprintf, 0xff921b38) // 15/0182 NSTUB(fputs, 0xff920494)183 NSTUB(puts, 0xff9275a0) -
trunk/platform/tx1/sub/100g/stubs_entry_2.S
r388 r404 29 29 NHSTUB(PutInNdFilter, 0xffa63994) 30 30 NHSTUB(PutOutNdFilter, 0xffa639DC) 31 NHSTUB(WriteSDCard, 0xFFAC0FF8) -
trunk/platform/tx1/sub/101b/Makefile
r388 r404 1 1 topdir=../../../../ 2 2 3 OBJS=boot.o stubs_min.o stubs_auto.o stubs_entry.o lib.o stubs_entry_2.o capt_seq.o movie_rec.o 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c 3 OBJS=boot.o stubs_min.o stubs_auto.o stubs_entry.o lib.o stubs_entry_2.o capt_seq.o movie_rec.o mount.o 4 STUBS_AUTO_DEPS=boot.c capt_seq.c movie_rec.c mount.c 5 5 6 6 include $(topdir)/platform/makefile_sub.inc -
trunk/platform/tx1/sub/101b/stubs_auto.S
r388 r404 18 18 STUB(FF81BD58) 19 19 STUB(FF81BF54) 20 STUB(FF81CA18) 21 STUB(FF81CA44) 22 STUB(FF81E370) 23 STUB(FF81E440) 20 24 STUB(FF826F90) 25 STUB(FF848778) 26 STUB(FF848788) 21 27 STUB(FF918F9C) 22 28 STUB(FF91F884) … … 30 36 STUB(FF939A08) 31 37 STUB(FFA4D830) 38 STUB(FFA7D4B4) 39 STUB(FFA7D5A4) 40 STUB(FFA93A4C) 41 STUB(FFAAD070) 42 STUB(FFAAD148) 43 STUB(FFAAD274) 44 STUB(FFAAD9DC) 45 STUB(FFAADA2C) 46 STUB(FFAADAE4) 47 STUB(FFAADC38) 48 STUB(FFAADD5C) 49 STUB(FFAADDE4) 50 STUB(FFAADFB0) 51 STUB(FFAC15D0) 32 52 STUB(FFB05878) 33 53 STUB(FFB1CF90) … … 80 100 STUB(FFB41F08) 81 101 STUB(FFB4D9F0) 102 STUB(FFB5F594) 82 103 STUB(FFB63C94) 83 104 STUB(FFBAD14C) -
trunk/platform/tx1/sub/101b/stubs_entry_2.S
r388 r404 25 25 NHSTUB(SetPropertyCase, 0xFF81BC20) 26 26 NHSTUB(PostLEDMessage, 0xFFA4290C) 27 NHSTUB(WriteSDCard, 0xFFAC1078)
Note: See TracChangeset
for help on using the changeset viewer.