aboutsummaryrefslogtreecommitdiff
path: root/win32
AgeCommit message (Collapse)Author
2016-07-26Create a simple project to create version.h.Ricardo Constantino (:RiCON)
Run before any other project. Avoids trying to create and replace version.h more than once which led to file-locking errors with multicore builds. Signed-off-by: Ralph Giles <giles@mozilla.com>
2016-05-18Move .exe back to root .gitignore for mingw buildsRicardo Constantino (:RiCON)
2016-05-18Remove VS2010 project files.Ralph Giles
Visual Studio 2015 has been out for a while, and has a gratis version. It doesn't make sense to maintain parallel support for older releases.
2016-05-17Move Visual Studio GitIgnores to own fileOrestes Zoupanos
2016-05-17Fix DLL errors and Additional Library DirectoriesOrestes Zoupanos
2016-05-11Fix VS2015 dynamic builds by adding DLL_EXPORT to CFLAGSRicardo Constantino (:RiCON)
Needed after 6e96173.
2016-05-11fix build settings for DLL project, runtime library must be linked to DLL ↵uraymeiviar
too to prevent heap deallocation error
2016-05-11Added Visual Studio 2015 solution and added ReleaseDLL and DebugDLL Project ↵uraymeiviar
settings to produce .dll file instead of .lib
2015-09-01Use ProjectReference rather than AdditionalDependencies for test programs, ↵Jonathan Lennox
so build dependencies are right. Actually add source code to opus_demo project, and fix its include paths.
2015-09-01Add intrinsics support to Visual Studio build.Jonathan Lennox
2014-07-03Add ~ to the arguments of genversion.batJoshua Milas
genversion.bat would fail if an argument was passed with quotations. This is because the quotations were not being stripped before using them as variables, causing the _temp files not being created. Adding ~ to the arguments causes windows to strip the quotations, enabling it to be used with path names containing spaces and the MSVS pre-build event. Signed-off-by: Ralph Giles <giles@mozilla.com>
2013-11-28Drop the use of --always to git-describeRon
This is a partial revert of c435f06b308e52d7a5d2aad9eec98a1541832b47, since it didn't actually fix the original problem with shallow clones. It returns just a hash, not something we (currently) can extract as a version string in the form things are expecting.
2013-10-28Replace "inline" with OPUS_INLINE.Gregory Maxwell
Newer versions of MSVC are unhappy with the strategy of the build environment redefining "inline" (even though they don't support the actual keyword). Instead we define OPUS_INLINE to the right thing in opus_defines.h. This is the same approach we use for restrict.
2013-10-01Don't use --dirty in genversion.bat.Ralph Giles
This script updates version.mk, which is under version control, so the tree is always dirty. Until the script is updated to write package_version instead, incorporating version.mk as a fallback the way update_version does, it's better not to use --dirty.
2013-10-01Pass --always to git describe.Ralph Giles
This generates a useful version string even for --depth=1 checkouts. The option was added in git v1.6.6.
2013-08-21Fix more VS2010 header paths.Ralph Giles
2013-08-21Fix relative paths the header file in the VS2010 projects.Ralph Giles
This prevented opening the files from the 'Solution Explorer' interface where the source listing is displayed. Thanks to Koen Vos for reporting the issue.
2013-07-15Disable MSVC posix security warnings in the project file.Ralph Giles
By default Visual Studio warns about various C stdlib calls, recommending non-portable replacements instead. We disable this warning in a number of places in the source. Since they're specific to the Visual Studio build, it's better to disable them just in the project files where they always apply to the correct toolchain. I have only added the disable setting to project files which need it currently: opus, test_opus_encode, and test_opus_decode.
2013-06-27Big squashed commit of Garf's MSVC reorg:Jean-Marc Valin
commit 77880655f652c54415e4b5f03b5984b951f5267b Author: Timothy B. Terriberry <tterribe@xiph.org> Date: Wed Jun 26 12:23:53 2013 +0200 Fix version.mk parsing in genversion.bat. This was broken by the changes in 0482c82f to make it work with spaces. CMD interprets the quotes to mean the argument to FOR is a string, not a file name. Instead, we expand the path to a short file name. Signed-off-by: Gian-Carlo Pascutto <gcp@sjeng.org> commit 8e97847ecac3a04956747b117fefef14939cbcbe Merge: 0482c82 3c0aa8f Author: Gian-Carlo Pascutto <gcp@sjeng.org> Date: Wed Jun 26 12:19:41 2013 +0200 Merge branch 'master' into msvc_reorg commit 0482c82fea6dd397a7d2ab50dc6cda4965278fc2 Author: Gian-Carlo Pascutto <gcp@sjeng.org> Date: Tue May 21 17:59:30 2013 +0200 Make genversion.bat work in paths with spaces. commit 3648ec55b7511119735280fc49bc57c7a3b55d6a Author: Gian-Carlo Pascutto <gcp@sjeng.org> Date: Tue May 21 17:42:14 2013 +0200 Rework output & intermediate dirs for parallel build support. commit c367a0fcfcbf5551fb65d61365d9b832d7af2b38 Merge: bafb1dd b518b56 Author: Gian-Carlo Pascutto <gcp@sjeng.org> Date: Tue May 21 14:17:11 2013 +0200 Merge branch 'master' into msvc_reorg Conflicts: win32/VS2010/celt.vcxproj win32/VS2010/opus.vcxproj win32/VS2010/silk_common.vcxproj win32/VS2010/silk_float.vcxproj commit bafb1dda3fcf6785decdfb42a1f934c7fab0c567 Author: Gian-Carlo Pascutto <gcp@sjeng.org> Date: Mon Mar 11 21:25:28 2013 +0100 Fix two more files to not have the Platform Toolset explicitly set. commit c69c870201fec7461862fe79731a37866a1810f1 Author: Gian-Carlo Pascutto <gcp@sjeng.org> Date: Mon Mar 11 21:08:00 2013 +0100 Add missing SILK MSVC project files. commit a0d41fb7f97558c8f812d500b9027c77907c37c0 Author: Gian-Carlo Pascutto <gcp@sjeng.org> Date: Fri Mar 8 15:00:51 2013 +0100 Use the default toolset in the MSVC project files. commit 34aac5b2637ed38c5620f0d876e08db232849933 Author: Gian-Carlo Pascutto <gcp@sjeng.org> Date: Fri Mar 8 14:54:41 2013 +0100 Move the MSVC project files outside the source tree. Bring the project structure more in line with the one in libogg.
2013-06-17Enable SSE for MSVCMuldeR
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2013-05-19Convert quotes in license headers to ASCII.Timothy B. Terriberry
Since the last patch originally had them mangled (presumably by mailer, http server, or something else), let's just get rid of them.
2012-12-21missing comment in win32/config.hJean-Marc Valin
2012-12-07Remove the obsolete CELT_BUILD define from win32/config.h.Ralph Giles
2012-10-30Adds missing license headers on some scripts and test filesJean-Marc Valin
2012-10-23Include process.h for _getpid on windows.Ralph Giles
Previously the test programmes happened to link because _getpid returns an int, which is the default prototype. Instead, include the appropriate header to supply a real declaration, fixing the associated warning. I moved the getpid->_getpid define to the site of the header inclusion to make clear what's going on, rather than have it floating in win32/config.h.
2012-08-16genversion now adds the header comment to version.mkChris Moeller
2012-08-16Updated Win32 genversion.bat to generate version.mk if Git is found, use it ↵Chris Moeller
if it isn't, and produce unknown version and leave it untouched if it isn't already found
2012-08-09Disable stack-protector for mingw32 and remove win32 restrict define.Gregory Maxwell
2012-07-20Fixes MSVC projects and adds git version generator toolChris Moeller
2012-07-16Make MSVC build work in parallel.Gian-Carlo Pascutto
The (non-default) temporary & output dirs configured in the projects could cause issues when doing compilation on a multiprocessor machine. Cleaned this up a little to use the defaults, which makes that work again and doesn't make the output structure any worse. Also removed debug output for release binaries & a tiny whitespace fix.
2012-07-12Make tests work on MSVC.Gian-Carlo Pascutto
Add project files for Opus tests, fixup test source for Win32.
2012-07-12Make compiler settings consistent. Actually produce the libary, remove the ↵Gian-Carlo Pascutto
opus_demo for now.
2011-12-13SILK fixes following last codec WG meetingKoen Vos
decoder: - fixed incorrect scaling of filter states for the smallest quantization step sizes - NLSF2A now limits the prediction gain of LPC filters encoder: - increased damping of LTP coefficients in LTP analysis - increased white noise fraction in noise shaping LPC analysis - introduced maximum total prediction gain. Used by Burg's method to exit early if prediction gain is exceeded. This improves packet loss robustness and numerical robustness in Burg's method - Prefiltered signal is now in int32 Q10 domain, from int16 Q0 - Increased max number of iterations in CBR gain control loop from 5 to 6 - Removed useless code from LTP scaling control - Optimization: smarter LPC loop unrolling - Switched default win32 compile mode to be floating-point resampler: - made resampler have constant delay of 0.75 ms; removed delay compensation from silk code. - removed obsolete table entries (~850 Bytes) - increased downsampling filter order from 16 to 18/24/36 (depending on frequency ratio) - reoptimized filter coefficients
2011-08-30Adds many syntactically unnecessary parentheses to silence GCC -Wparentheses.Gregory Maxwell
The object code is unchanged (except ectest). Also reenables -Wparentheses, -Wsign-compare, and the MSVC warnings.
2011-08-29Removes // from win32/config.hJean-Marc Valin
2011-07-29Renamed celt_word* to opus_val*Jean-Marc Valin
2011-05-02Squashed commit of the following:Koen Vos
commit dfe4d46f9abf6b0e96e66370d428da4e283204ce Author: Jean-Marc Valin <jean-marc.valin@octasic.com> Date: Mon May 2 09:59:45 2011 -0400 SILK file list update commit 5faf541d86445eb8ce1775ea206e88afe83c7107 Author: Jean-Marc Valin <jean-marc.valin@octasic.com> Date: Mon May 2 09:51:29 2011 -0400 Makefiles update commit f5d70b3ccbe209cc07a1a604fffca93ea34bc64b Author: Koen Vos <koen.vos@skype.net> Date: Mon May 2 09:50:33 2011 -0400 SILK stereo update and MSVC build update
2011-02-14Win32 config.hJean-Marc Valin