mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
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.
This commit is contained in:
parent
14c0991fb9
commit
7ec3ec9dd9
2 changed files with 13 additions and 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>
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue