Skip to content

Commit

Permalink
Changed the transposer interpolation algorithm to the linear algorith…
Browse files Browse the repository at this point in the history
…m as it is simpler.
  • Loading branch information
skidau committed Sep 3, 2014
1 parent 9dca994 commit 9ecb5b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Externals/soundtouch/RateTransposer.cpp
Expand Up @@ -51,7 +51,7 @@
using namespace soundtouch;

// Define default interpolation algorithm here
TransposerBase::ALGORITHM TransposerBase::algorithm = TransposerBase::CUBIC;
TransposerBase::ALGORITHM TransposerBase::algorithm = TransposerBase::LINEAR;


// Constructor
Expand Down
4 changes: 2 additions & 2 deletions Externals/soundtouch/SoundTouch.h
Expand Up @@ -79,10 +79,10 @@ namespace soundtouch
{

/// Soundtouch library version string
#define SOUNDTOUCH_VERSION "1.7.2 (dev)"
#define SOUNDTOUCH_VERSION "1.8.1 (r198)"

/// SoundTouch library version id
#define SOUNDTOUCH_VERSION_ID (10702)
#define SOUNDTOUCH_VERSION_ID (10801)

//
// Available setting IDs for the 'setSetting' & 'get_setting' functions:
Expand Down

0 comments on commit 9ecb5b2

Please sign in to comment.