Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorRicardo Constantino (:RiCON) <wiiaboo@gmail.com>2016-07-20 17:26:19 +0300
committerRalph Giles <giles@mozilla.com>2016-07-26 19:53:00 +0300
commit1aa851445b984a78941a4bad786a7af6b3fdfe73 (patch)
tree3d73caa7d4023a90b15eb33879cbe46992e39382 /win32
parent39d78b9805d90aa98600c4cbf7e678ca6590abd0 (diff)
VS2015: Mirror changes in *.mk files from exp_lbr_tune merge.
Signed-off-by: Ralph Giles <giles@mozilla.com>
Diffstat (limited to 'win32')
-rw-r--r--win32/VS2015/silk_common.vcxproj1
-rw-r--r--win32/VS2015/silk_common.vcxproj.filters3
-rw-r--r--win32/VS2015/silk_fixed.vcxproj3
-rw-r--r--win32/VS2015/silk_fixed.vcxproj.filters9
-rw-r--r--win32/VS2015/silk_float.vcxproj3
-rw-r--r--win32/VS2015/silk_float.vcxproj.filters9
6 files changed, 4 insertions, 24 deletions
diff --git a/win32/VS2015/silk_common.vcxproj b/win32/VS2015/silk_common.vcxproj
index bb496fea..64e604ff 100644
--- a/win32/VS2015/silk_common.vcxproj
+++ b/win32/VS2015/silk_common.vcxproj
@@ -618,6 +618,7 @@
<ClCompile Include="..\..\silk\lin2log.c" />
<ClCompile Include="..\..\silk\log2lin.c" />
<ClCompile Include="..\..\silk\LPC_analysis_filter.c" />
+ <ClCompile Include="..\..\silk\LPC_fit.c" />
<ClCompile Include="..\..\silk\LPC_inv_pred_gain.c" />
<ClCompile Include="..\..\silk\LP_variable_cutoff.c" />
<ClCompile Include="..\..\silk\NLSF2A.c" />
diff --git a/win32/VS2015/silk_common.vcxproj.filters b/win32/VS2015/silk_common.vcxproj.filters
index c41064e7..415700ff 100644
--- a/win32/VS2015/silk_common.vcxproj.filters
+++ b/win32/VS2015/silk_common.vcxproj.filters
@@ -332,5 +332,8 @@
<ClCompile Include="..\..\silk\x86\x86_silk_map.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\silk\LPC_fit.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
</Project>
diff --git a/win32/VS2015/silk_fixed.vcxproj b/win32/VS2015/silk_fixed.vcxproj
index 542df7ce..f3d63d52 100644
--- a/win32/VS2015/silk_fixed.vcxproj
+++ b/win32/VS2015/silk_fixed.vcxproj
@@ -499,18 +499,15 @@
<ClCompile Include="..\..\silk\fixed\LTP_scale_ctrl_FIX.c" />
<ClCompile Include="..\..\silk\fixed\noise_shape_analysis_FIX.c" />
<ClCompile Include="..\..\silk\fixed\pitch_analysis_core_FIX.c" />
- <ClCompile Include="..\..\silk\fixed\prefilter_FIX.c" />
<ClCompile Include="..\..\silk\fixed\process_gains_FIX.c" />
<ClCompile Include="..\..\silk\fixed\regularize_correlations_FIX.c" />
<ClCompile Include="..\..\silk\fixed\residual_energy16_FIX.c" />
<ClCompile Include="..\..\silk\fixed\residual_energy_FIX.c" />
<ClCompile Include="..\..\silk\fixed\schur64_FIX.c" />
<ClCompile Include="..\..\silk\fixed\schur_FIX.c" />
- <ClCompile Include="..\..\silk\fixed\solve_LS_FIX.c" />
<ClCompile Include="..\..\silk\fixed\vector_ops_FIX.c" />
<ClCompile Include="..\..\silk\fixed\warped_autocorrelation_FIX.c" />
<ClCompile Include="..\..\silk\fixed\x86\burg_modified_FIX_sse.c" />
- <ClCompile Include="..\..\silk\fixed\x86\prefilter_FIX_sse.c" />
<ClCompile Include="..\..\silk\fixed\x86\vector_ops_FIX_sse.c" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
diff --git a/win32/VS2015/silk_fixed.vcxproj.filters b/win32/VS2015/silk_fixed.vcxproj.filters
index c2327ebf..29f42f34 100644
--- a/win32/VS2015/silk_fixed.vcxproj.filters
+++ b/win32/VS2015/silk_fixed.vcxproj.filters
@@ -41,9 +41,6 @@
<ClCompile Include="..\..\silk\fixed\pitch_analysis_core_FIX.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\silk\fixed\prefilter_FIX.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\silk\fixed\process_gains_FIX.c">
<Filter>Source Files</Filter>
</ClCompile>
@@ -62,9 +59,6 @@
<ClCompile Include="..\..\silk\fixed\schur64_FIX.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\silk\fixed\solve_LS_FIX.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\silk\fixed\vector_ops_FIX.c">
<Filter>Source Files</Filter>
</ClCompile>
@@ -110,9 +104,6 @@
<ClCompile Include="..\..\silk\fixed\x86\burg_modified_FIX_sse.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\silk\fixed\x86\prefilter_FIX_sse.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\silk\fixed\x86\vector_ops_FIX_sse.c">
<Filter>Source Files</Filter>
</ClCompile>
diff --git a/win32/VS2015/silk_float.vcxproj b/win32/VS2015/silk_float.vcxproj
index 3579bd4c..7d488292 100644
--- a/win32/VS2015/silk_float.vcxproj
+++ b/win32/VS2015/silk_float.vcxproj
@@ -581,21 +581,18 @@
<ClCompile Include="..\..\silk\float\find_pred_coefs_FLP.c" />
<ClCompile Include="..\..\silk\float\inner_product_FLP.c" />
<ClCompile Include="..\..\silk\float\k2a_FLP.c" />
- <ClCompile Include="..\..\silk\float\levinsondurbin_FLP.c" />
<ClCompile Include="..\..\silk\float\LPC_analysis_filter_FLP.c" />
<ClCompile Include="..\..\silk\float\LPC_inv_pred_gain_FLP.c" />
<ClCompile Include="..\..\silk\float\LTP_analysis_filter_FLP.c" />
<ClCompile Include="..\..\silk\float\LTP_scale_ctrl_FLP.c" />
<ClCompile Include="..\..\silk\float\noise_shape_analysis_FLP.c" />
<ClCompile Include="..\..\silk\float\pitch_analysis_core_FLP.c" />
- <ClCompile Include="..\..\silk\float\prefilter_FLP.c" />
<ClCompile Include="..\..\silk\float\process_gains_FLP.c" />
<ClCompile Include="..\..\silk\float\regularize_correlations_FLP.c" />
<ClCompile Include="..\..\silk\float\residual_energy_FLP.c" />
<ClCompile Include="..\..\silk\float\scale_copy_vector_FLP.c" />
<ClCompile Include="..\..\silk\float\scale_vector_FLP.c" />
<ClCompile Include="..\..\silk\float\schur_FLP.c" />
- <ClCompile Include="..\..\silk\float\solve_LS_FLP.c" />
<ClCompile Include="..\..\silk\float\sort_FLP.c" />
<ClCompile Include="..\..\silk\float\warped_autocorrelation_FLP.c" />
<ClCompile Include="..\..\silk\float\wrappers_FLP.c" />
diff --git a/win32/VS2015/silk_float.vcxproj.filters b/win32/VS2015/silk_float.vcxproj.filters
index 33d25baa..2d35d893 100644
--- a/win32/VS2015/silk_float.vcxproj.filters
+++ b/win32/VS2015/silk_float.vcxproj.filters
@@ -38,9 +38,6 @@
<ClCompile Include="..\..\silk\float\schur_FLP.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\silk\float\solve_LS_FLP.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\silk\float\sort_FLP.c">
<Filter>Source Files</Filter>
</ClCompile>
@@ -89,9 +86,6 @@
<ClCompile Include="..\..\silk\float\k2a_FLP.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\silk\float\levinsondurbin_FLP.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\silk\float\LPC_analysis_filter_FLP.c">
<Filter>Source Files</Filter>
</ClCompile>
@@ -110,9 +104,6 @@
<ClCompile Include="..\..\silk\float\pitch_analysis_core_FLP.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\silk\float\prefilter_FLP.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\silk\float\process_gains_FLP.c">
<Filter>Source Files</Filter>
</ClCompile>