Changeset 81fe7d30
- Timestamp:
- Sep 15, 2018, 1:20:00 PM (6 years ago)
- Branches:
- feature/constantq
- Children:
- 6203a70
- Parents:
- f633b90 (diff), 6f3dfc0 (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:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/utils.h
rf633b90 r81fe7d30 67 67 68 68 /** common process function */ 69 typedef int(*aubio_process_func_t) (fvec_t * input, fvec_t * output);69 typedef void (*aubio_process_func_t) (fvec_t * input, fvec_t * output); 70 70 71 71 void process_block (fvec_t *ibuf, fvec_t *obuf); -
scripts/get_waf.sh
rf633b90 r81fe7d30 4 4 set -x 5 5 6 WAFVERSION=2.0.1 6 WAFVERSION=2.0.11 7 7 WAFTARBALL=waf-$WAFVERSION.tar.bz2 8 8 WAFURL=https://waf.io/$WAFTARBALL -
src/io/source_avcodec.c
rf633b90 r81fe7d30 144 144 strncpy(s->path, path, strnlen(path, PATH_MAX) + 1); 145 145 146 #if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(58,0,0) 146 147 // register all formats and codecs 147 148 av_register_all(); 149 #endif 148 150 149 151 if (aubio_source_avcodec_has_network_url(s)) {
Note: See TracChangeset
for help on using the changeset viewer.