2007-05-14 09:55:24 +00:00
|
|
|
[+ AutoGen5 template c +]
|
|
|
|
/*
|
2017-04-02 05:34:29 +00:00
|
|
|
** Copyright (C) 1999-2017 Erik de Castro Lopo <erikd@mega-nerd.com>
|
2007-05-14 09:55:24 +00:00
|
|
|
**
|
|
|
|
** 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.
|
|
|
|
*/
|
|
|
|
|
2005-09-03 06:12:30 +00:00
|
|
|
#include "sfconfig.h"
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-02-18 01:59:32 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2005-09-03 06:12:30 +00:00
|
|
|
#if HAVE_UNISTD_H
|
2007-05-14 09:55:24 +00:00
|
|
|
#include <unistd.h>
|
2017-04-12 07:11:06 +00:00
|
|
|
#else
|
|
|
|
#include "sf_unistd.h"
|
2007-05-14 09:55:24 +00:00
|
|
|
#endif
|
|
|
|
|
2012-02-18 01:59:32 +00:00
|
|
|
#include <sndfile.h>
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2012-02-18 01:59:32 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "generate.h"
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
#define SAMPLE_RATE 11025
|
2012-01-20 11:44:47 +00:00
|
|
|
#define DATA_LENGTH (1 << 12)
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
#define SILLY_WRITE_COUNT (234)
|
|
|
|
|
2021-02-21 10:11:34 +00:00
|
|
|
static const char WRT_TEST_PREFIX[] = "wrt" ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
[+ FOR data_type
|
2014-06-28 13:11:13 +00:00
|
|
|
+]static void pcm_test_[+ (get "type_name") +] (const char *str, int format, int long_file_ok) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
[+ ENDFOR data_type
|
|
|
|
+]
|
2004-05-16 04:07:16 +00:00
|
|
|
static void empty_file_test (const char *filename, int format) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2006-06-21 13:15:05 +00:00
|
|
|
typedef union
|
|
|
|
{ double d [DATA_LENGTH] ;
|
|
|
|
float f [DATA_LENGTH] ;
|
|
|
|
int i [DATA_LENGTH] ;
|
|
|
|
short s [DATA_LENGTH] ;
|
|
|
|
char c [DATA_LENGTH] ;
|
|
|
|
} BUFFER ;
|
|
|
|
|
|
|
|
static BUFFER orig_data ;
|
|
|
|
static BUFFER test_data ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{ int do_all = 0 ;
|
|
|
|
int test_count = 0 ;
|
|
|
|
|
2004-10-31 09:28:42 +00:00
|
|
|
count_open_files () ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
if (argc != 2)
|
|
|
|
{ printf ("Usage : %s <test>\n", argv [0]) ;
|
|
|
|
printf (" Where <test> is one of the following:\n") ;
|
|
|
|
printf (" wav - test WAV file functions (little endian)\n") ;
|
|
|
|
printf (" aiff - test AIFF file functions (big endian)\n") ;
|
|
|
|
printf (" au - test AU file functions\n") ;
|
2004-03-26 09:35:47 +00:00
|
|
|
printf (" avr - test AVR file functions\n") ;
|
2005-07-08 10:43:00 +00:00
|
|
|
printf (" caf - test CAF file functions\n") ;
|
2007-05-14 09:55:24 +00:00
|
|
|
printf (" raw - test RAW header-less PCM file functions\n") ;
|
|
|
|
printf (" paf - test PAF file functions\n") ;
|
|
|
|
printf (" svx - test 8SVX/16SV file functions\n") ;
|
|
|
|
printf (" nist - test NIST Sphere file functions\n") ;
|
|
|
|
printf (" ircam - test IRCAM file functions\n") ;
|
|
|
|
printf (" voc - Create Voice file functions\n") ;
|
|
|
|
printf (" w64 - Sonic Foundry's W64 file functions\n") ;
|
2005-01-29 05:33:57 +00:00
|
|
|
printf (" flac - test FLAC file functions\n") ;
|
2008-04-19 03:02:35 +00:00
|
|
|
printf (" mpc2k - test MPC 2000 file functions\n") ;
|
2008-08-22 23:53:52 +00:00
|
|
|
printf (" rf64 - test RF64 file functions\n") ;
|
2007-05-14 09:55:24 +00:00
|
|
|
printf (" all - perform all tests\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
do_all = !strcmp (argv [1], "all") ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "wav"))
|
2006-05-22 01:35:15 +00:00
|
|
|
{ pcm_test_char ("char.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
pcm_test_short ("short.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_32, SF_FALSE) ;
|
2004-03-30 10:12:48 +00:00
|
|
|
|
2006-03-11 10:51:45 +00:00
|
|
|
pcm_test_char ("char.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
|
2004-03-30 10:12:48 +00:00
|
|
|
pcm_test_24bit ("24bit.wavex" , SF_FORMAT_WAVEX | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.wavex" , SF_FORMAT_WAVEX | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_float ("float.wav" , SF_FORMAT_WAV | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double.wav" , SF_FORMAT_WAV | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
2004-03-30 10:12:48 +00:00
|
|
|
|
2006-03-11 10:51:45 +00:00
|
|
|
pcm_test_float ("float.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
|
2004-03-30 10:12:48 +00:00
|
|
|
pcm_test_float ("float.wavex" , SF_FORMAT_WAVEX | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double.wavex" , SF_FORMAT_WAVEX | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
/* Lite remove end */
|
2006-05-22 01:35:15 +00:00
|
|
|
|
|
|
|
empty_file_test ("empty_char.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_U8) ;
|
|
|
|
empty_file_test ("empty_short.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16) ;
|
|
|
|
empty_file_test ("empty_float.wav", SF_FORMAT_WAV | SF_FORMAT_FLOAT) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "aiff"))
|
2006-05-22 01:35:15 +00:00
|
|
|
{ pcm_test_char ("char_u8.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
pcm_test_char ("char_s8.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
|
|
|
|
pcm_test_short ("short_sowt.aifc" , SF_ENDIAN_LITTLE | SF_FORMAT_AIFF | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_sowt.aifc" , SF_ENDIAN_LITTLE | SF_FORMAT_AIFF | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_sowt.aifc" , SF_ENDIAN_LITTLE | SF_FORMAT_AIFF | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
|
|
|
|
pcm_test_short ("short_twos.aifc" , SF_ENDIAN_BIG | SF_FORMAT_AIFF | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_twos.aifc" , SF_ENDIAN_BIG | SF_FORMAT_AIFF | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_twos.aifc" , SF_ENDIAN_BIG | SF_FORMAT_AIFF | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
|
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_short ("dwvw16.aifc", SF_FORMAT_AIFF | SF_FORMAT_DWVW_16, SF_TRUE) ;
|
|
|
|
pcm_test_24bit ("dwvw24.aifc", SF_FORMAT_AIFF | SF_FORMAT_DWVW_24, SF_TRUE) ;
|
|
|
|
|
|
|
|
pcm_test_float ("float.aifc" , SF_FORMAT_AIFF | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double.aifc" , SF_FORMAT_AIFF | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
/* Lite remove end */
|
2006-05-22 01:35:15 +00:00
|
|
|
|
|
|
|
empty_file_test ("empty_char.aiff", SF_FORMAT_AIFF | SF_FORMAT_PCM_U8) ;
|
|
|
|
empty_file_test ("empty_short.aiff", SF_FORMAT_AIFF | SF_FORMAT_PCM_16) ;
|
|
|
|
empty_file_test ("empty_float.aiff", SF_FORMAT_AIFF | SF_FORMAT_FLOAT) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "au"))
|
|
|
|
{ pcm_test_char ("char.au" , SF_FORMAT_AU | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.au" , SF_FORMAT_AU | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit.au" , SF_FORMAT_AU | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.au" , SF_FORMAT_AU | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_float ("float.au" , SF_FORMAT_AU | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double.au", SF_FORMAT_AU | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
|
|
|
|
pcm_test_char ("char_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_float ("float_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2005-07-08 10:43:00 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "caf"))
|
2005-07-09 01:18:29 +00:00
|
|
|
{ pcm_test_char ("char.caf" , SF_FORMAT_CAF | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.caf" , SF_FORMAT_CAF | SF_FORMAT_PCM_16, SF_FALSE) ;
|
2005-07-08 10:43:00 +00:00
|
|
|
pcm_test_24bit ("24bit.caf" , SF_FORMAT_CAF | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.caf" , SF_FORMAT_CAF | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_float ("float.caf" , SF_FORMAT_CAF | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double.caf" , SF_FORMAT_CAF | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
|
|
|
|
pcm_test_short ("short_le.caf" , SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_le.caf" , SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_le.caf" , SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_float ("float_le.caf" , SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double_le.caf", SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
2012-03-03 12:15:56 +00:00
|
|
|
|
|
|
|
pcm_test_short ("alac16.caf" , SF_FORMAT_CAF | SF_FORMAT_ALAC_16, SF_FALSE) ;
|
2012-03-09 23:59:15 +00:00
|
|
|
pcm_test_20bit ("alac20.caf" , SF_FORMAT_CAF | SF_FORMAT_ALAC_20, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("alac24.caf" , SF_FORMAT_CAF | SF_FORMAT_ALAC_24, SF_FALSE) ;
|
2012-03-06 09:20:28 +00:00
|
|
|
pcm_test_int ("alac32.caf" , SF_FORMAT_CAF | SF_FORMAT_ALAC_32, SF_FALSE) ;
|
2012-03-03 12:15:56 +00:00
|
|
|
|
2005-07-08 10:43:00 +00:00
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "raw"))
|
|
|
|
{ pcm_test_char ("char_s8.raw" , SF_FORMAT_RAW | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_char ("char_u8.raw" , SF_FORMAT_RAW | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
|
|
|
|
|
|
|
pcm_test_short ("short_le.raw" , SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short_be.raw" , SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_le.raw" , SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_be.raw" , SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_le.raw" , SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_be.raw" , SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
|
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_float ("float_le.raw" , SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_float ("float_be.raw" , SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
|
|
|
|
pcm_test_double ("double_le.raw", SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
pcm_test_double ("double_be.raw", SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Lite remove start */
|
|
|
|
if (do_all || ! strcmp (argv [1], "paf"))
|
|
|
|
{ pcm_test_char ("char_le.paf", SF_ENDIAN_LITTLE | SF_FORMAT_PAF | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_char ("char_be.paf", SF_ENDIAN_BIG | SF_FORMAT_PAF | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short_le.paf", SF_ENDIAN_LITTLE | SF_FORMAT_PAF | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short_be.paf", SF_ENDIAN_BIG | SF_FORMAT_PAF | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_le.paf", SF_ENDIAN_LITTLE | SF_FORMAT_PAF | SF_FORMAT_PCM_24, SF_TRUE) ;
|
|
|
|
pcm_test_24bit ("24bit_be.paf", SF_ENDIAN_BIG | SF_FORMAT_PAF | SF_FORMAT_PCM_24, SF_TRUE) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "svx"))
|
2006-05-22 01:35:15 +00:00
|
|
|
{ pcm_test_char ("char.svx" , SF_FORMAT_SVX | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.svx", SF_FORMAT_SVX | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
|
|
|
|
empty_file_test ("empty_char.svx", SF_FORMAT_SVX | SF_FORMAT_PCM_S8) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
empty_file_test ("empty_short.svx", SF_FORMAT_SVX | SF_FORMAT_PCM_16) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "nist"))
|
|
|
|
{ pcm_test_short ("short_le.nist", SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short_be.nist", SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_le.nist", SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit_be.nist", SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_le.nist" , SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_be.nist" , SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_PCM_32, SF_FALSE) ;
|
2006-05-22 01:35:15 +00:00
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "ircam"))
|
|
|
|
{ pcm_test_short ("short_be.ircam" , SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short_le.ircam" , SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_be.ircam" , SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_le.ircam" , SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
pcm_test_float ("float_be.ircam" , SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_float ("float_le.ircam" , SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_FLOAT , SF_FALSE) ;
|
2006-05-22 01:35:15 +00:00
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "voc"))
|
|
|
|
{ pcm_test_char ("char.voc" , SF_FORMAT_VOC | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.voc", SF_FORMAT_VOC | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "mat4"))
|
2006-05-22 01:35:15 +00:00
|
|
|
{ pcm_test_short ("short_be.mat4" , SF_ENDIAN_BIG | SF_FORMAT_MAT4 | SF_FORMAT_PCM_16, SF_FALSE) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
pcm_test_short ("short_le.mat4" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT4 | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_be.mat4" , SF_ENDIAN_BIG | SF_FORMAT_MAT4 | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_le.mat4" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT4 | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
pcm_test_float ("float_be.mat4" , SF_ENDIAN_BIG | SF_FORMAT_MAT4 | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_float ("float_le.mat4" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT4 | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double_be.mat4" , SF_ENDIAN_BIG | SF_FORMAT_MAT4 | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
pcm_test_double ("double_le.mat4" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT4 | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
2006-05-22 01:35:15 +00:00
|
|
|
|
|
|
|
empty_file_test ("empty_short.mat4", SF_FORMAT_MAT4 | SF_FORMAT_PCM_16) ;
|
|
|
|
empty_file_test ("empty_float.mat4", SF_FORMAT_MAT4 | SF_FORMAT_FLOAT) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "mat5"))
|
2006-05-22 01:35:15 +00:00
|
|
|
{ pcm_test_char ("char_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
pcm_test_char ("char_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
pcm_test_float ("float_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_float ("float_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
pcm_test_double ("double_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
2006-05-22 01:35:15 +00:00
|
|
|
|
|
|
|
increment_open_file_count () ;
|
|
|
|
|
|
|
|
empty_file_test ("empty_char.mat5", SF_FORMAT_MAT5 | SF_FORMAT_PCM_U8) ;
|
|
|
|
empty_file_test ("empty_short.mat5", SF_FORMAT_MAT5 | SF_FORMAT_PCM_16) ;
|
|
|
|
empty_file_test ("empty_float.mat5", SF_FORMAT_MAT5 | SF_FORMAT_FLOAT) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "pvf"))
|
|
|
|
{ pcm_test_char ("char.pvf" , SF_FORMAT_PVF | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.pvf", SF_FORMAT_PVF | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.pvf" , SF_FORMAT_PVF | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "htk"))
|
|
|
|
{ pcm_test_short ("short.htk", SF_FORMAT_HTK | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
2004-03-26 09:35:47 +00:00
|
|
|
|
2008-04-19 03:02:35 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "mpc2k"))
|
|
|
|
{ pcm_test_short ("short.mpc", SF_FORMAT_MPC2K | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-03-26 09:35:47 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "avr"))
|
|
|
|
{ pcm_test_char ("char_u8.avr" , SF_FORMAT_AVR | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
|
|
|
pcm_test_char ("char_s8.avr" , SF_FORMAT_AVR | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.avr" , SF_FORMAT_AVR | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
/* Lite remove end */
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "w64"))
|
2006-05-22 01:35:15 +00:00
|
|
|
{ pcm_test_char ("char.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
pcm_test_short ("short.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_float ("float.w64" , SF_FORMAT_W64 | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double.w64" , SF_FORMAT_W64 | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
/* Lite remove end */
|
2006-05-22 01:35:15 +00:00
|
|
|
|
|
|
|
empty_file_test ("empty_char.w64", SF_FORMAT_W64 | SF_FORMAT_PCM_U8) ;
|
|
|
|
empty_file_test ("empty_short.w64", SF_FORMAT_W64 | SF_FORMAT_PCM_16) ;
|
|
|
|
empty_file_test ("empty_float.w64", SF_FORMAT_W64 | SF_FORMAT_FLOAT) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (do_all || ! strcmp (argv [1], "sds"))
|
2010-09-29 10:41:03 +00:00
|
|
|
{ pcm_test_char ("char.sds" , SF_FORMAT_SDS | SF_FORMAT_PCM_S8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.sds" , SF_FORMAT_SDS | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit.sds" , SF_FORMAT_SDS | SF_FORMAT_PCM_24, SF_FALSE) ;
|
2007-06-09 11:40:30 +00:00
|
|
|
|
|
|
|
empty_file_test ("empty_char.sds", SF_FORMAT_SDS | SF_FORMAT_PCM_S8) ;
|
|
|
|
empty_file_test ("empty_short.sds", SF_FORMAT_SDS | SF_FORMAT_PCM_16) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "sd2"))
|
|
|
|
{ pcm_test_char ("char.sd2" , SF_FORMAT_SD2 | SF_FORMAT_PCM_S8, SF_TRUE) ;
|
|
|
|
pcm_test_short ("short.sd2" , SF_FORMAT_SD2 | SF_FORMAT_PCM_16, SF_TRUE) ;
|
|
|
|
pcm_test_24bit ("24bit.sd2" , SF_FORMAT_SD2 | SF_FORMAT_PCM_24, SF_TRUE) ;
|
2011-09-04 03:47:55 +00:00
|
|
|
pcm_test_int ("32bit.sd2" , SF_FORMAT_SD2 | SF_FORMAT_PCM_32, SF_TRUE) ;
|
2004-10-28 09:51:40 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2005-01-29 05:33:57 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "flac"))
|
2016-03-13 20:18:05 +00:00
|
|
|
{ if (HAVE_EXTERNAL_XIPH_LIBS)
|
2008-05-21 09:20:24 +00:00
|
|
|
{ pcm_test_char ("char.flac" , SF_FORMAT_FLAC | SF_FORMAT_PCM_S8, SF_TRUE) ;
|
|
|
|
pcm_test_short ("short.flac" , SF_FORMAT_FLAC | SF_FORMAT_PCM_16, SF_TRUE) ;
|
|
|
|
pcm_test_24bit ("24bit.flac" , SF_FORMAT_FLAC | SF_FORMAT_PCM_24, SF_TRUE) ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
puts (" No FLAC tests because FLAC support was not compiled in.") ;
|
2008-10-09 08:51:09 +00:00
|
|
|
test_count++ ;
|
2005-01-29 05:33:57 +00:00
|
|
|
} ;
|
|
|
|
|
2008-08-22 23:53:52 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "rf64"))
|
|
|
|
{ pcm_test_char ("char.rf64" , SF_FORMAT_RF64 | SF_FORMAT_PCM_U8, SF_FALSE) ;
|
|
|
|
pcm_test_short ("short.rf64" , SF_FORMAT_RF64 | SF_FORMAT_PCM_16, SF_FALSE) ;
|
|
|
|
pcm_test_24bit ("24bit.rf64" , SF_FORMAT_RF64 | SF_FORMAT_PCM_24, SF_FALSE) ;
|
|
|
|
pcm_test_int ("int.rf64" , SF_FORMAT_RF64 | SF_FORMAT_PCM_32, SF_FALSE) ;
|
|
|
|
|
|
|
|
/* Lite remove start */
|
|
|
|
pcm_test_float ("float.rf64" , SF_FORMAT_RF64 | SF_FORMAT_FLOAT , SF_FALSE) ;
|
|
|
|
pcm_test_double ("double.rf64" , SF_FORMAT_RF64 | SF_FORMAT_DOUBLE, SF_FALSE) ;
|
|
|
|
empty_file_test ("empty_char.rf64", SF_FORMAT_RF64 | SF_FORMAT_PCM_U8) ;
|
|
|
|
empty_file_test ("empty_short.rf64", SF_FORMAT_RF64 | SF_FORMAT_PCM_16) ;
|
|
|
|
empty_file_test ("empty_float.rf64", SF_FORMAT_RF64 | SF_FORMAT_FLOAT) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
if (test_count == 0)
|
|
|
|
{ printf ("Mono : ************************************\n") ;
|
|
|
|
printf ("Mono : * No '%s' test defined.\n", argv [1]) ;
|
|
|
|
printf ("Mono : ************************************\n") ;
|
|
|
|
return 1 ;
|
|
|
|
} ;
|
|
|
|
|
2004-10-31 09:28:42 +00:00
|
|
|
/* Only open file descriptors should be stdin, stdout and stderr. */
|
|
|
|
check_open_file_count_or_die (__LINE__) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
return 0 ;
|
|
|
|
} /* main */
|
|
|
|
|
|
|
|
/*============================================================================================
|
|
|
|
** Helper functions and macros.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void create_short_file (const char *filename) ;
|
|
|
|
|
2012-01-21 03:24:38 +00:00
|
|
|
#define CHAR_ERROR(x, y) (abs ((x) - (y)) > 255)
|
|
|
|
#define INT_ERROR(x, y) (((x) - (y)) != 0)
|
2012-03-09 23:59:15 +00:00
|
|
|
#define BIT_20_ERROR(x, y) (abs ((x) - (y)) > 4095)
|
2012-01-21 03:24:38 +00:00
|
|
|
#define TRIBYTE_ERROR(x, y) (abs ((x) - (y)) > 255)
|
|
|
|
#define FLOAT_ERROR(x, y) (fabs ((x) - (y)) > 1e-5)
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2012-01-21 03:24:38 +00:00
|
|
|
#define CONVERT_DATA(k, len, new, orig) \
|
2007-05-14 09:55:24 +00:00
|
|
|
{ for ((k) = 0 ; (k) < (len) ; (k) ++) \
|
|
|
|
(new) [k] = (orig) [k] ; \
|
|
|
|
}
|
|
|
|
|
|
|
|
[+ FOR data_type
|
|
|
|
+]
|
|
|
|
/*======================================================================================
|
|
|
|
*/
|
|
|
|
|
2005-01-27 08:51:26 +00:00
|
|
|
static void mono_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd) ;
|
2005-01-26 23:32:44 +00:00
|
|
|
static void stereo_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd) ;
|
2005-01-26 23:07:59 +00:00
|
|
|
static void mono_rdwr_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd) ;
|
2005-01-27 08:51:26 +00:00
|
|
|
static void new_rdwr_[+ (get "type_name") +]_test (const char *filename, int format, int allow_fd) ;
|
2007-06-10 02:19:33 +00:00
|
|
|
static void multi_seek_test (const char * filename, int format) ;
|
2008-05-10 23:07:54 +00:00
|
|
|
static void write_seek_extend_test (const char * filename, int format) ;
|
2005-01-26 23:07:59 +00:00
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
static void
|
2004-10-28 09:51:40 +00:00
|
|
|
pcm_test_[+ (get "type_name") +] (const char *filename, int format, int long_file_ok)
|
2005-01-27 08:51:26 +00:00
|
|
|
{ SF_INFO sfinfo ;
|
2011-03-28 07:43:05 +00:00
|
|
|
[+ (get "data_type") +] *orig ;
|
|
|
|
int k, allow_fd ;
|
2004-10-28 09:51:40 +00:00
|
|
|
|
|
|
|
/* Sd2 files cannot be opened from an existing file descriptor. */
|
|
|
|
allow_fd = ((format & SF_FORMAT_TYPEMASK) == SF_FORMAT_SD2) ? SF_FALSE : SF_TRUE ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2021-02-21 10:11:34 +00:00
|
|
|
get_unique_test_name (&filename, WRT_TEST_PREFIX) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
print_test_name ("pcm_test_[+ (get "type_name") +]", filename) ;
|
|
|
|
|
|
|
|
sfinfo.samplerate = 44100 ;
|
|
|
|
sfinfo.frames = SILLY_WRITE_COUNT ; /* Wrong length. Library should correct this on sf_close. */
|
|
|
|
sfinfo.channels = 1 ;
|
2004-10-28 09:51:40 +00:00
|
|
|
sfinfo.format = format ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2016-02-20 00:24:36 +00:00
|
|
|
test_sf_format_or_die (&sfinfo, __LINE__) ;
|
|
|
|
|
2006-06-21 13:15:05 +00:00
|
|
|
gen_windowed_sine_double (orig_data.d, DATA_LENGTH, [+ (get "max_val") +]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2006-06-21 13:15:05 +00:00
|
|
|
orig = orig_data.[+ (get "data_field") +] ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
/* Make this a macro so gdb steps over it in one go. */
|
2006-06-21 13:15:05 +00:00
|
|
|
CONVERT_DATA (k, DATA_LENGTH, orig, orig_data.d) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2005-01-27 08:51:26 +00:00
|
|
|
/* Some test broken out here. */
|
|
|
|
|
|
|
|
mono_[+ (get "type_name") +]_test (filename, format, long_file_ok, allow_fd) ;
|
|
|
|
|
|
|
|
/* Sub format DWVW does not allow seeking. */
|
|
|
|
if ((format & SF_FORMAT_SUBMASK) == SF_FORMAT_DWVW_16 ||
|
|
|
|
(format & SF_FORMAT_SUBMASK) == SF_FORMAT_DWVW_24)
|
|
|
|
{ unlink (filename) ;
|
|
|
|
printf ("no seek : ok\n") ;
|
|
|
|
return ;
|
|
|
|
} ;
|
|
|
|
|
2012-03-03 12:15:56 +00:00
|
|
|
if ((format & SF_FORMAT_TYPEMASK) != SF_FORMAT_FLAC
|
|
|
|
&& (format & SF_FORMAT_SUBMASK) != SF_FORMAT_ALAC_16
|
|
|
|
&& (format & SF_FORMAT_SUBMASK) != SF_FORMAT_ALAC_20
|
|
|
|
&& (format & SF_FORMAT_SUBMASK) != SF_FORMAT_ALAC_24
|
|
|
|
&& (format & SF_FORMAT_SUBMASK) != SF_FORMAT_ALAC_32
|
|
|
|
)
|
2005-01-29 05:33:57 +00:00
|
|
|
mono_rdwr_[+ (get "type_name") +]_test (filename, format, long_file_ok, allow_fd) ;
|
2005-01-27 08:51:26 +00:00
|
|
|
|
|
|
|
/* If the format doesn't support stereo we're done. */
|
|
|
|
sfinfo.channels = 2 ;
|
|
|
|
if (sf_format_check (&sfinfo) == 0)
|
|
|
|
{ unlink (filename) ;
|
|
|
|
puts ("no stereo : ok") ;
|
|
|
|
return ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
stereo_[+ (get "type_name") +]_test (filename, format, long_file_ok, allow_fd) ;
|
|
|
|
|
|
|
|
/* New read/write test. Not sure if this is needed yet. */
|
|
|
|
|
2012-03-03 12:15:56 +00:00
|
|
|
if ((format & SF_FORMAT_TYPEMASK) != SF_FORMAT_PAF
|
|
|
|
&& (format & SF_FORMAT_TYPEMASK) != SF_FORMAT_VOC
|
|
|
|
&& (format & SF_FORMAT_TYPEMASK) != SF_FORMAT_FLAC
|
|
|
|
&& (format & SF_FORMAT_SUBMASK) != SF_FORMAT_ALAC_16
|
|
|
|
&& (format & SF_FORMAT_SUBMASK) != SF_FORMAT_ALAC_20
|
|
|
|
&& (format & SF_FORMAT_SUBMASK) != SF_FORMAT_ALAC_24
|
|
|
|
&& (format & SF_FORMAT_SUBMASK) != SF_FORMAT_ALAC_32
|
|
|
|
)
|
2005-01-27 08:51:26 +00:00
|
|
|
new_rdwr_[+ (get "type_name") +]_test (filename, format, allow_fd) ;
|
|
|
|
|
2005-01-29 12:36:57 +00:00
|
|
|
delete_file (format, filename) ;
|
|
|
|
|
2005-01-27 08:51:26 +00:00
|
|
|
puts ("ok") ;
|
|
|
|
return ;
|
|
|
|
} /* pcm_test_[+ (get "type_name") +] */
|
|
|
|
|
|
|
|
static void
|
|
|
|
mono_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
|
|
|
[+ (get "data_type") +] *orig, *test ;
|
|
|
|
sf_count_t count ;
|
2012-03-03 12:15:56 +00:00
|
|
|
int k, items, total ;
|
2005-01-27 08:51:26 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = 44100 ;
|
|
|
|
sfinfo.frames = SILLY_WRITE_COUNT ; /* Wrong length. Library should correct this on sf_close. */
|
|
|
|
sfinfo.channels = 1 ;
|
|
|
|
sfinfo.format = format ;
|
|
|
|
|
2006-06-21 13:15:05 +00:00
|
|
|
orig = orig_data.[+ (get "data_field") +] ;
|
|
|
|
test = test_data.[+ (get "data_field") +] ;
|
2005-01-27 08:51:26 +00:00
|
|
|
|
|
|
|
items = DATA_LENGTH ;
|
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, allow_fd, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2015-12-06 19:43:07 +00:00
|
|
|
if (sfinfo.frames || sfinfo.sections || sfinfo.seekable)
|
|
|
|
{ printf ("\n\nLine %d : Weird SF_INFO fields.\n", __LINE__) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_set_string (file, SF_STR_ARTIST, "Your name here") ;
|
|
|
|
|
2005-01-25 12:53:02 +00:00
|
|
|
test_write_[+ (get "data_type") +]_or_die (file, 0, orig, items, __LINE__) ;
|
2005-07-28 11:29:28 +00:00
|
|
|
sf_write_sync (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
test_write_[+ (get "data_type") +]_or_die (file, 0, orig, items, __LINE__) ;
|
2005-07-28 11:29:28 +00:00
|
|
|
sf_write_sync (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
/* Add non-audio data after the audio. */
|
|
|
|
sf_set_string (file, SF_STR_COPYRIGHT, "Copyright (c) 2003") ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (test, 0, items * sizeof ([+ (get "data_type") +])) ;
|
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
if ((format & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
2007-05-14 09:55:24 +00:00
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_READ, &sfinfo, allow_fd, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
if (sfinfo.format != format)
|
|
|
|
{ printf ("\n\nLine %d : Mono : Returned format incorrect (0x%08X => 0x%08X).\n", __LINE__, format, sfinfo.format) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2005-01-25 12:53:02 +00:00
|
|
|
if (sfinfo.frames < 2 * items)
|
2012-02-18 01:59:32 +00:00
|
|
|
{ printf ("\n\nLine %d : Mono : Incorrect number of frames in file (too short). (%" PRId64 " should be %d)\n", __LINE__, sfinfo.frames, items) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2005-01-25 12:53:02 +00:00
|
|
|
if (! long_file_ok && sfinfo.frames > 2 * items)
|
2012-02-18 01:59:32 +00:00
|
|
|
{ printf ("\n\nLine %d : Mono : Incorrect number of frames in file (too long). (%" PRId64 " should be %d)\n", __LINE__, sfinfo.frames, items) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != 1)
|
|
|
|
{ printf ("\n\nLine %d : Mono : Incorrect number of channels in file.\n", __LINE__) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2015-12-01 09:45:55 +00:00
|
|
|
if (sfinfo.seekable != 1)
|
|
|
|
{ printf ("\n\nLine %d : File should be seekable.\n", __LINE__) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-05-21 00:37:31 +00:00
|
|
|
check_log_buffer_or_die (file, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
test_read_[+ (get "data_type") +]_or_die (file, 0, test, items, __LINE__) ;
|
|
|
|
for (k = 0 ; k < items ; k++)
|
|
|
|
if ([+ (get "error_func") +] (orig [k], test [k]))
|
|
|
|
{ printf ("\n\nLine %d: Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, orig [k], test [k]) ;
|
2008-01-24 05:07:50 +00:00
|
|
|
oct_save_[+ (get "data_type") +] (orig, test, items) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2012-03-03 12:15:56 +00:00
|
|
|
/* Test multiple short reads. */
|
|
|
|
test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;
|
|
|
|
|
|
|
|
total = 0 ;
|
|
|
|
for (k = 1 ; k <= 32 ; k++)
|
|
|
|
{ int ik ;
|
|
|
|
|
|
|
|
test_read_[+ (get "data_type") +]_or_die (file, 0, test + total, k, __LINE__) ;
|
|
|
|
total += k ;
|
|
|
|
|
|
|
|
for (ik = 0 ; ik < total ; ik++)
|
|
|
|
if ([+ (get "error_func") +] (orig [ik], test [ik]))
|
|
|
|
{ printf ("\n\nLine %d : Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, ik, orig [ik], test [ik]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
/* Seek to start of file. */
|
|
|
|
test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;
|
|
|
|
|
|
|
|
test_read_[+ (get "data_type") +]_or_die (file, 0, test, 4, __LINE__) ;
|
|
|
|
for (k = 0 ; k < 4 ; k++)
|
|
|
|
if ([+ (get "error_func") +] (orig [k], test [k]))
|
|
|
|
{ printf ("\n\nLine %d : Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, orig [k], test [k]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2012-03-03 12:15:56 +00:00
|
|
|
/* For some codecs we can't go past here. */
|
2004-10-28 09:51:40 +00:00
|
|
|
if ((format & SF_FORMAT_SUBMASK) == SF_FORMAT_DWVW_16 ||
|
|
|
|
(format & SF_FORMAT_SUBMASK) == SF_FORMAT_DWVW_24)
|
2004-03-21 08:44:49 +00:00
|
|
|
{ sf_close (file) ;
|
|
|
|
unlink (filename) ;
|
2005-01-27 08:51:26 +00:00
|
|
|
printf ("no seek : ") ;
|
2007-05-14 09:55:24 +00:00
|
|
|
return ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Seek to offset from start of file. */
|
2005-01-25 12:53:02 +00:00
|
|
|
test_seek_or_die (file, items + 10, SEEK_SET, items + 10, sfinfo.channels, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
test_read_[+ (get "data_type") +]_or_die (file, 0, test + 10, 4, __LINE__) ;
|
|
|
|
for (k = 10 ; k < 14 ; k++)
|
|
|
|
if ([+ (get "error_func") +] (orig [k], test [k]))
|
|
|
|
{ printf ("\n\nLine %d : Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, test [k], orig [k]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Seek to offset from current position. */
|
2005-01-25 12:53:02 +00:00
|
|
|
test_seek_or_die (file, 6, SEEK_CUR, items + 20, sfinfo.channels, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
test_read_[+ (get "data_type") +]_or_die (file, 0, test + 20, 4, __LINE__) ;
|
|
|
|
for (k = 20 ; k < 24 ; k++)
|
|
|
|
if ([+ (get "error_func") +] (orig [k], test [k]))
|
|
|
|
{ printf ("\n\nLine %d : Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, test [k], orig [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_[+ (get "data_type") +]_or_die (file, 0, test + 10, 4, __LINE__) ;
|
|
|
|
for (k = 10 ; k < 14 ; k++)
|
|
|
|
if ([+ (get "error_func") +] (orig [k], test [k]))
|
|
|
|
{ printf ("\n\nLine %d : Mono : Incorrect sample D (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, test [k], orig [k]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check read past end of file followed by sf_seek (sndfile, 0, SEEK_CUR). */
|
|
|
|
test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;
|
|
|
|
|
|
|
|
count = 0 ;
|
|
|
|
while (count < sfinfo.frames)
|
|
|
|
count += sf_read_[+ (get "data_type") +] (file, test, 311) ;
|
|
|
|
|
|
|
|
/* Check that no error has occurred. */
|
|
|
|
if (sf_error (file))
|
|
|
|
{ printf ("\n\nLine %d : Mono : error where there shouldn't have been one.\n", __LINE__) ;
|
|
|
|
puts (sf_strerror (file)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that we haven't read beyond EOF. */
|
|
|
|
if (count > sfinfo.frames)
|
2012-02-18 01:59:32 +00:00
|
|
|
{ printf ("\n\nLines %d : read past end of file (%" PRId64 " should be %" PRId64 ")\n", __LINE__, count, sfinfo.frames) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
test_seek_or_die (file, 0, SEEK_CUR, sfinfo.frames, sfinfo.channels, __LINE__) ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
2007-06-10 02:19:33 +00:00
|
|
|
multi_seek_test (filename, format) ;
|
2008-05-10 23:07:54 +00:00
|
|
|
write_seek_extend_test (filename, format) ;
|
2007-06-10 02:19:33 +00:00
|
|
|
|
2005-01-27 08:51:26 +00:00
|
|
|
} /* mono_[+ (get "type_name") +]_test */
|
2005-01-26 23:32:44 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
stereo_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
|
|
|
[+ (get "data_type") +] *orig, *test ;
|
|
|
|
int k, items, frames ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
sfinfo.samplerate = 44100 ;
|
|
|
|
sfinfo.frames = SILLY_WRITE_COUNT ; /* Wrong length. Library should correct this on sf_close. */
|
|
|
|
sfinfo.channels = 2 ;
|
2004-10-28 09:51:40 +00:00
|
|
|
sfinfo.format = format ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2006-06-21 13:15:05 +00:00
|
|
|
gen_windowed_sine_double (orig_data.d, DATA_LENGTH, [+ (get "max_val") +]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2006-06-21 13:15:05 +00:00
|
|
|
orig = orig_data.[+ (get "data_field") +] ;
|
|
|
|
test = test_data.[+ (get "data_field") +] ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
/* Make this a macro so gdb steps over it in one go. */
|
2006-06-21 13:15:05 +00:00
|
|
|
CONVERT_DATA (k, DATA_LENGTH, orig, orig_data.d) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
items = DATA_LENGTH ;
|
|
|
|
frames = items / sfinfo.channels ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, allow_fd, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_set_string (file, SF_STR_ARTIST, "Your name here") ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
test_writef_[+ (get "data_type") +]_or_die (file, 0, orig, frames, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_set_string (file, SF_STR_COPYRIGHT, "Copyright (c) 2003") ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_close (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
memset (test, 0, items * sizeof ([+ (get "data_type") +])) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
if ((format & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
2004-01-21 07:46:34 +00:00
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_READ, &sfinfo, allow_fd, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-10-28 09:51:40 +00:00
|
|
|
if (sfinfo.format != format)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("\n\nLine %d : Stereo : Returned format incorrect (0x%08X => 0x%08X).\n",
|
2004-10-28 09:51:40 +00:00
|
|
|
__LINE__, format, sfinfo.format) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
exit (1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sfinfo.frames < frames)
|
2012-02-18 01:59:32 +00:00
|
|
|
{ printf ("\n\nLine %d : Stereo : Incorrect number of frames in file (too short). (%" PRId64 " should be %d)\n",
|
|
|
|
__LINE__, sfinfo.frames, frames) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (! long_file_ok && sfinfo.frames > frames)
|
2012-02-18 01:59:32 +00:00
|
|
|
{ printf ("\n\nLine %d : Stereo : Incorrect number of frames in file (too long). (%" PRId64 " should be %d)\n",
|
|
|
|
__LINE__, sfinfo.frames, frames) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != 2)
|
|
|
|
{ printf ("\n\nLine %d : Stereo : Incorrect number of channels in file.\n", __LINE__) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-05-21 00:37:31 +00:00
|
|
|
check_log_buffer_or_die (file, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
test_readf_[+ (get "data_type") +]_or_die (file, 0, test, frames, __LINE__) ;
|
|
|
|
for (k = 0 ; k < items ; k++)
|
|
|
|
if ([+ (get "error_func") +] (test [k], orig [k]))
|
|
|
|
{ printf ("\n\nLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, orig [k], test [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
/* Seek to start of file. */
|
|
|
|
test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
test_readf_[+ (get "data_type") +]_or_die (file, 0, test, 2, __LINE__) ;
|
|
|
|
for (k = 0 ; k < 4 ; k++)
|
|
|
|
if ([+ (get "error_func") +] (test [k], orig [k]))
|
|
|
|
{ printf ("\n\nLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, orig [k], test [k]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
/* Seek to offset from start of file. */
|
|
|
|
test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;
|
|
|
|
|
|
|
|
/* Check for errors here. */
|
|
|
|
if (sf_error (file))
|
|
|
|
{ printf ("Line %d: Should NOT return an error.\n", __LINE__) ;
|
|
|
|
puts (sf_strerror (file)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sf_read_[+ (get "data_type") +] (file, test, 1) > 0)
|
|
|
|
{ printf ("Line %d: Should return 0.\n", __LINE__) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! sf_error (file))
|
|
|
|
{ printf ("Line %d: Should return an error.\n", __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
/*-----------------------*/
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
test_readf_[+ (get "data_type") +]_or_die (file, 0, test + 10, 2, __LINE__) ;
|
|
|
|
for (k = 20 ; k < 24 ; k++)
|
|
|
|
if ([+ (get "error_func") +] (test [k], orig [k]))
|
|
|
|
{ printf ("\n\nLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, orig [k], test [k]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
/* Seek to offset from current position. */
|
|
|
|
test_seek_or_die (file, 8, SEEK_CUR, 20, sfinfo.channels, __LINE__) ;
|
|
|
|
|
|
|
|
test_readf_[+ (get "data_type") +]_or_die (file, 0, test + 20, 2, __LINE__) ;
|
|
|
|
for (k = 40 ; k < 44 ; k++)
|
|
|
|
if ([+ (get "error_func") +] (test [k], orig [k]))
|
|
|
|
{ printf ("\n\nLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, orig [k], test [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_[+ (get "data_type") +]_or_die (file, 0, test + 20, 2, __LINE__) ;
|
|
|
|
for (k = 20 ; k < 24 ; k++)
|
|
|
|
if ([+ (get "error_func") +] (test [k], orig [k]))
|
|
|
|
{ printf ("\n\nLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, k, orig [k], test [k]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
2005-01-26 23:32:44 +00:00
|
|
|
} /* stereo_[+ (get "type_name") +]_test */
|
2005-01-26 23:07:59 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
mono_rdwr_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
|
|
|
[+ (get "data_type") +] *orig, *test ;
|
|
|
|
int k, pass ;
|
|
|
|
|
2012-03-03 12:15:56 +00:00
|
|
|
switch (format & SF_FORMAT_SUBMASK)
|
|
|
|
{ case SF_FORMAT_ALAC_16 :
|
|
|
|
case SF_FORMAT_ALAC_20 :
|
|
|
|
case SF_FORMAT_ALAC_24 :
|
|
|
|
case SF_FORMAT_ALAC_32 :
|
|
|
|
allow_fd = 0 ;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
default :
|
|
|
|
break ;
|
|
|
|
} ;
|
|
|
|
|
2006-06-21 13:15:05 +00:00
|
|
|
orig = orig_data.[+ (get "data_field") +] ;
|
|
|
|
test = test_data.[+ (get "data_field") +] ;
|
2005-01-26 23:07:59 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = DATA_LENGTH ;
|
|
|
|
sfinfo.channels = 1 ;
|
|
|
|
sfinfo.format = format ;
|
|
|
|
|
2005-11-19 02:10:13 +00:00
|
|
|
if ((format & SF_FORMAT_TYPEMASK) == SF_FORMAT_RAW
|
|
|
|
|| (format & SF_FORMAT_TYPEMASK) == SF_FORMAT_AU
|
|
|
|
|| (format & SF_FORMAT_TYPEMASK) == SF_FORMAT_SD2)
|
2005-01-26 23:07:59 +00:00
|
|
|
unlink (filename) ;
|
|
|
|
else
|
|
|
|
{ /* Create a short file. */
|
|
|
|
create_short_file (filename) ;
|
|
|
|
|
|
|
|
/* Opening a already existing short file (ie invalid header) RDWR is disallowed.
|
|
|
|
** If this returns a valif pointer sf_open() screwed up.
|
|
|
|
*/
|
|
|
|
if ((file = sf_open (filename, SFM_RDWR, &sfinfo)))
|
|
|
|
{ printf ("\n\nLine %d: sf_open should (SFM_RDWR) have failed but didn't.\n", __LINE__) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Truncate the file to zero bytes. */
|
2016-09-09 09:12:39 +00:00
|
|
|
if (truncate_file_to_zero (filename) < 0)
|
|
|
|
{ printf ("\n\nLine %d: truncate_file_to_zero (%s) failed", __LINE__, filename) ;
|
2005-01-26 23:07:59 +00:00
|
|
|
perror (NULL) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Opening a zero length file RDWR is allowed, but the SF_INFO struct must contain
|
|
|
|
** all the usual data required when opening the file in WRITE mode.
|
|
|
|
*/
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = DATA_LENGTH ;
|
|
|
|
sfinfo.channels = 1 ;
|
|
|
|
sfinfo.format = format ;
|
|
|
|
|
|
|
|
file = test_open_file_or_die (filename, SFM_RDWR, &sfinfo, allow_fd, __LINE__) ;
|
|
|
|
|
|
|
|
/* Do 3 writes followed by reads. After each, check the data and the current
|
|
|
|
** read and write offsets.
|
|
|
|
*/
|
|
|
|
for (pass = 1 ; pass <= 3 ; pass ++)
|
|
|
|
{ orig [20] = pass * 2 ;
|
|
|
|
|
|
|
|
/* Write some data. */
|
|
|
|
test_write_[+ (get "data_type") +]_or_die (file, pass, orig, DATA_LENGTH, __LINE__) ;
|
|
|
|
|
|
|
|
test_read_write_position_or_die (file, __LINE__, pass, (pass - 1) * DATA_LENGTH, pass * DATA_LENGTH) ;
|
|
|
|
|
|
|
|
/* Read what we just wrote. */
|
|
|
|
test_read_[+ (get "data_type") +]_or_die (file, 0, test, DATA_LENGTH, __LINE__) ;
|
|
|
|
|
|
|
|
/* Check the data. */
|
|
|
|
for (k = 0 ; k < DATA_LENGTH ; k++)
|
|
|
|
if ([+ (get "error_func") +] (orig [k], test [k]))
|
2008-01-24 05:07:50 +00:00
|
|
|
{ printf ("\n\nLine %d (pass %d) A : Error at sample %d ([+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, pass, k, orig [k], test [k]) ;
|
2005-01-26 23:07:59 +00:00
|
|
|
oct_save_[+ (get "data_type") +] (orig, test, DATA_LENGTH) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
test_read_write_position_or_die (file, __LINE__, pass, pass * DATA_LENGTH, pass * DATA_LENGTH) ;
|
|
|
|
} ; /* for (pass ...) */
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
/* Open the file again to check the data. */
|
|
|
|
file = test_open_file_or_die (filename, SFM_RDWR, &sfinfo, allow_fd, __LINE__) ;
|
|
|
|
|
|
|
|
if (sfinfo.format != format)
|
|
|
|
{ printf ("\n\nLine %d : Returned format incorrect (0x%08X => 0x%08X).\n", __LINE__, format, sfinfo.format) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < 3 * DATA_LENGTH)
|
2012-03-18 01:06:16 +00:00
|
|
|
{ printf ("\n\nLine %d : Not enough frames in file. (%" PRId64 " < %d)\n", __LINE__, sfinfo.frames, 3 * DATA_LENGTH) ;
|
2005-01-26 23:07:59 +00:00
|
|
|
exit (1) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! long_file_ok && sfinfo.frames != 3 * DATA_LENGTH)
|
2012-03-18 01:06:16 +00:00
|
|
|
{ printf ("\n\nLine %d : Incorrect number of frames in file. (%" PRId64 " should be %d)\n", __LINE__, sfinfo.frames, 3 * DATA_LENGTH) ;
|
2005-01-26 23:07:59 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != 1)
|
|
|
|
{ printf ("\n\nLine %d : Incorrect number of channels in file.\n", __LINE__) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (! long_file_ok)
|
|
|
|
test_read_write_position_or_die (file, __LINE__, 0, 0, 3 * DATA_LENGTH) ;
|
|
|
|
else
|
|
|
|
test_seek_or_die (file, 3 * DATA_LENGTH, SFM_WRITE | SEEK_SET, 3 * DATA_LENGTH, sfinfo.channels, __LINE__) ;
|
|
|
|
|
|
|
|
for (pass = 1 ; pass <= 3 ; pass ++)
|
|
|
|
{ orig [20] = pass * 2 ;
|
|
|
|
|
|
|
|
test_read_write_position_or_die (file, __LINE__, pass, (pass - 1) * DATA_LENGTH, 3 * DATA_LENGTH) ;
|
|
|
|
|
|
|
|
/* Read what we just wrote. */
|
|
|
|
test_read_[+ (get "data_type") +]_or_die (file, pass, test, DATA_LENGTH, __LINE__) ;
|
|
|
|
|
|
|
|
/* Check the data. */
|
|
|
|
for (k = 0 ; k < DATA_LENGTH ; k++)
|
|
|
|
if ([+ (get "error_func") +] (orig [k], test [k]))
|
2008-01-24 05:07:50 +00:00
|
|
|
{ printf ("\n\nLine %d (pass %d) B : Error at sample %d ([+ (get "format_char") +] => [+ (get "format_char") +]).\n", __LINE__, pass, k, orig [k], test [k]) ;
|
2005-01-26 23:07:59 +00:00
|
|
|
oct_save_[+ (get "data_type") +] (orig, test, DATA_LENGTH) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
} ; /* for (pass ...) */
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
} /* mono_rdwr_[+ (get "data_type") +]_test */
|
|
|
|
|
2005-01-27 08:51:26 +00:00
|
|
|
static void
|
|
|
|
new_rdwr_[+ (get "type_name") +]_test (const char *filename, int format, int allow_fd)
|
|
|
|
{ SNDFILE *wfile, *rwfile ;
|
|
|
|
SF_INFO sfinfo ;
|
|
|
|
[+ (get "data_type") +] *orig, *test ;
|
|
|
|
int items, frames ;
|
2005-11-19 02:10:13 +00:00
|
|
|
|
2006-06-21 13:15:05 +00:00
|
|
|
orig = orig_data.[+ (get "data_field") +] ;
|
|
|
|
test = test_data.[+ (get "data_field") +] ;
|
2005-01-27 08:51:26 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = 44100 ;
|
|
|
|
sfinfo.frames = SILLY_WRITE_COUNT ; /* Wrong length. Library should correct this on sf_close. */
|
|
|
|
sfinfo.channels = 2 ;
|
|
|
|
sfinfo.format = format ;
|
|
|
|
|
|
|
|
items = DATA_LENGTH ;
|
|
|
|
frames = items / sfinfo.channels ;
|
|
|
|
|
|
|
|
wfile = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, allow_fd, __LINE__) ;
|
|
|
|
sf_command (wfile, SFC_SET_UPDATE_HEADER_AUTO, NULL, SF_TRUE) ;
|
|
|
|
test_writef_[+ (get "data_type") +]_or_die (wfile, 1, orig, frames, __LINE__) ;
|
2005-07-28 11:29:28 +00:00
|
|
|
sf_write_sync (wfile) ;
|
2005-01-27 08:51:26 +00:00
|
|
|
test_writef_[+ (get "data_type") +]_or_die (wfile, 2, orig, frames, __LINE__) ;
|
2005-07-28 11:29:28 +00:00
|
|
|
sf_write_sync (wfile) ;
|
2005-01-27 08:51:26 +00:00
|
|
|
|
|
|
|
rwfile = test_open_file_or_die (filename, SFM_RDWR, &sfinfo, allow_fd, __LINE__) ;
|
|
|
|
if (sfinfo.frames != 2 * frames)
|
2012-02-18 01:59:32 +00:00
|
|
|
{ printf ("\n\nLine %d : incorrect number of frames in file (%" PRId64 " should be %d)\n\n", __LINE__, sfinfo.frames, 2 * frames) ;
|
2005-01-27 08:51:26 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
test_writef_[+ (get "data_type") +]_or_die (wfile, 3, orig, frames, __LINE__) ;
|
|
|
|
|
|
|
|
test_readf_[+ (get "data_type") +]_or_die (rwfile, 1, test, frames, __LINE__) ;
|
|
|
|
test_readf_[+ (get "data_type") +]_or_die (rwfile, 2, test, frames, __LINE__) ;
|
|
|
|
|
|
|
|
sf_close (wfile) ;
|
|
|
|
sf_close (rwfile) ;
|
|
|
|
} /* new_rdwr_[+ (get "type_name") +]_test */
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
[+ ENDFOR data_type +]
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-05-16 04:07:16 +00:00
|
|
|
/*----------------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
empty_file_test (const char *filename, int format)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO info ;
|
2004-10-28 09:51:40 +00:00
|
|
|
int allow_fd ;
|
|
|
|
|
|
|
|
/* Sd2 files cannot be opened from an existing file descriptor. */
|
|
|
|
allow_fd = ((format & SF_FORMAT_TYPEMASK) == SF_FORMAT_SD2) ? SF_FALSE : SF_TRUE ;
|
2004-05-16 04:07:16 +00:00
|
|
|
|
2021-02-21 10:11:34 +00:00
|
|
|
get_unique_test_name (&filename, WRT_TEST_PREFIX) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
print_test_name ("empty_file_test", filename) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
|
|
|
|
info.samplerate = 48000 ;
|
|
|
|
info.channels = 2 ;
|
|
|
|
info.format = format ;
|
2016-02-06 00:53:16 +00:00
|
|
|
info.frames = 0 ;
|
2004-05-16 04:07:16 +00:00
|
|
|
|
|
|
|
if (sf_format_check (&info) == SF_FALSE)
|
|
|
|
{ info.channels = 1 ;
|
|
|
|
if (sf_format_check (&info) == SF_FALSE)
|
|
|
|
{ puts ("invalid file format") ;
|
|
|
|
return ;
|
|
|
|
} ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Create an empty file. */
|
2004-10-28 09:51:40 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_WRITE, &info, allow_fd, __LINE__) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
/* Open for read and check the length. */
|
2004-10-28 09:51:40 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_READ, &info, allow_fd, __LINE__) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
|
2012-02-18 01:59:32 +00:00
|
|
|
if (info.frames != 0)
|
|
|
|
{ printf ("\n\nError : frame count (%" PRId64 ") should be zero.\n", info.frames) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
/* Open for read/write and check the length. */
|
2004-10-28 09:51:40 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_RDWR, &info, allow_fd, __LINE__) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
|
2012-02-18 01:59:32 +00:00
|
|
|
if (info.frames != 0)
|
|
|
|
{ printf ("\n\nError : frame count (%" PRId64 ") should be zero.\n", info.frames) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
/* Open for read and check the length. */
|
2004-10-28 09:51:40 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_READ, &info, allow_fd, __LINE__) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
|
2012-02-18 01:59:32 +00:00
|
|
|
if (info.frames != 0)
|
|
|
|
{ printf ("\n\nError : frame count (%" PRId64 ") should be zero.\n", info.frames) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
2004-10-31 09:28:42 +00:00
|
|
|
check_open_file_count_or_die (__LINE__) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
2004-05-16 04:07:16 +00:00
|
|
|
puts ("ok") ;
|
|
|
|
|
|
|
|
return ;
|
|
|
|
} /* empty_file_test */
|
|
|
|
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
/*----------------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
create_short_file (const char *filename)
|
|
|
|
{ FILE *file ;
|
|
|
|
|
|
|
|
if (! (file = fopen (filename, "w")))
|
|
|
|
{ printf ("create_short_file : fopen (%s, \"w\") failed.", filename) ;
|
|
|
|
fflush (stdout) ;
|
|
|
|
perror (NULL) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
fprintf (file, "This is the file data.\n") ;
|
|
|
|
|
|
|
|
fclose (file) ;
|
|
|
|
} /* create_short_file */
|
|
|
|
|
|
|
|
|
2007-06-10 02:19:33 +00:00
|
|
|
static void
|
|
|
|
multi_seek_test (const char * filename, int format)
|
|
|
|
{ SNDFILE * file ;
|
|
|
|
SF_INFO info ;
|
2008-05-10 23:07:54 +00:00
|
|
|
sf_count_t pos ;
|
2007-06-10 02:19:33 +00:00
|
|
|
int k ;
|
|
|
|
|
2008-05-10 23:07:54 +00:00
|
|
|
/* This test doesn't work on the following. */
|
|
|
|
switch (format & SF_FORMAT_TYPEMASK)
|
|
|
|
{ case SF_FORMAT_RAW :
|
|
|
|
return ;
|
|
|
|
|
|
|
|
default :
|
|
|
|
break ;
|
|
|
|
} ;
|
2007-06-10 03:47:46 +00:00
|
|
|
|
2007-06-10 02:19:33 +00:00
|
|
|
memset (&info, 0, sizeof (info)) ;
|
|
|
|
|
|
|
|
generate_file (filename, format, 88200) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2007-06-10 02:19:33 +00:00
|
|
|
file = test_open_file_or_die (filename, SFM_READ, &info, SF_FALSE, __LINE__) ;
|
|
|
|
|
|
|
|
for (k = 0 ; k < 10 ; k++)
|
2008-05-10 23:07:54 +00:00
|
|
|
{ pos = info.frames / (k + 2) ;
|
|
|
|
test_seek_or_die (file, pos, SEEK_SET, pos, info.channels, __LINE__) ;
|
|
|
|
} ;
|
2007-06-10 02:19:33 +00:00
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
} /* multi_seek_test */
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2008-05-10 23:07:54 +00:00
|
|
|
static void
|
|
|
|
write_seek_extend_test (const char * filename, int format)
|
|
|
|
{ SNDFILE * file ;
|
|
|
|
SF_INFO info ;
|
|
|
|
short *orig, *test ;
|
2008-05-11 04:45:25 +00:00
|
|
|
unsigned items, k ;
|
2008-05-10 23:07:54 +00:00
|
|
|
|
2012-03-03 12:15:56 +00:00
|
|
|
/* This test doesn't work on the following container formats. */
|
2008-05-10 23:07:54 +00:00
|
|
|
switch (format & SF_FORMAT_TYPEMASK)
|
|
|
|
{ case SF_FORMAT_FLAC :
|
|
|
|
case SF_FORMAT_HTK :
|
|
|
|
case SF_FORMAT_PAF :
|
|
|
|
case SF_FORMAT_SDS :
|
|
|
|
case SF_FORMAT_SVX :
|
|
|
|
return ;
|
|
|
|
|
|
|
|
default :
|
|
|
|
break ;
|
|
|
|
} ;
|
|
|
|
|
2012-03-03 12:15:56 +00:00
|
|
|
/* This test doesn't work on the following codec formats. */
|
|
|
|
switch (format & SF_FORMAT_SUBMASK)
|
|
|
|
{ case SF_FORMAT_ALAC_16 :
|
|
|
|
case SF_FORMAT_ALAC_20 :
|
|
|
|
case SF_FORMAT_ALAC_24 :
|
|
|
|
case SF_FORMAT_ALAC_32 :
|
|
|
|
return ;
|
|
|
|
|
|
|
|
default :
|
|
|
|
break ;
|
|
|
|
} ;
|
|
|
|
|
2008-05-10 23:07:54 +00:00
|
|
|
memset (&info, 0, sizeof (info)) ;
|
|
|
|
|
|
|
|
info.samplerate = 48000 ;
|
|
|
|
info.channels = 1 ;
|
|
|
|
info.format = format ;
|
|
|
|
|
|
|
|
items = 512 ;
|
|
|
|
exit_if_true (items > ARRAY_LEN (orig_data.s), "Line %d : Bad assumption.\n", __LINE__) ;
|
|
|
|
|
|
|
|
orig = orig_data.s ;
|
|
|
|
test = test_data.s ;
|
|
|
|
|
|
|
|
for (k = 0 ; k < ARRAY_LEN (orig_data.s) ; k++)
|
|
|
|
orig [k] = 0x3fff ;
|
|
|
|
|
|
|
|
file = test_open_file_or_die (filename, SFM_WRITE, &info, SF_FALSE, __LINE__) ;
|
|
|
|
test_write_short_or_die (file, 0, orig, items, __LINE__) ;
|
|
|
|
|
|
|
|
/* Extend the file using a seek. */
|
|
|
|
test_seek_or_die (file, 2 * items, SEEK_SET, 2 * items, info.channels, __LINE__) ;
|
|
|
|
|
|
|
|
test_writef_short_or_die (file, 0, orig, items, __LINE__) ;
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
file = test_open_file_or_die (filename, SFM_READ, &info, SF_FALSE, __LINE__) ;
|
|
|
|
test_read_short_or_die (file, 0, test, 3 * items, __LINE__) ;
|
|
|
|
sf_close (file) ;
|
|
|
|
|
2016-12-10 08:51:49 +00:00
|
|
|
if (info.frames < 3 * items)
|
|
|
|
{ printf ("\n\nLine %d : Incorrect number of frames in file (too short). (%" PRId64 " should be %d)\n", __LINE__, info.frames, 3 * items) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2008-05-10 23:07:54 +00:00
|
|
|
/* Can't do these formats due to scaling. */
|
|
|
|
switch (format & SF_FORMAT_SUBMASK)
|
|
|
|
{ case SF_FORMAT_PCM_S8 :
|
|
|
|
case SF_FORMAT_PCM_U8 :
|
|
|
|
return ;
|
|
|
|
default :
|
|
|
|
break ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (k = 0 ; k < items ; k++)
|
|
|
|
{ exit_if_true (test [k] != 0x3fff, "Line %d : test [%d] == %d, should be 0x3fff.\n", __LINE__, k, test [k]) ;
|
|
|
|
exit_if_true (test [items + k] != 0, "Line %d : test [%d] == %d, should be 0.\n", __LINE__, items + k, test [items + k]) ;
|
|
|
|
exit_if_true (test [2 * items + k] != 0x3fff, "Line %d : test [%d] == %d, should be 0x3fff.\n", __LINE__, 2 * items + k, test [2 * items + k]) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
return ;
|
|
|
|
} /* write_seek_extend_test */
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
|