ref: b2de03fb286cca44838f273441ebf00d77780c73
parent: 1670f3959ff7e2a12eba8490d162fb564467022f
author: Paul Brossier <piem@piem.org>
date: Thu May 12 16:05:34 EDT 2016
tests/src/temporal: avoid crash, clarify
--- a/tests/src/temporal/test-a_weighting.c
+++ b/tests/src/temporal/test-a_weighting.c
@@ -20,16 +20,22 @@
// samplerate unknown
f = new_aubio_filter_a_weighting (4200);
- del_aubio_filter (f);
+ if (!f) {
+ //PRINT_MSG ("failed creating A-weighting filter with samplerate=4200Hz\n");
+ }
// order to small
f = new_aubio_filter (2);
- aubio_filter_set_a_weighting (f, samplerate);
+ if (aubio_filter_set_a_weighting (f, samplerate) != 0) {
+ //PRINT_MSG ("failed setting filter to A-weighting\n");
+ }
del_aubio_filter (f);
// order to big
f = new_aubio_filter (12);
- aubio_filter_set_a_weighting (f, samplerate);
+ if (aubio_filter_set_a_weighting (f, samplerate) != 0) {
+ //PRINT_MSG ("failed setting filter to A-weighting\n");
+ }
del_aubio_filter (f);
return 0;
--- a/tests/src/temporal/test-c_weighting.c
+++ b/tests/src/temporal/test-c_weighting.c
@@ -19,16 +19,22 @@
// samplerate unknown
f = new_aubio_filter_c_weighting (4200);
- del_aubio_filter (f);
+ if (!f) {
+ //PRINT_WRN ("failed creating C-weighting filter with samplerate=4200Hz");
+ }
// order to small
f = new_aubio_filter (2);
- aubio_filter_set_c_weighting (f, samplerate);
+ if (aubio_filter_set_c_weighting (f, samplerate) != 0) {
+ //PRINT_WRN ("failed setting filter to C-weighting");
+ }
del_aubio_filter (f);
// order to big
f = new_aubio_filter (12);
- aubio_filter_set_c_weighting (f, samplerate);
+ if (aubio_filter_set_c_weighting (f, samplerate) != 0) {
+ //PRINT_WRN ("failed setting filter to C-weighting");
+ }
del_aubio_filter (f);
return 0;