Changeset 93d2418
- Timestamp:
- Oct 5, 2018, 9:57:33 PM (6 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
- Children:
- fb1c5e2
- Parents:
- 93bcc45 (diff), c8b52ab (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/parse_args.h
r93bcc45 r93d2418 65 65 extern int blocks; 66 66 67 extern fvec_t *i buf;68 extern fvec_t *o buf;67 extern fvec_t *input_buffer; 68 extern fvec_t *output_buffer; 69 69 70 70 const char *prog_name; … … 201 201 }; 202 202 #endif /* HAVE_GETOPT_H */ 203 prog_name = argv[0];203 // better safe than sorry 204 204 if (argc < 1) { 205 205 usage (stderr, 1); 206 return -1;207 }206 } 207 prog_name = argv[0]; 208 208 #ifdef HAVE_GETOPT_H 209 209 do { -
examples/utils.c
r93bcc45 r93d2418 63 63 aubio_source_t *this_source = NULL; 64 64 aubio_sink_t *this_sink = NULL; 65 fvec_t *i buf;66 fvec_t *o buf;65 fvec_t *input_buffer; 66 fvec_t *output_buffer; 67 67 68 68 smpl_t miditap_note = 69.; … … 126 126 #endif /* HAVE_JACK */ 127 127 } 128 i buf= new_fvec (hop_size);129 o buf= new_fvec (hop_size);128 input_buffer = new_fvec (hop_size); 129 output_buffer = new_fvec (hop_size); 130 130 131 131 } … … 133 133 void examples_common_del (void) 134 134 { 135 del_fvec (i buf);136 del_fvec (o buf);135 del_fvec (input_buffer); 136 del_fvec (output_buffer); 137 137 aubio_cleanup (); 138 138 fflush(stderr); … … 166 166 167 167 do { 168 aubio_source_do (this_source, i buf, &read);169 process_func (i buf, obuf);168 aubio_source_do (this_source, input_buffer, &read); 169 process_func (input_buffer, output_buffer); 170 170 // print to console if verbose or no output given 171 171 if (verbose || sink_uri == NULL) { … … 173 173 } 174 174 if (this_sink) { 175 aubio_sink_do (this_sink, o buf, hop_size);175 aubio_sink_do (this_sink, output_buffer, hop_size); 176 176 } 177 177 blocks++; -
wscript
r93bcc45 r93d2418 607 607 ctx.excl += ' **/.appveyor.yml' 608 608 ctx.excl += ' **/.circleci/*' 609 ctx.excl += ' **/azure-pipelines.yml' 609 610 ctx.excl += ' **/.coveragerc'
Note: See TracChangeset
for help on using the changeset viewer.