Update of /cvsroot/pure-data/externals/grill/xsample/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13793/source
Modified Files: groove.cpp main.h record.cpp xsample-Info.plist Log Message: small fixes update for new flext callback naming - made xcode project - fixed loop record bug - some small cleanups
Index: record.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/xsample/source/record.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** record.cpp 13 Mar 2005 04:58:29 -0000 1.18 --- record.cpp 26 Sep 2005 14:00:26 -0000 1.19 *************** *** 14,17 **** --- 14,18 ---- #endif
+ extern "C++" {
class xrecord: *************** *** 87,90 **** --- 88,93 ---- };
+ } +
FLEXT_LIB_DSP_V("xrecord~",xrecord) *************** *** 492,493 **** --- 495,497 ---- post(""); } +
Index: groove.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/xsample/source/groove.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** groove.cpp 11 Aug 2005 15:01:42 -0000 1.33 --- groove.cpp 26 Sep 2005 14:00:26 -0000 1.34 *************** *** 658,662 ****
// \todo what about round-off? ! const long hzone = CASTINT<long>(xzone/2.f); znsmin = curmin-hzone; znsmax = curmax+hzone; --- 658,662 ----
// \todo what about round-off? ! const long hzone = CASTINT<long>(xzone/2.f+0.5f); znsmin = curmin-hzone; znsmax = curmax+hzone; *************** *** 685,689 ****
// \todo what about round-off? ! const long hzone = CASTINT<long>(xzone/2.f); znsmin = curmin-hzone; znsmax = curmax+hzone; --- 685,689 ----
// \todo what about round-off? ! const long hzone = CASTINT<long>(xzone/2.f+0.5f); znsmin = curmin-hzone; znsmax = curmax+hzone; *************** *** 708,712 ****
// \todo what about round-off? ! const long hzone = CASTINT<long>(xzone/2.f); znsmin = curmin-hzone; znsmax = curmax+hzone; --- 708,712 ----
// \todo what about round-off? ! const long hzone = CASTINT<long>(xzone/2.f+0.5f); znsmin = curmin-hzone; znsmax = curmax+hzone;
Index: xsample-Info.plist =================================================================== RCS file: /cvsroot/pure-data/externals/grill/xsample/source/xsample-Info.plist,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** xsample-Info.plist 16 Dec 2004 05:02:24 -0000 1.1 --- xsample-Info.plist 26 Sep 2005 14:00:26 -0000 1.2 *************** *** 12,16 **** <string>6.0</string> <key>CFBundlePackageType</key> ! <string>APPL</string> <key>CFBundleSignature</key> <string>????</string> --- 12,16 ---- <string>6.0</string> <key>CFBundlePackageType</key> ! <string>iLaX</string> <key>CFBundleSignature</key> <string>????</string>
Index: main.h =================================================================== RCS file: /cvsroot/pure-data/externals/grill/xsample/source/main.h,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** main.h 11 Aug 2005 15:01:42 -0000 1.37 --- main.h 26 Sep 2005 14:00:26 -0000 1.38 *************** *** 16,21 **** #endif
! #define XSAMPLE_VERSION "0.3.1pre7"
// most compilers are somehow broken - in other words - can't handle all C++ features --- 16,22 ---- #endif
! #define XSAMPLE_VERSION "0.3.1pre8"
+ extern "C++" {
// most compilers are somehow broken - in other words - can't handle all C++ features *************** *** 440,442 **** --- 441,445 ---- #endif
+ } + #endif