summaryrefslogtreecommitdiff
path: root/tests/dwvw_test.c
blob: 57bdfac9106c73675c39564dbf437e5f782f190e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
** Copyright (C) 2002-2014 Erik de Castro Lopo <erikd@mega-nerd.com>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include "sfconfig.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

#if HAVE_UNISTD_H
#include <unistd.h>
#endif

#include <sndfile.h>

#include "utils.h"

#define	BUFFER_SIZE		(10000)

#ifndef		M_PI
#define		M_PI		3.14159265358979323846264338
#endif

static	void	dwvw_test (const char *filename, int format, int bit_width) ;

int
main (void)
{
	dwvw_test ("dwvw12.raw", SF_FORMAT_RAW | SF_FORMAT_DWVW_12, 12) ;
	dwvw_test ("dwvw16.raw", SF_FORMAT_RAW | SF_FORMAT_DWVW_16, 16) ;
	dwvw_test ("dwvw24.raw", SF_FORMAT_RAW | SF_FORMAT_DWVW_24, 24) ;

	return 0 ;
} /* main */

static void
dwvw_test (const char *filename, int format, int bit_width)
{	static	int		write_buf [BUFFER_SIZE] ;
	static	int		read_buf [BUFFER_SIZE] ;

	SNDFILE	*file ;
	SF_INFO sfinfo ;
	double 	value ;
	int		k, bit_mask ;

	srand (123456) ;

	/* Only want to grab the top bit_width bits. */
	bit_mask = arith_shift_left (-1, 32 - bit_width) ;

	print_test_name ("dwvw_test", filename) ;

	sf_info_setup (&sfinfo, format, 44100, 1) ;

	file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;

	/* Generate random.frames. */
	for (k = 0 ; k < BUFFER_SIZE / 2 ; k++)
	{	value = 0x7FFFFFFF * sin (123.0 / sfinfo.samplerate * 2 * k * M_PI) ;
		write_buf [k] = bit_mask & lrint (value) ;
		} ;

	for ( ; k < BUFFER_SIZE ; k++)
		write_buf [k] = bit_mask & (arith_shift_left (rand (), 11) ^ (rand () >> 11)) ;

	sf_write_int (file, write_buf, BUFFER_SIZE) ;
	sf_close (file) ;

	file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_TRUE, __LINE__) ;

	if ((k = sf_read_int (file, read_buf, BUFFER_SIZE)) != BUFFER_SIZE)
	{	printf ("Error (line %d) : Only read %d/%d.frames.\n", __LINE__, k, BUFFER_SIZE) ;
		exit (1) ;
		}

	for (k = 0 ; k < BUFFER_SIZE ; k++)
	{	if (read_buf [k] != write_buf [k])
		{	printf ("Error (line %d) : %d != %d at position %d/%d\n", __LINE__,
				write_buf [k] >> (32 - bit_width), read_buf [k] >> (32 - bit_width),
				k, BUFFER_SIZE) ;
			oct_save_int (write_buf, read_buf, BUFFER_SIZE) ;
			exit (1) ;
			} ;
		} ;

	sf_close (file) ;

	unlink (filename) ;
	printf ("ok\n") ;

	return ;
} /* dwvw_test */