Changes in / [f633b90:81fe7d30]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • examples/utils.h

    rf633b90 r81fe7d30  
    6767
    6868/** common process function */
    69 typedef int (*aubio_process_func_t) (fvec_t * input, fvec_t * output);
     69typedef void (*aubio_process_func_t) (fvec_t * input, fvec_t * output);
    7070
    7171void process_block (fvec_t *ibuf, fvec_t *obuf);
  • scripts/get_waf.sh

    rf633b90 r81fe7d30  
    44set -x
    55
    6 WAFVERSION=2.0.1
     6WAFVERSION=2.0.11
    77WAFTARBALL=waf-$WAFVERSION.tar.bz2
    88WAFURL=https://waf.io/$WAFTARBALL
  • src/io/source_avcodec.c

    rf633b90 r81fe7d30  
    144144  strncpy(s->path, path, strnlen(path, PATH_MAX) + 1);
    145145
     146#if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(58,0,0)
    146147  // register all formats and codecs
    147148  av_register_all();
     149#endif
    148150
    149151  if (aubio_source_avcodec_has_network_url(s)) {
Note: See TracChangeset for help on using the changeset viewer.