Changeset 499
- Timestamp:
- 09/03/08 21:34:05 (5 years ago)
- Location:
- branches/juciphox
- Files:
-
- 4 edited
-
Makefile (modified) (1 diff)
-
core/Makefile (modified) (1 diff)
-
lib/ubasic/ubasic.c (modified) (1 diff)
-
platform/sx100is/sub/100c/movie_rec.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/juciphox/Makefile
r498 r499 190 190 cat $(topdir)bin/caminfo.txt 191 191 rm -f $(topdir)bin/caminfo.txt > $(DEVNULL) 192 192 193 193 batch-zip-complete: version 194 194 $(MAKE) -s --no-print-directory PLATFORM=a610 PLATFORMSUB=100e NO_INC_BUILD=1 firzipsubcomplete -
branches/juciphox/core/Makefile
r498 r499 43 43 @printf " %s-%s (%s, #%s): MEMISOSIZE used: 0x%s / %s\n" \ 44 44 $(PLATFORM) $(PLATFORMSUB) $(PLATFORMOS) $(PLATFORMID) \ 45 `tail -c16 $(topdir)size.txt | head -c 5` $(MEMISOSIZE) >> $(topdir)bin/caminfo.txt45 `tail -c16 $(topdir)size.txt | head -c6` $(MEMISOSIZE) >> $(topdir)bin/caminfo.txt 46 46 rm -f $(topdir)size.txt 47 47 -
branches/juciphox/lib/ubasic/ubasic.c
r498 r499 220 220 case TOKENIZER_GET_MODE: 221 221 accept(TOKENIZER_GET_MODE); 222 r = ((mode_get()&MODE_MASK) == MODE_PLAY)?1:0; 222 int m=mode_get()&MODE_SHOOTING_MASK; 223 int mode_video=MODE_IS_VIDEO(m); 224 if ((mode_get()&MODE_MASK) != MODE_PLAY) r = 0; 225 if ((mode_get()&MODE_MASK) == MODE_PLAY) r = 1; 226 if (((mode_get()&MODE_MASK) != MODE_PLAY) && mode_video) r = 2; 223 227 break; 224 228 case TOKENIZER_GET_RAW_NR: -
branches/juciphox/platform/sx100is/sub/100c/movie_rec.c
r497 r499 1959 1959 1960 1960 long CompressionRateTable[]={0x60, 0x5D, 0x5A, 0x57, 0x54, 0x51, 0x4D, 0x48, 0x42, 0x3B, 0x32, 0x29, 0x22, 0x1D, 0x17, 0x14, 0x10, 0xE, 0xB, 9, 7, 6, 5, 4, 3, 2, 1}; 1961 1962
Note: See TracChangeset
for help on using the changeset viewer.