summaryrefslogtreecommitdiffstats
path: root/polyp/voltest.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/voltest.c')
-rw-r--r--polyp/voltest.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/polyp/voltest.c b/polyp/voltest.c
deleted file mode 100644
index 917e04d3..00000000
--- a/polyp/voltest.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* $Id$ */
-
-#include <stdio.h>
-
-#include <polyp/volume.h>
-#include "gccmacro.h"
-
-int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char *argv[]) {
- pa_volume_t v;
-
- for (v = PA_VOLUME_MUTED; v <= PA_VOLUME_NORM*2; v += 256) {
-
- double dB = pa_sw_volume_to_dB(v);
- double f = pa_sw_volume_to_linear(v);
-
- printf("Volume: %3i; percent: %i%%; decibel %0.2f; linear = %0.2f; volume(decibel): %3i; volume(linear): %3i\n",
- v, (v*100)/PA_VOLUME_NORM, dB, f, pa_sw_volume_from_dB(dB), pa_sw_volume_from_linear(f));
-
- }
-}