diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/check/elements/spectrum.c | 16 |
2 files changed, 13 insertions, 8 deletions
@@ -1,3 +1,8 @@ +2007-11-14 Sebastian Dröge <slomo@circular-chaos.org> + + * tests/check/elements/spectrum.c: (GST_START_TEST): + Fix spectrum unit test for the latest spectrum changes. + 2007-11-12 Sebastian Dröge <slomo@circular-chaos.org> Patch by: René Stadler <mail at renestadler dot de> diff --git a/tests/check/elements/spectrum.c b/tests/check/elements/spectrum.c index 7dee5fe1..245b37bc 100644 --- a/tests/check/elements/spectrum.c +++ b/tests/check/elements/spectrum.c @@ -202,9 +202,9 @@ GST_START_TEST (test_int16) GST_DEBUG ("band[%3d] is %.2f", i, level); /* Only the bands in the middle should have a level above 60 */ fail_if ((i == SPECT_BANDS / 2 || i == SPECT_BANDS / 2 - 1) - && level < 60.0); + && level < -20.0); fail_if ((i != SPECT_BANDS / 2 && i != SPECT_BANDS / 2 - 1) - && level > 60.0); + && level > -20.0); } fail_unless_equals_int (g_list_length (buffers), 1); fail_if ((outbuffer = (GstBuffer *) buffers->data) == NULL); @@ -304,9 +304,9 @@ GST_START_TEST (test_int32) GST_DEBUG ("band[%3d] is %.2f", i, level); /* Only the bands in the middle should have a level above 60 */ fail_if ((i == SPECT_BANDS / 2 || i == SPECT_BANDS / 2 - 1) - && level < 60.0); + && level < -20.0); fail_if ((i != SPECT_BANDS / 2 && i != SPECT_BANDS / 2 - 1) - && level > 60.0); + && level > -20.0); } fail_unless_equals_int (g_list_length (buffers), 1); fail_if ((outbuffer = (GstBuffer *) buffers->data) == NULL); @@ -406,9 +406,9 @@ GST_START_TEST (test_float32) GST_DEBUG ("band[%3d] is %.2f", i, level); /* Only the bands in the middle should have a level above 60 */ fail_if ((i == SPECT_BANDS / 2 || i == SPECT_BANDS / 2 - 1) - && level < 60.0); + && level < -20.0); fail_if ((i != SPECT_BANDS / 2 && i != SPECT_BANDS / 2 - 1) - && level > 60.0); + && level > -20.0); } fail_unless_equals_int (g_list_length (buffers), 1); fail_if ((outbuffer = (GstBuffer *) buffers->data) == NULL); @@ -508,9 +508,9 @@ GST_START_TEST (test_float64) GST_DEBUG ("band[%3d] is %.2f", i, level); /* Only the bands in the middle should have a level above 60 */ fail_if ((i == SPECT_BANDS / 2 || i == SPECT_BANDS / 2 - 1) - && level < 60.0); + && level < -20.0); fail_if ((i != SPECT_BANDS / 2 && i != SPECT_BANDS / 2 - 1) - && level > 60.0); + && level > -20.0); } fail_unless_equals_int (g_list_length (buffers), 1); fail_if ((outbuffer = (GstBuffer *) buffers->data) == NULL); |