* Update versions etc for forthcoming 1.3 bugfix release

This commit is contained in:
Chris Cannam
2009-03-01 21:57:15 +00:00
parent 00ff759247
commit aa5f708467
6 changed files with 5 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ MKDIR := mkdir
AR := ar AR := ar
DYNAMIC_EXTENSION := .so DYNAMIC_EXTENSION := .so
DYNAMIC_FULL_VERSION := .2.0.0 DYNAMIC_FULL_VERSION := .2.1.0
DYNAMIC_ABI_VERSION := .2 DYNAMIC_ABI_VERSION := .2
DYNAMIC_LIBNAME := librubberband$(DYNAMIC_EXTENSION) DYNAMIC_LIBNAME := librubberband$(DYNAMIC_EXTENSION)
DYNAMIC_LDFLAGS := -shared -Wl,-Bsymbolic -Wl,-soname=$(DYNAMIC_LIBNAME)$(DYNAMIC_ABI_VERSION) DYNAMIC_LDFLAGS := -shared -Wl,-Bsymbolic -Wl,-soname=$(DYNAMIC_LIBNAME)$(DYNAMIC_ABI_VERSION)

2
README
View File

@@ -4,7 +4,7 @@ Rubber Band
An audio time-stretching and pitch-shifting library and utility program. An audio time-stretching and pitch-shifting library and utility program.
Copyright 2008 Chris Cannam, cannam@all-day-breakfast.com. Copyright 2008-2009 Chris Cannam, cannam@all-day-breakfast.com.
Distributed under the GNU General Public License. Distributed under the GNU General Public License.

View File

@@ -4,7 +4,7 @@ libdir=${exec_prefix}/lib
includedir=${prefix}/include includedir=${prefix}/include
Name: rubberband Name: rubberband
Version: 1.2 Version: 1.3
Description: Description:
Libs: -L${libdir} -lrubberband Libs: -L${libdir} -lrubberband
Cflags: -I${includedir} Cflags: -I${includedir}

View File

@@ -15,7 +15,7 @@
#ifndef _RUBBERBANDSTRETCHER_H_ #ifndef _RUBBERBANDSTRETCHER_H_
#define _RUBBERBANDSTRETCHER_H_ #define _RUBBERBANDSTRETCHER_H_
#define RUBBERBAND_VERSION "1.2.0-gpl" #define RUBBERBAND_VERSION "1.3.0-gpl"
#define RUBBERBAND_API_MAJOR_VERSION 2 #define RUBBERBAND_API_MAJOR_VERSION 2
#define RUBBERBAND_API_MINOR_VERSION 0 #define RUBBERBAND_API_MINOR_VERSION 0

View File

@@ -19,7 +19,7 @@
extern "C" { extern "C" {
#endif #endif
#define RUBBERBAND_VERSION "1.2.0-gpl" #define RUBBERBAND_VERSION "1.3.0-gpl"
#define RUBBERBAND_API_MAJOR_VERSION 2 #define RUBBERBAND_API_MAJOR_VERSION 2
#define RUBBERBAND_API_MINOR_VERSION 0 #define RUBBERBAND_API_MINOR_VERSION 0

View File

@@ -587,7 +587,6 @@ RubberBandStretcher::Impl::configure()
delete m_phaseResetAudioCurve; delete m_phaseResetAudioCurve;
m_phaseResetAudioCurve = new PercussiveAudioCurve m_phaseResetAudioCurve = new PercussiveAudioCurve
// m_phaseResetAudioCurve = new SpectralDifferenceAudioCurve
(m_sampleRate, m_windowSize); (m_sampleRate, m_windowSize);
delete m_silentAudioCurve; delete m_silentAudioCurve;