shithub: opus

Download patch

ref: c8231202b28baf455efecee3d51d529222660817
parent: 57fa05633f61574db681b5067272d2b386f886ea
author: Ralph Giles <[email protected]>
date: Fri Nov 9 04:42:59 EST 2012

Add the new source files to the MSVC projects.

Commits ae0e2ca8 and 6906210c split encode and decode
support into separate files to help reduce the footprint
of decode-only builds.

This commit adds the new source files to the MSVC
project files, fixing that build.

--- a/celt/celt.vcxproj
+++ b/celt/celt.vcxproj
@@ -216,6 +216,8 @@
   <ItemGroup>
     <ClCompile Include="bands.c" />
     <ClCompile Include="celt.c" />
+    <ClCompile Include="celt_decoder.c" />
+    <ClCompile Include="celt_encoder.c" />
     <ClCompile Include="cwrs.c" />
     <ClCompile Include="entcode.c" />
     <ClCompile Include="entdec.c" />
@@ -234,4 +236,4 @@
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
-</Project>
\ No newline at end of file
+</Project>
--- a/celt/celt.vcxproj.filters
+++ b/celt/celt.vcxproj.filters
@@ -95,6 +95,12 @@
     <ClCompile Include="celt.c">
       <Filter>Source Files</Filter>
     </ClCompile>
+    <ClCompile Include="celt_decoder.c">
+      <Filter>Source Files</Filter>
+    </ClCompile>
+    <ClCompile Include="celt_encoder.c">
+      <Filter>Source Files</Filter>
+    </ClCompile>
     <ClCompile Include="cwrs.c">
       <Filter>Source Files</Filter>
     </ClCompile>
@@ -138,4 +144,4 @@
       <Filter>Source Files</Filter>
     </ClCompile>
   </ItemGroup>
-</Project>
\ No newline at end of file
+</Project>
--- a/src/opus.vcxproj
+++ b/src/opus.vcxproj
@@ -198,6 +198,8 @@
     <ClCompile Include="opus_decoder.c" />
     <ClCompile Include="opus_encoder.c" />
     <ClCompile Include="opus_multistream.c" />
+    <ClCompile Include="opus_multistream_decoder.c" />
+    <ClCompile Include="opus_multistream_encoder.c" />
     <ClCompile Include="repacketizer.c" />
   </ItemGroup>
   <ItemGroup>
--- a/src/opus.vcxproj.filters
+++ b/src/opus.vcxproj.filters
@@ -30,6 +30,12 @@
     <ClCompile Include="opus_multistream.c">
       <Filter>Source Files</Filter>
     </ClCompile>
+    <ClCompile Include="opus_multistream_decoder.c">
+      <Filter>Source Files</Filter>
+    </ClCompile>
+    <ClCompile Include="opus_multistream_encoder.c">
+      <Filter>Source Files</Filter>
+    </ClCompile>
     <ClCompile Include="analysis.c">
       <Filter>Source Files</Filter>
     </ClCompile>
@@ -87,4 +93,4 @@
       <Filter>Header Files</Filter>
     </ClInclude>
   </ItemGroup>
-</Project>
\ No newline at end of file
+</Project>