⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pcm_test.c

📁 Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Mac OS X、Microsoft Windows、GNU/Linux和其它作業系統
💻 C
📖 第 1 页 / 共 4 页
字号:
	test_read_double_or_die (file, 0, data + 20, 4, __LINE__) ;	for (k = 20 ; k < 24 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Mono : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from end of file. */	test_seek_or_die (file, -1 * (sfinfo.frames - 10), SEEK_END, 10, sfinfo.channels, __LINE__) ;	test_read_double_or_die (file, 0, data + 10, 4, __LINE__) ;	for (k = 10 ; k < 14 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Mono : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	sf_close (file) ;	/* Now test Stereo. */	if ((filetype & SF_FORMAT_TYPEMASK) == SF_FORMAT_SVX) /* SVX is mono only */	{	printf ("ok\n") ;		return ;		} ;	items = BUFFER_SIZE / sizeof (double) ;	data = (double*) data_out ;	for (sign = -1, k = 0 ; k < items ; k++)		data [k] = ((double) k) / 100.0 * (sign *= -1) ;	sfinfo.samplerate	= 44100 ;	sfinfo.frames		= items ;	sfinfo.channels		= 2 ;	sfinfo.format		= filetype ;	frames = items / sfinfo.channels ;	file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;	sf_command (file, SFC_TEST_IEEE_FLOAT_REPLACE, NULL, replace_float) ;	if (replace_float && string_in_log_buffer (file, "Using IEEE replacement") == 0)	{	printf ("\n\nLine %d : Float replacement code not working.\n\n", __LINE__) ;		dump_log_buffer (file) ;		exit (1) ;		} ;	test_writef_double_or_die (file, 0, data, frames, __LINE__) ;	sf_close (file) ;	check_file_hash_or_die (filename, hash, __LINE__) ;	memset (data, 0, items * sizeof (double)) ;	if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)		memset (&sfinfo, 0, sizeof (sfinfo)) ;	file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_TRUE, __LINE__) ;	sf_command (file, SFC_TEST_IEEE_FLOAT_REPLACE, NULL, replace_float) ;	if (replace_float && string_in_log_buffer (file, "Using IEEE replacement") == 0)	{	printf ("\n\nLine %d : Float replacement code not working.\n\n", __LINE__) ;		dump_log_buffer (file) ;		exit (1) ;		} ;	if (sfinfo.format != filetype)	{	printf ("\n\nError (%s:%d) Stereo : Returned format incorrect (0x%08X => 0x%08X).\n", __FILE__, __LINE__, filetype, sfinfo.format) ;		exit (1) ;		} ;	if (sfinfo.frames != frames)	{	printf ("\n\nError (%s:%d) Stereo : Incorrect number of frames in file. (%d => %ld)\n", __FILE__, __LINE__, frames, SF_COUNT_TO_LONG (sfinfo.frames)) ;		exit (1) ;		} ;	if (sfinfo.channels != 2)	{	printf ("\n\nError (%s:%d) Stereo : Incorrect number of channels in file.\n", __FILE__, __LINE__) ;		exit (1) ;		} ;	check_log_buffer_or_die (file, __LINE__) ;	test_readf_double_or_die (file, 0, data, frames, __LINE__) ;	for (sign = -1, k = 0 ; k < items ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to start of file. */	test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;	test_readf_double_or_die (file, 0, data, 4, __LINE__) ;	for (k = 0 ; k < 4 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from start of file. */	test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;	test_readf_double_or_die (file, 0, data + 20, 2, __LINE__) ;	for (k = 20 ; k < 24 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from current position. */	test_seek_or_die (file, 8, SEEK_CUR, 20, sfinfo.channels, __LINE__) ;	test_readf_double_or_die (file, 0, data + 40, 2, __LINE__) ;	for (k = 40 ; k < 44 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from end of file. */	test_seek_or_die (file, -1 * (sfinfo.frames - 10), SEEK_END, 10, sfinfo.channels, __LINE__) ;	test_readf_double_or_die (file, 0, data + 20, 2, __LINE__) ;	for (k = 20 ; k < 24 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	sf_close (file) ;	printf ("ok\n") ;	unlink (filename) ;} /* pcm_test_float */static voidpcm_test_double (const char *filename, int	filetype, int hash, int replace_float){	SNDFILE			*file ;	SF_INFO			sfinfo ;	int				k, items, frames ;	int				sign ;	double			*data, error ;	/* This is the best test routine. Other should be brought up to this standard. */	print_test_name ("pcm_test_double", filename) ;	items = BUFFER_SIZE / sizeof (double) ;	data = (double*) data_out ;	for (sign = 1, k = 0 ; k < items ; k++)	{	data [k] = ((double) (k * sign)) / 100.0 ;		sign = (sign > 0) ? -1 : 1 ;		} ;	sfinfo.samplerate	= 44100 ;	sfinfo.frames		= items ;	sfinfo.channels		= 1 ;	sfinfo.format		= filetype ;	file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;	sf_command (file, SFC_TEST_IEEE_FLOAT_REPLACE, NULL, replace_float) ;	if (replace_float && string_in_log_buffer (file, "Using IEEE replacement") == 0)	{	printf ("\n\nLine %d : Float replacement code not working.\n\n", __LINE__) ;		dump_log_buffer (file) ;		exit (1) ;		} ;	test_write_double_or_die (file, 0, data, items, __LINE__) ;	sf_close (file) ;#if (defined (WIN32) || defined (_WIN32))	/* File hashing on Win32 fails due to slighty different	** calculated values of the sin() function.	*/	hash = hash ; /* Avoid compiler warning. */#else	check_file_hash_or_die (filename, hash, __LINE__) ;#endif	memset (data, 0, items * sizeof (double)) ;	if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)		memset (&sfinfo, 0, sizeof (sfinfo)) ;	file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_TRUE, __LINE__) ;	sf_command (file, SFC_TEST_IEEE_FLOAT_REPLACE, NULL, replace_float) ;	if (replace_float && string_in_log_buffer (file, "Using IEEE replacement") == 0)	{	printf ("\n\nLine %d : Float replacement code not working.\n\n", __LINE__) ;		dump_log_buffer (file) ;		exit (1) ;		} ;	if (sfinfo.format != filetype)	{	printf ("\n\nError (%s:%d) Mono : Returned format incorrect (0x%08X => 0x%08X).\n", __FILE__, __LINE__, filetype, sfinfo.format) ;		exit (1) ;		} ;	if (sfinfo.frames != items)	{	printf ("\n\nError (%s:%d) Mono : Incorrect number of frames in file. (%d => %ld)\n", __FILE__, __LINE__, items, SF_COUNT_TO_LONG (sfinfo.frames)) ;		exit (1) ;		} ;	if (sfinfo.channels != 1)	{	printf ("\n\nError (%s:%d) Mono : Incorrect number of channels in file.\n", __FILE__, __LINE__) ;		exit (1) ;		} ;	check_log_buffer_or_die (file, __LINE__) ;	test_read_double_or_die (file, 0, data, items, __LINE__) ;	for (sign = -1, k = 0 ; k < items ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Mono : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to start of file. */	test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;	test_read_double_or_die (file, 0, data, 4, __LINE__) ;	for (k = 0 ; k < 4 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Mono : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from start of file. */	test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;	test_read_double_or_die (file, 0, data + 10, 4, __LINE__) ;	test_seek_or_die (file, 0, SEEK_CUR, 14, sfinfo.channels, __LINE__) ;	for (k = 10 ; k < 14 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Mono : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from current position. */	test_seek_or_die (file, 6, SEEK_CUR, 20, sfinfo.channels, __LINE__) ;	test_read_double_or_die (file, 0, data + 20, 4, __LINE__) ;	for (k = 20 ; k < 24 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Mono : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from end of file. */	test_seek_or_die (file, -1 * (sfinfo.frames - 10), SEEK_END, 10, sfinfo.channels, __LINE__) ;	test_read_double_or_die (file, 0, data + 10, 4, __LINE__) ;	for (k = 10 ; k < 14 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Mono : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	sf_close (file) ;	/* Now test Stereo. */	if ((filetype & SF_FORMAT_TYPEMASK) == SF_FORMAT_SVX) /* SVX is mono only */	{	printf ("ok\n") ;		return ;		} ;	items = BUFFER_SIZE / sizeof (double) ;	data = (double*) data_out ;	for (sign = -1, k = 0 ; k < items ; k++)		data [k] = ((double) k) / 100.0 * (sign *= -1) ;	sfinfo.samplerate	= 44100 ;	sfinfo.frames		= items ;	sfinfo.channels		= 2 ;	sfinfo.format		= filetype ;	frames = items / sfinfo.channels ;	file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;	sf_command (file, SFC_TEST_IEEE_FLOAT_REPLACE, NULL, replace_float) ;	if (replace_float && string_in_log_buffer (file, "Using IEEE replacement") == 0)	{	printf ("\n\nLine %d : Float replacement code not working.\n\n", __LINE__) ;		dump_log_buffer (file) ;		exit (1) ;		} ;	test_writef_double_or_die (file, 0, data, frames, __LINE__) ;	sf_close (file) ;#if (defined (WIN32) || defined (_WIN32))	/* File hashing on Win32 fails due to slighty different	** calculated values.	*/	hash = hash ; /* Avoid compiler warning. */#else	check_file_hash_or_die (filename, hash, __LINE__) ;#endif	memset (data, 0, items * sizeof (double)) ;	if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)		memset (&sfinfo, 0, sizeof (sfinfo)) ;	file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_TRUE, __LINE__) ;	sf_command (file, SFC_TEST_IEEE_FLOAT_REPLACE, NULL, replace_float) ;	if (replace_float && string_in_log_buffer (file, "Using IEEE replacement") == 0)	{	printf ("\n\nLine %d : Float replacement code not working.\n\n", __LINE__) ;		dump_log_buffer (file) ;		exit (1) ;		} ;	if (sfinfo.format != filetype)	{	printf ("\n\nError (%s:%d) Stereo : Returned format incorrect (0x%08X => 0x%08X).\n", __FILE__, __LINE__, filetype, sfinfo.format) ;		exit (1) ;		} ;	if (sfinfo.frames != frames)	{	printf ("\n\nError (%s:%d) Stereo : Incorrect number of frames in file. (%d => %ld)\n", __FILE__, __LINE__, frames, SF_COUNT_TO_LONG (sfinfo.frames)) ;		exit (1) ;		} ;	if (sfinfo.channels != 2)	{	printf ("\n\nError (%s:%d) Stereo : Incorrect number of channels in file.\n", __FILE__, __LINE__) ;		exit (1) ;		} ;	check_log_buffer_or_die (file, __LINE__) ;	test_readf_double_or_die (file, 0, data, frames, __LINE__) ;	for (sign = -1, k = 0 ; k < items ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to start of file. */	test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;	test_read_double_or_die (file, 0, data, 4, __LINE__) ;	for (k = 0 ; k < 4 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from start of file. */	test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;	test_read_double_or_die (file, 0, data + 10, 4, __LINE__) ;	for (k = 20 ; k < 24 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from current position. */	test_seek_or_die (file, 8, SEEK_CUR, 20, sfinfo.channels, __LINE__) ;	test_readf_double_or_die (file, 0, data + 40, 4, __LINE__) ;	for (k = 40 ; k < 44 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	/* Seek to offset from end of file. */	test_seek_or_die (file, -1 * (sfinfo.frames -10), SEEK_END, 10, sfinfo.channels, __LINE__) ;	test_readf_double_or_die (file, 0, data + 20, 4, __LINE__) ;	for (k = 20 ; k < 24 ; k++)	{	error = fabs (data [k] - ((double) k) / 100.0 * (sign *= -1)) ;		if (fabs (data [k]) > 1e-100 && fabs (error / data [k]) > 1e-5)		{	printf ("\n\nError (%s:%d) Stereo : Incorrect sample (#%d : %f => %f).\n", __FILE__, __LINE__, k, ((double) k) / 100.0, data [k]) ;			exit (1) ;			} ;		} ;	sf_close (file) ;	printf ("ok\n") ;	unlink (filename) ;} /* pcm_test_double *//*==============================================================================*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -