Changeset 340
- Timestamp:
- 07/22/07 16:42:10 (17 years ago)
- Location:
- libmpc/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcpsy/cvd.c
r327 r340 17 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 18 */ 19 #include "mpc/mpc_types.h"20 #include "libmpcpsy.h"21 19 22 20 #include <math.h> 23 21 #include <string.h> 22 23 #include "mpc/mpc_types.h" 24 #include "mpc/mpcmath.h" 25 #include "libmpcpsy.h" 24 26 25 27 void Cepstrum2048 ( float* cep, const int ); -
libmpc/trunk/mpccut/CMakeLists.txt
r332 r340 8 8 if(MSVC) 9 9 include_directories(${libmpc_SOURCE_DIR}/win32) 10 add_executable(mpccut ${libmpc_SOURCE_DIR}/win32/attgetopt)10 add_executable(mpccut mpccut ${libmpc_SOURCE_DIR}/win32/attgetopt) 11 11 endif(MSVC) 12 12 13 add_executable(mpccut mpccut .c)13 add_executable(mpccut mpccut) 14 14 15 15 target_link_libraries(mpccut mpcdec_static) -
libmpc/trunk/mpcdec/CMakeLists.txt
r332 r340 8 8 if(MSVC) 9 9 include_directories(${libmpc_SOURCE_DIR}/win32) 10 add_executable(mpcdec ${libmpc_SOURCE_DIR}/win32/attgetopt)10 add_executable(mpcdec mpcdec ${libmpc_SOURCE_DIR}/win32/attgetopt) 11 11 endif(MSVC) 12 12 13 add_executable(mpcdec mpcdec .c)13 add_executable(mpcdec mpcdec) 14 14 15 15 if(NOT MSVC) -
libmpc/trunk/mpcenc/CMakeLists.txt
r236 r340 1 add_definitions(-DMPP_ENCODER -DFAST_MATH -DCVD_FASTLOG)2 3 1 if(MPC_ENDIANNESS) 4 2 add_definitions(-DMPC_BIG_ENDIAN)
Note: See TracChangeset
for help on using the changeset viewer.