fix windows spandsp build for recent commits
This commit is contained in:
parent
5a0d9514db
commit
d2b940d9fc
File diff suppressed because it is too large
Load Diff
|
@ -208,6 +208,8 @@
|
|||
<ClCompile Include="super_tone_tx.c" />
|
||||
<ClCompile Include="swept_tone.c" />
|
||||
<ClCompile Include="t4_rx.c" />
|
||||
<ClCompile Include="t4_t6_decode.c" />
|
||||
<ClCompile Include="t4_t6_encode.c" />
|
||||
<ClCompile Include="t4_tx.c" />
|
||||
<ClCompile Include="t30.c" />
|
||||
<ClCompile Include="t30_api.c" />
|
||||
|
@ -218,6 +220,9 @@
|
|||
<ClCompile Include="t38_gateway.c" />
|
||||
<ClCompile Include="t38_non_ecm_buffer.c" />
|
||||
<ClCompile Include="t38_terminal.c" />
|
||||
<ClCompile Include="t81_t82_arith_coding.c" />
|
||||
<ClCompile Include="t85_decode.c" />
|
||||
<ClCompile Include="t85_encode.c" />
|
||||
<ClCompile Include="testcpuid.c" />
|
||||
<ClCompile Include="time_scale.c" />
|
||||
<ClCompile Include="timezone.c" />
|
||||
|
@ -282,6 +287,8 @@
|
|||
<ClInclude Include="spandsp\plc.h" />
|
||||
<ClInclude Include="spandsp\power_meter.h" />
|
||||
<ClInclude Include="spandsp\private\ademco_contactid.h" />
|
||||
<ClInclude Include="spandsp\private\t81_t82_arith_coding.h" />
|
||||
<ClInclude Include="spandsp\private\t85.h" />
|
||||
<ClInclude Include="spandsp\queue.h" />
|
||||
<ClInclude Include="spandsp\saturated.h" />
|
||||
<ClInclude Include="spandsp\schedule.h" />
|
||||
|
@ -304,6 +311,8 @@
|
|||
<ClInclude Include="spandsp\t38_gateway.h" />
|
||||
<ClInclude Include="spandsp\t38_non_ecm_buffer.h" />
|
||||
<ClInclude Include="spandsp\t38_terminal.h" />
|
||||
<ClInclude Include="spandsp\t81_t82_arith_coding.h" />
|
||||
<ClInclude Include="spandsp\t85.h" />
|
||||
<ClInclude Include="spandsp\telephony.h" />
|
||||
<ClInclude Include="spandsp\time_scale.h" />
|
||||
<ClInclude Include="spandsp\timing.h" />
|
||||
|
|
|
@ -259,6 +259,21 @@
|
|||
<ClCompile Include="ademco_contactid.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="t81_t82_arith_coding.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="t85_decode.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="t85_encode.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="t4_t6_decode.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="t4_t6_encode.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="spandsp\adsi.h">
|
||||
|
@ -674,6 +689,18 @@
|
|||
<ClInclude Include="spandsp\private\ademco_contactid.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="spandsp\private\t81_t82_arith_coding.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="spandsp\private\t85.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="spandsp\t81_t82_arith_coding.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="spandsp\t85.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="msvc\spandsp.h" />
|
||||
|
|
|
@ -104,6 +104,8 @@
|
|||
#include <spandsp/t4_tx.h>
|
||||
#include <spandsp/t4_t6_decode.h>
|
||||
#include <spandsp/t4_t6_encode.h>
|
||||
#include <spandsp/t81_t82_arith_coding.h>
|
||||
#include <spandsp/t85.h>
|
||||
#include <spandsp/t30.h>
|
||||
#include <spandsp/t30_api.h>
|
||||
#include <spandsp/t30_fcf.h>
|
||||
|
|
|
@ -81,6 +81,10 @@
|
|||
|
||||
#include "faxfont.h"
|
||||
|
||||
#ifndef UINT32_MAX
|
||||
#define UINT32_MAX 0xffffffff
|
||||
#endif
|
||||
|
||||
/*! The number of centimetres in one inch */
|
||||
#define CM_PER_INCH 2.54f
|
||||
|
||||
|
|
|
@ -46,6 +46,10 @@
|
|||
#include "spandsp/private/t81_t82_arith_coding.h"
|
||||
#include "spandsp/private/t85.h"
|
||||
|
||||
#ifndef UINT32_MAX
|
||||
#define UINT32_MAX 0xffffffff
|
||||
#endif
|
||||
|
||||
/* Image length update status */
|
||||
enum
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue