Changeset 158e031
- Timestamp:
- Dec 30, 2013, 10:09:32 PM (11 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:
- 5fef5f1
- Parents:
- 175a218
- Location:
- tests
- Files:
-
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/onset/test-peakpicker.c
r175a218 r158e031 3 3 #include <aubio.h> 4 4 5 int main ( )5 int main (void) 6 6 { 7 7 uint_t win_s = 1024; // window size -
tests/src/pitch/test-pitch.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 // 1. allocate some memory -
tests/src/pitch/test-pitchfcomb.c
r175a218 r158e031 6 6 #include <aubio.h> 7 7 8 int main ( )8 int main (void) 9 9 { 10 10 uint_t i = 0; -
tests/src/pitch/test-pitchmcomb.c
r175a218 r158e031 6 6 #include <aubio.h> 7 7 8 int main ( )8 int main (void) 9 9 { 10 10 uint_t n = 10; // compute n times -
tests/src/pitch/test-pitchschmitt.c
r175a218 r158e031 6 6 #include <aubio.h> 7 7 8 int main ( )8 int main (void) 9 9 { 10 10 uint_t n = 10; // compute n times -
tests/src/pitch/test-pitchspecacf.c
r175a218 r158e031 6 6 #include <aubio.h> 7 7 8 int main ( )8 int main (void) 9 9 { 10 10 uint_t n = 10; // compute n times -
tests/src/pitch/test-pitchyin.c
r175a218 r158e031 6 6 #include <aubio.h> 7 7 8 int main ( )8 int main (void) 9 9 { 10 10 uint_t n = 10; // compute n times -
tests/src/pitch/test-pitchyinfft.c
r175a218 r158e031 6 6 #include <aubio.h> 7 7 8 int main ( )8 int main (void) 9 9 { 10 10 uint_t n = 10; // compute n times -
tests/src/spectral/test-fft.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t win_s = 8; // window size -
tests/src/spectral/test-filterbank.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t win_s = 1024; // window size -
tests/src/spectral/test-filterbank_mel.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t samplerate = 16000; // samplerate of signal to filter -
tests/src/spectral/test-mfcc.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t win_s = 512; // fft size -
tests/src/spectral/test-phasevoc.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t n = 6; // compute n times -
tests/src/spectral/test-specdesc.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t win_s = 1024; // window size -
tests/src/spectral/test-tss.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t n = 10; // compute n times -
tests/src/tempo/test-beattracking.c
r175a218 r158e031 4 4 #include <stdio.h> 5 5 6 int main ( )6 int main (void) 7 7 { 8 8 uint_t i = 0; -
tests/src/temporal/test-a_weighting.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 -
tests/src/temporal/test-biquad.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t win_s = 64; // window size -
tests/src/temporal/test-c_weighting.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 aubio_filter_t * f; -
tests/src/temporal/test-filter.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t win_s = 16; // window size -
tests/src/temporal/test-resampler.c
r175a218 r158e031 1 1 #include <aubio.h> 2 2 3 int main ( )3 int main (void) 4 4 { 5 5 uint_t win_s = 1024; // window size -
tests/src/test-cvec.c
r175a218 r158e031 2 2 #include "utils_tests.h" 3 3 4 int main ( )4 int main (void) 5 5 { 6 6 uint_t i, window_size = 16; // window size -
tests/src/test-delnull.c
r175a218 r158e031 5 5 // Programs that call these functions should check for null pointers. 6 6 7 int main ( )7 int main (void) 8 8 { 9 9 del_fvec(NULL); -
tests/src/test-fmat.c
r175a218 r158e031 5 5 // and j the column. 6 6 7 int main ( )7 int main (void) 8 8 { 9 9 uint_t height = 3, length = 9, i, j; -
tests/src/test-fvec.c
r175a218 r158e031 2 2 #include <assert.h> 3 3 4 int main ( )4 int main (void) 5 5 { 6 6 uint_t vec_size = 10, i; -
tests/src/test-lvec.c
r175a218 r158e031 2 2 #include "utils_tests.h" 3 3 4 int main ()4 int main (void) 5 5 { 6 6 uint_t win_s = 32; // window size -
tests/src/test-mathutils-window.c
r175a218 r158e031 3 3 #include <stdio.h> 4 4 5 int main ( )5 int main (void) 6 6 { 7 7 uint_t length = 0; -
tests/src/test-mathutils.c
r175a218 r158e031 4 4 #include <aubio.h> 5 5 6 int test_next_power_of_two ()6 int test_next_power_of_two (void) 7 7 { 8 8 uint_t a, b; … … 25 25 } 26 26 27 int test_miditofreq ()27 int test_miditofreq (void) 28 28 { 29 29 smpl_t a, b; … … 56 56 } 57 57 58 int test_freqtomidi ()58 int test_freqtomidi (void) 59 59 { 60 60 smpl_t midi, freq; … … 88 88 } 89 89 90 int test_aubio_window ()90 int test_aubio_window (void) 91 91 { 92 92 uint_t window_size = 16; … … 108 108 } 109 109 110 int main ( )110 int main (void) 111 111 { 112 112 test_next_power_of_two(); -
tests/src/utils/test-hist.c
r175a218 r158e031 3 3 #include <aubio.h> 4 4 5 int main ( )5 int main (void) 6 6 { 7 7 uint_t length; -
tests/src/utils/test-parameter.c
r175a218 r158e031 21 21 } 22 22 23 int main ( )23 int main (void) 24 24 { 25 25 smpl_t max_value = 100.; -
tests/src/utils/test-scale.c
r175a218 r158e031 3 3 #include <aubio.h> 4 4 5 int main ( )5 int main (void) 6 6 { 7 7 uint_t n = 0; -
tests/utils_tests.h
r175a218 r158e031 27 27 #endif 28 28 29 void utils_init_random () { 29 void utils_init_random (void); 30 31 void utils_init_random (void) { 30 32 time_t now = time(0); 31 33 struct tm *tm_struct = localtime(&now);
Note: See TracChangeset
for help on using the changeset viewer.