Changes in / [6c7d49b:2704647]
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r6c7d49b r2704647 82 82 AC_LIBTOOL_DLOPEN 83 83 dnl AC_DISABLE_STATIC 84 dnl allow cross compiling 85 AC_LIBTOOL_WIN32_DLL 84 86 AC_PROG_LIBTOOL 85 87 -
examples/utils.c
r6c7d49b r2704647 22 22 void save_data (void); 23 23 void restore_data(lash_config_t * lash_config); 24 void flush_process(aubio_process_func_t process_func, aubio_print_func_t print);25 24 pthread_t lash_thread; 26 25 #endif /* LASH_SUPPORT */ … … 410 409 411 410 void flush_process(aubio_process_func_t process_func, aubio_print_func_t print){ 412 uint i,j;411 uint_t i,j; 413 412 for (i = 0; i < channels; i++) { 414 413 for (j = 0; j < obuf->length; j++) { -
examples/utils.h
r6c7d49b r2704647 57 57 #endif 58 58 void examples_common_process(aubio_process_func_t process_func, aubio_print_func_t print); 59 void flush_process(aubio_process_func_t process_func, aubio_print_func_t print); 59 60 60 61
Note: See TracChangeset
for help on using the changeset viewer.