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

github.com/alexmarsev/soundtouch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-29Fixed typooparviai
2012-12-28Fine tuning of Android compilationoparviai
2012-12-28Removed piece of dead codeoparviai
2012-12-28Set version to 1.7.1oparviai
2012-12-28Added files for Android example compilationoparviai
2012-12-28Added files for Android example compilationoparviai
2012-11-08Fixed pointer aligning for mingw64 compilationoparviai
2012-11-08Fixed #include files for mingw64 compilationoparviai
2012-09-29Updated DLL compilation in GNUoparviai
2012-09-01Added test script for linux environmentoparviai
2012-09-01Added test scriptoparviai
2012-09-01Fixed 8bit file processing in integer versionoparviai
2012-09-01Fixed 8bit file processing in integer versionoparviai
2012-09-01Eliminate compiler warningoparviai
2012-09-01Fixed 8bit file processingoparviai
2012-08-30Adjustments in beat detectionoparviai
2012-08-30Adjustments in beat detectionoparviai
2012-08-30Added utility function to get elapsed duration i.e. how much so far has been ↵oparviai
read from the WAV file
2012-08-30Increased "climbcount" to improve peak detectionoparviai
2012-08-30Eliminated some compiler warningsoparviai
2012-08-24Changed 'long' types to 'int'soparviai
2012-08-23Added wav file support for 24/32 bit samples, as far as data is read into ↵oparviai
floating point variables.
2012-06-13Improved flush() for better output stream duration accuracyoparviai
2012-04-04Updated comment to include vsvars32.batoparviai
2012-04-04Updated version to 1.7.0oparviai
2012-04-04Fix integer overflow error in getLengthMSoparviai
2012-04-04Fix cpuid.h detection in configure.acoparviai
Only gcc in the x86 architectures contain cpuid.h. Therefore this would not compile in other architectures. . To fix this: 1) Pass a warning instead of an error saying that the header file is missing. 2) Disable optimizations if cpuid.h was not found. . Behaviour: 1) In non-x86 architectures we have no cpuid.h. We give a warning which I hope makes sense and is basically saying this is normal in non-x86 architectures and and we will ALWAYS disable the optimizations. 2) In x86 architectures with cpuid.h we get the desired behaviour and check if the user request optimizations and if they are supported by the cpu. 3) In x86 architectures w/o cpuid.h we give a warning basically telling the user to upgrade gcc and we ALWAYS disable optimizations since we can only tell there is sse/mmx support at build time but not at runtime. 4) In non-x86 architectures with some unexpected cpuid.h the sse/mmx checks should fail and these optimizations will get disabled. . Tested in: amd64, i386: x86 + cpuid.h armel, armhf: non-x86 + no cpuid.h armel, armhf: non-x86 + dummy cpuid.h to pass test . The last test should simulate the case of an x86 with no mmx/sse (old i386). The 2nd test should be equal to x86 + no cpuid.h. Author: Miguel Colon <debian.micove@gmail.com>
2012-04-02minor patchesoparviai
2012-04-01Time stretch routine improvements: oparviai
- improved sound quality - streamlined code
2012-04-01CPUID routine bugfix: replaced inline assembly routine not working with all ↵oparviai
environment with __cpuid compiler intrinsic.
2012-04-01Untabify TDStretch.hoparviai
2012-04-01Added resource.hoparviai
2011-12-31Added U for unsigned numeric constantoparviai
2011-12-31Improved BPM detection routine to better spot harmonics for the strongest ↵oparviai
beat pattern.
2011-09-02Added a compile-time switch to disable throwing c++ exceptionsoparviai
2011-07-17Updated version id to 1.6.1preoparviai
2011-07-17Added configure flags to disable x86 optimizationsoparviai
2011-07-17Removed linker -strip option from SoundStretch gcc compilationoparviai
2011-07-17#define compatibility patchesoparviai
2011-07-17Repaired int-to-string conversion in exception message formattingoparviai
2011-07-16Fixed #ifdefsoparviai
2011-07-16Cleaned commentsoparviai
2011-07-16Update copyright yearoparviai
2011-07-16x64bit compilation supportoparviai
2011-07-16Fixed indent alignmentoparviai
2011-07-16Updated "Release" build setting in VC++ project files.oparviai
2011-07-16Updated SoundTouch.dll version infooparviai
2011-07-16Added _CRT_SECURE_NO_WARNINGS to SoundTouchDll project file to disable MS ↵oparviai
warnings about stdio functions
2011-07-16Replaced assert macros for supported bits-per-sample with runtime exceptionsoparviai
2011-07-16Added _CRT_SECURE_NO_WARNINGS to SoundStretch project file to disable MS ↵oparviai
warnings about stdio functions