提交 301671fd authored 作者: Michael Jerris's avatar Michael Jerris

update to new libs for msvc build.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2115 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 da848438
...@@ -248,16 +248,13 @@ WScript.Echo "Complete" ...@@ -248,16 +248,13 @@ WScript.Echo "Complete"
' Lib Build Sectiton ' Lib Build Sectiton
' ****************** ' ******************
Sub BuildLibs_aprutil(BuildDebug, BuildRelease) Sub BuildLibs_aprutil(BuildDebug, BuildRelease)
If Not FSO.FolderExists(LibDestDir & "apr-util") Then If Not FSO.FolderExists(LibDestDir & "apr-util") Then
' WgetUnCompress "ftp://ftp.wayne.edu/apache/apr/apr-util-1.2.6.tar.gz", LibDestDir Wscript.echo "Unable to get apr-util from default download location, Trying backup location:"
If Not FSO.FolderExists(LibDestDir & "apr-util-1.2.6") Then WgetUnCompress LibsBase & "apr-util-1.2.7.tar.gz", LibDestDir
Wscript.echo "Unable to get apr-util from default download location, Trying backup location:" End If
WgetUnCompress LibsBase & "apr-util-1.2.6.tar.gz", LibDestDir RenameFolder LibDestDir & "apr-util-1.2.7", "apr-util"
End If FSO.CopyFile Utilsdir & "apr\xml.vcproj", LibDestDir & "apr-util\xml\expat\lib\", True
RenameFolder LibDestDir & "apr-util-1.2.6", "apr-util" FSO.CopyFile Utilsdir & "apr\libaprutil.vcproj", LibDestDir & "apr-util\", True
FSO.CopyFile Utilsdir & "apr\xml.vcproj", LibDestDir & "apr-util\xml\expat\lib\", True
FSO.CopyFile Utilsdir & "apr\libaprutil.vcproj", LibDestDir & "apr-util\", True
End If
If FSO.FolderExists(LibDestDir & "apr-util") Then If FSO.FolderExists(LibDestDir & "apr-util") Then
If BuildDebug Then If BuildDebug Then
If Not FSO.FileExists(LibDestDir & "apr-util\xml\expat\lib\LibD\xml.lib") Then If Not FSO.FileExists(LibDestDir & "apr-util\xml\expat\lib\LibD\xml.lib") Then
...@@ -285,15 +282,12 @@ Sub BuildLibs_aprutil(BuildDebug, BuildRelease) ...@@ -285,15 +282,12 @@ Sub BuildLibs_aprutil(BuildDebug, BuildRelease)
End Sub End Sub
Sub BuildLibs_apriconv(BuildDebug, BuildRelease) Sub BuildLibs_apriconv(BuildDebug, BuildRelease)
If Not FSO.FolderExists(LibDestDir & "apr-iconv") Then If Not FSO.FolderExists(LibDestDir & "apr-iconv-1.1.1") Then
' WgetUnCompress "ftp://ftp.wayne.edu/apache/apr/apr-iconv-1.1.1.tar.gz", LibDestDir Wscript.echo "Unable to get apr-iconv from default download location, Trying backup location:"
If Not FSO.FolderExists(LibDestDir & "apr-iconv-1.1.1") Then WgetUnCompress LibsBase & "apr-iconv-1.1.1.tar.gz", LibDestDir
Wscript.echo "Unable to get apr-iconv from default download location, Trying backup location:" End If
WgetUnCompress LibsBase & "apr-iconv-1.1.1.tar.gz", LibDestDir RenameFolder LibDestDir & "apr-iconv-1.1.1", "apr-iconv"
End If FSO.CopyFile Utilsdir & "apr\libapriconv.vcproj", LibDestDir & "apr-iconv\", True
RenameFolder LibDestDir & "apr-iconv-1.1.1", "apr-iconv"
FSO.CopyFile Utilsdir & "apr\libapriconv.vcproj", LibDestDir & "apr-iconv\", True
End If
If FSO.FolderExists(LibDestDir & "apr-iconv") Then If FSO.FolderExists(LibDestDir & "apr-iconv") Then
If BuildDebug Then If BuildDebug Then
If Not FSO.FileExists(LibDestDir & "apr-iconv\Debug\libapriconv-1.lib") Then If Not FSO.FileExists(LibDestDir & "apr-iconv\Debug\libapriconv-1.lib") Then
...@@ -315,16 +309,13 @@ Sub BuildLibs_apriconv(BuildDebug, BuildRelease) ...@@ -315,16 +309,13 @@ Sub BuildLibs_apriconv(BuildDebug, BuildRelease)
End Sub End Sub
Sub BuildLibs_apr(BuildDebug, BuildRelease) Sub BuildLibs_apr(BuildDebug, BuildRelease)
If Not FSO.FolderExists(LibDestDir & "apr") Then If Not FSO.FolderExists(LibDestDir & "apr") Then
' WgetUnCompress "ftp://ftp.wayne.edu/apache/apr/apr-1.2.6.tar.gz", LibDestDir Wscript.echo "Unable to get apr from default download location, Trying backup location:"
If Not FSO.FolderExists(LibDestDir & "apr-1.2.6") Then WgetUnCompress LibsBase & "apr-1.2.7.tar.gz", LibDestDir
Wscript.echo "Unable to get apr from default download location, Trying backup location:" End If
WgetUnCompress LibsBase & "apr-1.2.6.tar.gz", LibDestDir RenameFolder LibDestDir & "apr-1.2.7", "apr"
End If FSO.CopyFile Utilsdir & "apr\libapr.vcproj", LibDestDir & "apr\", True
RenameFolder LibDestDir & "apr-1.2.6", "apr" FSO.CopyFile Utilsdir & "apr\apr.hw", LibDestDir & "apr\include\", True
FSO.CopyFile Utilsdir & "apr\libapr.vcproj", LibDestDir & "apr\", True
FSO.CopyFile Utilsdir & "apr\apr.hw", LibDestDir & "apr\include\", True
End If
If FSO.FolderExists(LibDestDir & "apr") Then If FSO.FolderExists(LibDestDir & "apr") Then
If BuildDebug Then If BuildDebug Then
If Not FSO.FileExists(LibDestDir & "apr\Debug\libapr-1.lib") Then If Not FSO.FileExists(LibDestDir & "apr\Debug\libapr-1.lib") Then
...@@ -421,16 +412,13 @@ Sub BuildLibs_srtp(BuildDebug, BuildRelease) ...@@ -421,16 +412,13 @@ Sub BuildLibs_srtp(BuildDebug, BuildRelease)
End Sub End Sub
Sub BuildLibs_sqlite(BuildDebug, BuildRelease) Sub BuildLibs_sqlite(BuildDebug, BuildRelease)
If Not FSO.FolderExists(LibDestDir & "sqlite") Then If Not FSO.FolderExists(LibDestDir & "sqlite") Then
WgetUnCompress "http://www.sqlite.org/sqlite-source-3_3_5.zip", LibDestDir
If Not FSO.FolderExists(LibDestDir & "sqlite-source-3_3_5") Then
Wscript.echo "Unable to get SQLite from default download location, Trying backup location:" Wscript.echo "Unable to get SQLite from default download location, Trying backup location:"
WgetUnCompress LibsBase & "sqlite-source-3_3_5.zip", LibDestDir WgetUnCompress LibsBase & "sqlite-source-3_3_6.zip", LibDestDir
End If End If
RenameFolder LibDestDir & "sqlite-source-3_3_5", "sqlite" RenameFolder LibDestDir & "sqlite-source-3_3_6", "sqlite"
FSO.CopyFile Utilsdir & "sqlite.vcproj", LibDestDir & "sqlite\", True FSO.CopyFile Utilsdir & "sqlite.vcproj", LibDestDir & "sqlite\", True
FindReplaceInFile LibDestDir & "sqlite\sqlite.vcproj", "WIN32;", "_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;WIN32;" FindReplaceInFile LibDestDir & "sqlite\sqlite.vcproj", "WIN32;", "_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;WIN32;"
End If
If FSO.FolderExists(LibDestDir & "sqlite") Then If FSO.FolderExists(LibDestDir & "sqlite") Then
If BuildDebug Then If BuildDebug Then
If Not FSO.FileExists(LibDestDir & "sqlite\Debug DLL\sqlite.lib") Then If Not FSO.FileExists(LibDestDir & "sqlite\Debug DLL\sqlite.lib") Then
...@@ -629,9 +617,10 @@ End Sub ...@@ -629,9 +617,10 @@ End Sub
Sub BuildLibs_libsndfile(BuildDebug, BuildRelease) Sub BuildLibs_libsndfile(BuildDebug, BuildRelease)
If Not FSO.FolderExists(LibDestDir & "libsndfile") Then If Not FSO.FolderExists(LibDestDir & "libsndfile") Then
WgetUnCompress LibsBase & "libsndfile-1.0.12.tar.gz", LibDestDir WgetUnCompress LibsBase & "libsndfile-1.0.16.tar.gz", LibDestDir
RenameFolder LibDestDir & "libsndfile-1.0.12", "libsndfile" RenameFolder LibDestDir & "libsndfile-1.0.16", "libsndfile"
FSO.CopyFile Utilsdir & "libsndfile.vcproj", LibDestDir & "libsndfile\Win32\", True FSO.CopyFile Utilsdir & "libsndfile\*.*", LibDestDir & "libsndfile\Win32\", True
FindReplaceInFile LibDestDir & "libsndfile\src\common.c", "memset (ptr + most,", "memset ((char *)ptr + most,"
End If End If
If FSO.FolderExists(LibDestDir & "libsndfile") Then If FSO.FolderExists(LibDestDir & "libsndfile") Then
If BuildDebug Then If BuildDebug Then
......
/*
** Copyright (C) 2002-2004 Erik de Castro Lopo <erikd@mega-nerd.com>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
** the Free Software Foundation; either version 2.1 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*
** This is the Win32 version of the file config.h which is autogenerated
** on Unix systems.
*/
#pragma warning (disable : 4244)
#pragma warning (disable : 4761)
/* Set to 1 if the compile is GNU GCC. */
/* #undef COMPILER_IS_GCC */
/* Target processor clips on negative float to int conversion. */
#define CPU_CLIPS_NEGATIVE 1
/* Target processor clips on positive float to int conversion. */
#define CPU_CLIPS_POSITIVE 0
/* Target processor is big endian. */
#define CPU_IS_BIG_ENDIAN 0
/* Target processor is little endian. */
#define CPU_IS_LITTLE_ENDIAN 1
/* Set to 1 to enable experimental code. */
#define ENABLE_EXPERIMENTAL_CODE 0
/* Major version of GCC or 3 otherwise. */
/* #undef GCC_MAJOR_VERSION */
/* Define to 1 if you have the <alsa/asoundlib.h> header file. */
/* #undef HAVE_ALSA_ASOUNDLIB_H */
/* Define to 1 if you have the <byteswap.h> header file. */
/* #undef HAVE_BYTESWAP_H */
/* Define to 1 if you have the `calloc' function. */
#define HAVE_CALLOC 1
/* Define to 1 if you have the `ceil' function. */
#define HAVE_CEIL 1
/* Set to 1 if S_IRGRP is defined. */
#define HAVE_DECL_S_IRGRP 0
/* Define to 1 if you have the <dlfcn.h> header file. */
/* #undef HAVE_DLFCN_H */
/* Define to 1 if you have the <endian.h> header file. */
/* #undef HAVE_ENDIAN_H */
/* Define to 1 if you have the `fdatasync' function. */
/* #undef HAVE_FDATASYNC */
/* Define to 1 if you have libflac 1.1.1 */
/* #undef HAVE_FLAC_1_1_1 1 */
/* Define to 1 if you have the <FLAC/all.h> header file. */
/* #undef HAVE_FLAC_ALL_H 1 */
/* Set to 1 if the compile supports the struct hack. */
#define HAVE_FLEXIBLE_ARRAY 1
/* Define to 1 if you have the `floor' function. */
#define HAVE_FLOOR 1
/* Define to 1 if you have the `fmod' function. */
#define HAVE_FMOD 1
/* Define to 1 if you have the `free' function. */
#define HAVE_FREE 1
/* Define to 1 if you have the `fstat' function. */
#define HAVE_FSTAT 1
/* Define to 1 if you have the `fsync' function. */
/* #undef HAVE_FSYNC */
/* Define to 1 if you have the `ftruncate' function. */
/* #undef HAVE_FTRUNCATE */
/* Define to 1 if you have the `getpagesize' function. */
#define HAVE_GETPAGESIZE 1
/* Define to 1 if you have the `gmtime' function. */
#define HAVE_GMTIME 1
/* Define to 1 if you have the `gmtime_r' function. */
/* #undef HAVE_GMTIME_R */
/* Define to 1 if you have the <inttypes.h> header file. */
/* #define HAVE_INTTYPES_H */
/* Define to 1 if you have the `m' library (-lm). */
#define HAVE_LIBM 1
/* Define if you have C99's lrint function. */
/* #undef HAVE_LRINT */
/* Define if you have C99's lrintf function. */
/* #undef HAVE_LRINTF */
/* Define to 1 if you have the `lseek' function. */
#define HAVE_LSEEK 1
/* Define to 1 if you have the `malloc' function. */
#define HAVE_MALLOC 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Define to 1 if you have the `mmap' function. */
/* #undef HAVE_MMAP */
/* Define to 1 if you have the `open' function. */
#define HAVE_OPEN 1
/* Define to 1 if you have the `pread' function. */
/* #undef HAVE_PREAD */
/* Define to 1 if you have the `pwrite' function. */
/* #undef HAVE_PWRITE */
/* Define to 1 if you have the `read' function. */
#define HAVE_READ 1
/* Define to 1 if you have the `realloc' function. */
#define HAVE_REALLOC 1
/* Define to 1 if you have the `snprintf' function. */
#define HAVE_SNPRINTF 1
/* Set to 1 if you have libsqlite3. */
/* #undef HAVE_SQLITE3 */
/* Define to 1 if the system has the type `ssize_t'. */
/* #undef HAVE_SSIZE_T */
/* Define to 1 if you have the <stdint.h> header file. */
/* #undef HAVE_STDINT_H */
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
/* #undef HAVE_SYS_WAIT_H */
/* Define to 1 if you have the <unistd.h> header file. */
/* #undef HAVE_UNISTD_H */
/* Define to 1 if you have the `vsnprintf' function. */
#define HAVE_VSNPRINTF 1
/* Define to 1 if you have the `write' function. */
#define HAVE_WRITE 1
/* Set to 1 if compiling for MacOSX */
#define OS_IS_MACOSX 0
/* Set to 1 if compiling for Win32 */
#define OS_IS_WIN32 1
/* Name of package */
#define PACKAGE "libsndfile"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "erikd@mega-nerd.com"
/* Define to the full name of this package. */
#define PACKAGE_NAME "libsndfile"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libsndfile 1.0.12"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libsndfile"
/* Define to the version of this package. */
#define PACKAGE_VERSION "1.0.12"
/* Set to maximum allowed value of sf_count_t type. */
#define SF_COUNT_MAX 0x7FFFFFFFFFFFFFFFi64
/* The size of a `double', as computed by sizeof. */
#define SIZEOF_DOUBLE 8
/* The size of a `float', as computed by sizeof. */
#define SIZEOF_FLOAT 4
/* The size of a `int', as computed by sizeof. */
#define SIZEOF_INT 4
/* The size of a `int64_t', as computed by sizeof. */
#define SIZEOF_INT64_T 0
/* The size of a `loff_t', as computed by sizeof. */
#define SIZEOF_LOFF_T 0
/* The size of a `long', as computed by sizeof. */
#define SIZEOF_LONG 4
/* The size of a `long long', as computed by sizeof. */
#define SIZEOF_LONG_LONG 0
/* The size of a `off64_t', as computed by sizeof. */
/* #undef SIZEOF_OFF64_T */
/* The size of a `off_t', as computed by sizeof. */
#define SIZEOF_OFF_T 4
/* Set to sizeof (long) if unknown. */
#define SIZEOF_SF_COUNT_T 8
/* The size of a `short', as computed by sizeof. */
#define SIZEOF_SHORT 2
/* The size of a `size_t', as computed by sizeof. */
#define SIZEOF_SIZE_T 4
/* The size of a `ssize_t', as computed by sizeof. */
#define SIZEOF_SSIZE_T 4
/* The size of a `void*', as computed by sizeof. */
#define SIZEOF_VOIDP 4
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Set to long if unknown. */
#define TYPEOF_SF_COUNT_T loff_t
/* Set to 1 to use the native windows API */
#define USE_WINDOWS_API 1
/* Version number of package */
#define VERSION "1.0.16"
/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _FILE_OFFSET_BITS */
/* Define to make fseeko etc. visible, on some hosts. */
/* #undef _LARGEFILE_SOURCE */
/* Define for large files, on AIX-style hosts. */
/* #undef _LARGE_FILES */
/*
** Do not edit or modify anything in this comment block.
** The arch-tag line is a file identity tag for the GNU Arch
** revision control system.
**
** arch-tag: 78a733c0-a430-46bd-81ab-4e479fbcffac
*/
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="libsndfile"
ProjectGUID="{3D0370CA-BED2-4657-A475-32375CBCB6E4}"
RootNamespace="libsndfile"
Keyword="Win32Proj"
>
<Platforms>
<Platform
Name="Win32"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
IntermediateDirectory="$(ConfigurationName)"
ConfigurationType="4"
CharacterSet="0"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
UseUnicodeResponseFiles="true"
Optimization="0"
AdditionalIncludeDirectories="..\src;."
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;inline=__inline;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
MinimalRebuild="true"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
UsePrecompiledHeader="0"
WarningLevel="1"
Detect64BitPortabilityProblems="true"
DebugInformationFormat="4"
CompileAs="1"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLibrarianTool"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
IntermediateDirectory="$(ConfigurationName)"
ConfigurationType="4"
CharacterSet="0"
WholeProgramOptimization="1"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
UseUnicodeResponseFiles="true"
AdditionalIncludeDirectories="..\src;."
PreprocessorDefinitions="WIN32;NDEBUG;_LIB;inline=__inline;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
RuntimeLibrary="2"
UsePrecompiledHeader="0"
WarningLevel="1"
Detect64BitPortabilityProblems="true"
DebugInformationFormat="3"
CompileAs="1"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLibrarianTool"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<Filter
Name="Source Files"
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
<File
RelativePath="..\src\aiff.c"
>
</File>
<File
RelativePath="..\src\alaw.c"
>
</File>
<File
RelativePath="..\src\au.c"
>
</File>
<File
RelativePath="..\src\avr.c"
>
</File>
<File
RelativePath="..\src\broadcast.c"
>
</File>
<File
RelativePath="..\src\caf.c"
>
</File>
<File
RelativePath="..\src\command.c"
>
</File>
<File
RelativePath="..\src\common.c"
>
</File>
<File
RelativePath="..\src\dither.c"
>
</File>
<File
RelativePath="..\src\double64.c"
>
</File>
<File
RelativePath="..\src\dwd.c"
>
</File>
<File
RelativePath="..\src\dwvw.c"
>
</File>
<File
RelativePath="..\src\file_io.c"
>
</File>
<File
RelativePath="..\src\flac.c"
>
</File>
<File
RelativePath="..\src\float32.c"
>
</File>
<File
RelativePath="..\src\g72x.c"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
ObjectFile="$(IntDir)\$(InputName)1.obj"
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
ObjectFile="$(IntDir)\$(InputName)1.obj"
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
/>
</FileConfiguration>
</File>
<File
RelativePath="..\src\gsm610.c"
>
</File>
<File
RelativePath="..\src\htk.c"
>
</File>
<File
RelativePath="..\src\ima_adpcm.c"
>
</File>
<File
RelativePath="..\src\ircam.c"
>
</File>
<File
RelativePath="..\src\mat4.c"
>
</File>
<File
RelativePath="..\src\mat5.c"
>
</File>
<File
RelativePath="..\src\ms_adpcm.c"
>
</File>
<File
RelativePath="..\src\nist.c"
>
</File>
<File
RelativePath="..\src\ogg.c"
>
</File>
<File
RelativePath="..\src\paf.c"
>
</File>
<File
RelativePath="..\src\pcm.c"
>
</File>
<File
RelativePath="..\src\pvf.c"
>
</File>
<File
RelativePath="..\src\raw.c"
>
</File>
<File
RelativePath="..\src\rx2.c"
>
</File>
<File
RelativePath="..\src\sd2.c"
>
</File>
<File
RelativePath="..\src\sds.c"
>
</File>
<File
RelativePath="..\src\sndfile.c"
>
</File>
<File
RelativePath="..\src\strings.c"
>
</File>
<File
RelativePath="..\src\svx.c"
>
</File>
<File
RelativePath="..\src\txw.c"
>
</File>
<File
RelativePath="..\src\ulaw.c"
>
</File>
<File
RelativePath="..\src\voc.c"
>
</File>
<File
RelativePath="..\src\vox_adpcm.c"
>
</File>
<File
RelativePath="..\src\w64.c"
>
</File>
<File
RelativePath="..\src\wav.c"
>
</File>
<File
RelativePath="..\src\wav_w64.c"
>
</File>
<File
RelativePath="..\src\wve.c"
>
</File>
<File
RelativePath="..\src\xi.c"
>
</File>
<Filter
Name="GSM Sources"
>
<File
RelativePath="..\src\GSM610\add.c"
>
</File>
<File
RelativePath="..\src\GSM610\code.c"
>
</File>
<File
RelativePath="..\src\GSM610\decode.c"
>
</File>
<File
RelativePath="..\src\GSM610\gsm_create.c"
>
</File>
<File
RelativePath="..\src\GSM610\gsm_decode.c"
>
</File>
<File
RelativePath="..\src\GSM610\gsm_destroy.c"
>
</File>
<File
RelativePath="..\src\GSM610\gsm_encode.c"
>
</File>
<File
RelativePath="..\src\GSM610\gsm_option.c"
>
</File>
<File
RelativePath="..\src\GSM610\long_term.c"
>
</File>
<File
RelativePath="..\src\GSM610\lpc.c"
>
</File>
<File
RelativePath="..\src\GSM610\preprocess.c"
>
</File>
<File
RelativePath="..\src\GSM610\rpe.c"
>
</File>
<File
RelativePath="..\src\GSM610\short_term.c"
>
</File>
<File
RelativePath="..\src\GSM610\table.c"
>
</File>
</Filter>
<Filter
Name="G72X Sources"
>
<File
RelativePath="..\src\G72x\g721.c"
>
</File>
<File
RelativePath="..\src\G72x\g723_16.c"
>
</File>
<File
RelativePath="..\src\G72x\g723_24.c"
>
</File>
<File
RelativePath="..\src\G72x\g723_40.c"
>
</File>
<File
RelativePath="..\src\G72x\g72x.c"
>
</File>
</Filter>
</Filter>
<Filter
Name="Header Files"
Filter="h;hpp;hxx;hm;inl;inc;xsd"
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
>
</Filter>
<Filter
Name="Resource Files"
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
>
</Filter>
</Files>
<Globals>
</Globals>
</VisualStudioProject>
差异被折叠。
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论