summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2007-11-14 17:03:18 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2007-11-14 17:03:18 +0000
commit012a21be129d95f53470eec329fdba05940074a7 (patch)
tree9739ea2500ba6e4f02374c30d1f0852dc10bb137 /tests
parente5b5743a96fc4298f2ce3906305a1732832f3ff8 (diff)
tests/check/elements/spectrum.c: Fix spectrum unit test for the latest spectrum changes.
Original commit message from CVS: * tests/check/elements/spectrum.c: (GST_START_TEST): Fix spectrum unit test for the latest spectrum changes.
Diffstat (limited to 'tests')
-rw-r--r--tests/check/elements/spectrum.c16
1 files changed, 8 insertions, 8 deletions
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);