[pulseaudio-commits] [Git][pulseaudio/pulseaudio][master] volume-test: Allow rounding without having to allow a random number of errors
Arun Raghavan
gitlab at gitlab.freedesktop.org
Sat Oct 13 05:32:48 UTC 2018
Arun Raghavan pushed to branch master at PulseAudio / pulseaudio
Commits:
5f727f0f by Joseph Herlant at 2018-10-13T05:14:42Z
volume-test: Allow rounding without having to allow a random number of errors
- - - - -
1 changed file:
- src/tests/volume-test.c
Changes:
=====================================
src/tests/volume-test.c
=====================================
@@ -111,6 +111,7 @@ START_TEST (volume_test) {
double t = pa_sw_volume_to_linear(w);
double db2 = pa_sw_volume_to_dB(w);
pa_volume_t p, p1, p2;
+ pa_volume_t md_local = 0;
double q, qq;
p = pa_sw_volume_multiply(v, w);
@@ -122,30 +123,32 @@ START_TEST (volume_test) {
q = l*t;
p1 = pa_sw_volume_from_linear(q);
- if (p2 > p && p2 - p > md)
- md = p2 - p;
- if (p2 < p && p - p2 > md)
- md = p - p2;
- if (p1 > p && p1 - p > md)
- md = p1 - p;
- if (p1 < p && p - p1 > md)
- md = p - p1;
+ if (p2 > p)
+ md_local = p2 - p;
+ else
+ md_local = p - p2;
+
+ if (p1 > p && p1 - p > md_local)
+ md_local = p1 - p;
+ if (p1 < p && p - p1 > md_local)
+ md_local = p - p1;
- if (p1 != p || p2 != p)
+ /* compute the number of times the deviation is over the acceptable threshold */
+ if (md_local > 1)
mdn++;
+
+ if (md_local > md)
+ md = md_local;
}
}
- pa_log("max deviation: %lu n=%lu", (unsigned long) md, (unsigned long) mdn);
+ /*
+ * As the hardware, the compiler version and the compilation flags may
+ * generate rounding issues, we allow p1 and p2 to have a difference of + or - 1.
+ */
+ pa_log("max deviation: %lu, number of times over 1:%lu", (unsigned long) md, (unsigned long) mdn);
fail_unless(md <= 1);
-
- /* mdn counts the times there were rounding errors during the test. The
- * number of rounding errors seems to vary slightly depending on the
- * hardware. The original limit was 251 errors, but it was increased to 253
- * when the test was failing on Tanu's laptop.
- * See https://bugs.freedesktop.org/show_bug.cgi?id=72374 */
- fail_unless(mdn <= 253);
}
END_TEST
View it on GitLab: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/5f727f0faf4c37794da6719941ab975252325888
--
View it on GitLab: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/5f727f0faf4c37794da6719941ab975252325888
You're receiving this email because of your account on gitlab.freedesktop.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/pulseaudio-commits/attachments/20181013/83dfa6ac/attachment-0001.html>
More information about the pulseaudio-commits
mailing list