| 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | * Test Dither calculations. |
|---|
| 4 | * |
|---|
| 5 | * Author: Phil Burk http://www.softsynth.com |
|---|
| 6 | * |
|---|
| 7 | * This program uses the PortAudio Portable Audio Library. |
|---|
| 8 | * For more information see: http://www.portaudio.com |
|---|
| 9 | * Copyright (c) 1999-2000 Ross Bencina and Phil Burk |
|---|
| 10 | * |
|---|
| 11 | * Permission is hereby granted, free of charge, to any person obtaining |
|---|
| 12 | * a copy of this software and associated documentation files |
|---|
| 13 | * (the "Software"), to deal in the Software without restriction, |
|---|
| 14 | * including without limitation the rights to use, copy, modify, merge, |
|---|
| 15 | * publish, distribute, sublicense, and/or sell copies of the Software, |
|---|
| 16 | * and to permit persons to whom the Software is furnished to do so, |
|---|
| 17 | * subject to the following conditions: |
|---|
| 18 | * |
|---|
| 19 | * The above copyright notice and this permission notice shall be |
|---|
| 20 | * included in all copies or substantial portions of the Software. |
|---|
| 21 | * |
|---|
| 22 | * Any person wishing to distribute modifications to the Software is |
|---|
| 23 | * requested to send the modifications to the original developer so that |
|---|
| 24 | * they can be incorporated into the canonical version. |
|---|
| 25 | * |
|---|
| 26 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
|---|
| 27 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
|---|
| 28 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
|---|
| 29 | * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR |
|---|
| 30 | * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF |
|---|
| 31 | * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
|---|
| 32 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|---|
| 33 | * |
|---|
| 34 | */ |
|---|
| 35 | #include <stdio.h> |
|---|
| 36 | #include <math.h> |
|---|
| 37 | #include "portaudio.h" |
|---|
| 38 | #include "pa_host.h" |
|---|
| 39 | |
|---|
| 40 | /*******************************************************************/ |
|---|
| 41 | int main(void); |
|---|
| 42 | int main(void) |
|---|
| 43 | { |
|---|
| 44 | long max,min; |
|---|
| 45 | int i; |
|---|
| 46 | |
|---|
| 47 | for( i=0; i<10000; i++ ) |
|---|
| 48 | { |
|---|
| 49 | long dither = PaConvert_TriangularDither(); |
|---|
| 50 | // printf("dither = 0x%08X\n", dither ); |
|---|
| 51 | if( dither < min ) min = dither; |
|---|
| 52 | else if( dither > max ) max = dither; |
|---|
| 53 | } |
|---|
| 54 | printf("min = 0x%08X = %d, max = 0x%08X = %d\n", min, min, max, max ); |
|---|
| 55 | } |
|---|