Resort the winmm test formats

Francois Gouget fgouget at codeweavers.com
Fri Jul 23 11:04:24 CDT 2004


I have a bunch of patches to send, so I'm just starting with the simple 
stuff...

This patch just sorts the winmm test formats by increasing sampling 
rate. This is because one can hear the difference between sampling rates 
and when running in interactive mode it's a bit startling to hear the 
quality suddenly degrade when we switch for 16kHz to 8kHz.


Changelog:

  * dlls/winmm/tests/winmm_test.h

    Francois Gouget <fgouget at codeweavers.com>
    Sort the winmm test formats by increasing sampling rate.

-- 
Francois Gouget
fgouget at codeweavers.com

-------------- next part --------------
Index: dlls/winmm/tests/winmm_test.h
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/tests/winmm_test.h,v
retrieving revision 1.4
diff -u -r1.4 winmm_test.h
--- dlls/winmm/tests/winmm_test.h	4 Jun 2004 17:58:00 -0000	1.4
+++ dlls/winmm/tests/winmm_test.h	22 Jul 2004 10:33:30 -0000
@@ -28,15 +28,15 @@
     {0,                  8000,  8, 2},
     {0,                  8000, 16, 1},
     {0,                  8000, 16, 2},
-    {0,                 16000,  8, 1},
-    {0,                 16000,  8, 2},
-    {0,                 16000, 16, 1},
-    {0,                 16000, 16, 2},
-    {0,                 12000, 16, 2},
     {WAVE_FORMAT_1M08,  11025,  8, 1},
     {WAVE_FORMAT_1S08,  11025,  8, 2},
     {WAVE_FORMAT_1M16,  11025, 16, 1},
     {WAVE_FORMAT_1S16,  11025, 16, 2},
+    {0,                 12000, 16, 2},
+    {0,                 16000,  8, 1},
+    {0,                 16000,  8, 2},
+    {0,                 16000, 16, 1},
+    {0,                 16000, 16, 2},
     {WAVE_FORMAT_2M08,  22050,  8, 1},
     {WAVE_FORMAT_2S08,  22050,  8, 2},
     {WAVE_FORMAT_2M16,  22050, 16, 1},


More information about the wine-patches mailing list