Changeset 6b233fc
- Timestamp:
- Aug 14, 2005, 8:44:58 PM (19 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 92e4028
- Parents:
- 45345ee
- Location:
- examples
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/Makefile.am
r45345ee r6b233fc 4 4 5 5 # global flags 6 AM_CFLAGS = - I$(srcdir)/../src -I$(srcdir)/../ext @LADCCA_CFLAGS@6 AM_CFLAGS = -DAUBIO_PREFIX=\"$(prefix)\" -I$(srcdir)/../src -I$(srcdir)/../ext @LADCCA_CFLAGS@ 7 7 AM_LDFLAGS = -L../src -L../ext @LADCCA_LIBS@ -laubioext -laubio 8 8 #AM_SOURCES = utils.c -
examples/utils.c
r45345ee r6b233fc 22 22 const char * output_filename = NULL; 23 23 const char * input_filename = NULL; 24 const char * onset_filename = "/usr/share/sounds/aubio/woodblock.aiff";24 const char * onset_filename = AUBIO_PREFIX "/share/sounds/" PACKAGE "/woodblock.aiff"; 25 25 int frames = 0; 26 26 int verbose = 0; … … 238 238 woodblock = new_fvec(buffer_size,1); 239 239 if (output_filename || usejack) { 240 (onsetfile = new_aubio_sndfile_ro(onset_filename)) || 240 /* dummy assignement to keep egcs happy */ 241 isonset = (onsetfile = new_aubio_sndfile_ro(onset_filename)) || 241 242 (onsetfile = new_aubio_sndfile_ro("sounds/woodblock.aiff")) || 242 243 (onsetfile = new_aubio_sndfile_ro("../sounds/woodblock.aiff"));
Note: See TracChangeset
for help on using the changeset viewer.