Changeset a114fe0


Ignore:
Timestamp:
Nov 17, 2018, 8:21:15 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
7ed058c, c03d191, d06c9a4
Parents:
11c0d74
Message:

[tests] improve aubio_filter coverage

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/src/temporal/test-filter.c

    r11c0d74 ra114fe0  
    1010  aubio_filter_t *o = new_aubio_filter_c_weighting (44100);
    1111
     12  if (new_aubio_filter(0))
     13    return 1;
     14
     15  if (aubio_filter_get_samplerate(o) != 44100)
     16    return 1;
     17
    1218  if (aubio_filter_set_c_weighting (o, -1) == 0)
    1319    return 1;
     20
    1421  if (aubio_filter_set_c_weighting (0, 32000) == 0)
    1522    return 1;
Note: See TracChangeset for help on using the changeset viewer.