- Timestamp:
- Mar 14, 2017, 5:24:46 AM (8 years ago)
- Branches:
- sampler
- Children:
- b4ff97e
- Parents:
- 7dfd972
- Location:
- src/effects
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/effects/pitchshift_dummy.c
r7dfd972 rea3a113 19 19 */ 20 20 21 #include " config.h"21 #include "aubio_priv.h" 22 22 23 23 #ifndef HAVE_RUBBERBAND 24 24 25 #include "aubio_priv.h"26 25 #include "fvec.h" 27 26 #include "effects/pitchshift.h" -
src/effects/pitchshift_rubberband.c
r7dfd972 rea3a113 19 19 */ 20 20 21 #include " config.h"21 #include "aubio_priv.h" 22 22 23 23 #ifdef HAVE_RUBBERBAND 24 24 25 #include "aubio_priv.h"26 25 #include "fvec.h" 27 26 #include "effects/pitchshift.h" 28 27 29 #include "rubberband/rubberband-c.h"28 #include <rubberband/rubberband-c.h> 30 29 31 30 /** generic pitch shifting structure */ -
src/effects/rubberband_utils.c
r7dfd972 rea3a113 1 1 2 2 3 #include "config.h"4 3 #include "aubio_priv.h" 5 4 6 5 #ifdef HAVE_RUBBERBAND 7 6 8 #include "rubberband/rubberband-c.h"7 #include <rubberband/rubberband-c.h> 9 8 10 9 // check rubberband is 1.8.1, warn if 1.3 -
src/effects/timestretch_dummy.c
r7dfd972 rea3a113 19 19 */ 20 20 21 #include " config.h"21 #include "aubio_priv.h" 22 22 23 23 #ifndef HAVE_RUBBERBAND 24 24 25 #include "aubio_priv.h"26 25 #include "fvec.h" 27 26 #include "effects/timestretch.h" -
src/effects/timestretch_rubberband.c
r7dfd972 rea3a113 19 19 */ 20 20 21 #include " config.h"21 #include "aubio_priv.h" 22 22 23 23 #ifdef HAVE_RUBBERBAND 24 24 25 #include "aubio_priv.h"26 25 #include "fvec.h" 27 26 #include "fmat.h" … … 29 28 #include "effects/timestretch.h" 30 29 31 #include "rubberband/rubberband-c.h"30 #include <rubberband/rubberband-c.h> 32 31 33 32 #define MIN_STRETCH_RATIO 0.025
Note: See TracChangeset
for help on using the changeset viewer.