publish changes

This commit is contained in:
Archie 2024-09-29 02:04:03 +00:00
parent afc5064a7b
commit ac2c6ac843
1605 changed files with 3354 additions and 3354 deletions

View file

@ -749,7 +749,7 @@
replacing global labels such as INTEGER_SAMPLES with more specific
SOUNDTOUCH_INTEGER_SAMPLES etc.<br>
</li>
<li>Updated windows build scripts &amp; project files for Visual
<li>Updated arch build scripts &amp; project files for Visual
Studio 2008 support</li>
<li> Updated SoundTouch.dll API for .NET compatibility</li>
<li> Added API for querying nominal processing input &amp; output
@ -850,7 +850,7 @@
are now implemented in classes that are derived from the basic classes
having the standard non-mmx routines.</li>
<li> MMX routines to support gcc version 3.</li>
<li> Replaced windows makefiles by script using the .dsw files</li>
<li> Replaced arch makefiles by script using the .dsw files</li>
</ul>
<p><strong>1.0.1: </strong> </p>
<ul>
@ -910,7 +910,7 @@
for big-endian processors.</li>
<li> Moved SoundStretch source code under 'example' directory to
highlight difference from SoundTouch stuff.</li>
<li> Replaced windows makefiles by script using the .dsw files</li>
<li> Replaced arch makefiles by script using the .dsw files</li>
<li> Output file name isn't required if output isn't desired (e.g. if
using the switch '-bpm' in plain format only)</li>
</ul>

View file

@ -215,7 +215,7 @@ BPMDetect::BPMDetect(int numChannels, int aSampleRate) :
buffer->setChannels(1);
buffer->clear();
// calculate hamming windows
// calculate hamming arch
hamw = new float[XCORR_UPDATE_SEQUENCE];
hamming(hamw, XCORR_UPDATE_SEQUENCE);
hamw2 = new float[XCORR_UPDATE_SEQUENCE / 2];

View file

@ -42,7 +42,7 @@
// gcc
#include "cpuid.h"
#elif defined(_M_IX86)
// windows non-gcc
// arch non-gcc
#include <intrin.h>
#endif

View file

@ -32,7 +32,7 @@
#if defined(_WIN32) || defined(WIN32)
#include <windows.h>
#include <arch.h>
// DLL main in Windows compilation
BOOL APIENTRY DllMain( HANDLE hModule,