2007-05-14 09:55:24 +00:00
|
|
|
/*
|
2004-02-13 12:31:34 +00:00
|
|
|
** Copyright (C) 1999-2003 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.
|
|
|
|
*/
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
#include "config.h"
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
#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 (1<<14) /* Should be (1<<14) */
|
|
|
|
#define SAMPLE_RATE 11025
|
|
|
|
|
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846264338
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void lcomp_test_short (const char *filename, int filetype, int chan, double margin) ;
|
|
|
|
static void lcomp_test_int (const char *filename, int filetype, int chan, double margin) ;
|
|
|
|
static void lcomp_test_float (const char *filename, int filetype, int chan, double margin) ;
|
|
|
|
static void lcomp_test_double (const char *filename, int filetype, int chan, double margin) ;
|
|
|
|
|
|
|
|
static void sdlcomp_test_short (const char *filename, int filetype, int chan, double margin) ;
|
|
|
|
static void sdlcomp_test_int (const char *filename, int filetype, int chan, double margin) ;
|
|
|
|
static void sdlcomp_test_float (const char *filename, int filetype, int chan, double margin) ;
|
|
|
|
static void sdlcomp_test_double (const char *filename, int filetype, int chan, double margin) ;
|
|
|
|
|
|
|
|
static int error_function (double data, double orig, double margin) ;
|
|
|
|
static int decay_response (int k) ;
|
|
|
|
|
|
|
|
static void gen_signal_double (double *data, double scale, int channels, int datalen) ;
|
|
|
|
|
|
|
|
static void smoothed_diff_short (short *data, unsigned int datalen) ;
|
|
|
|
static void smoothed_diff_int (int *data, unsigned int datalen) ;
|
|
|
|
static void smoothed_diff_float (float *data, unsigned int datalen) ;
|
|
|
|
static void smoothed_diff_double (double *data, unsigned int datalen) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
/* Force the start of these buffers to be double aligned. Sparc-solaris will
|
2007-05-14 09:55:24 +00:00
|
|
|
** choke if they are not.
|
|
|
|
*/
|
2004-01-21 07:46:34 +00:00
|
|
|
static double data_buffer [BUFFER_SIZE + 1] ;
|
|
|
|
static double orig_buffer [BUFFER_SIZE + 1] ;
|
|
|
|
static double smooth_buffer [BUFFER_SIZE + 1] ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv [])
|
|
|
|
{ int do_all = 0 ;
|
|
|
|
int test_count = 0 ;
|
|
|
|
|
|
|
|
if (argc != 2)
|
|
|
|
{ printf ("Usage : %s <test>\n", argv [0]) ;
|
|
|
|
printf (" Where <test> is one of the following:\n") ;
|
|
|
|
printf (" wav_ima - test IMA ADPCM WAV file functions\n") ;
|
|
|
|
printf (" wav_msadpcm - test MS ADPCM WAV file functions\n") ;
|
|
|
|
printf (" wav_gsm610 - test GSM 6.10 WAV file functions\n") ;
|
|
|
|
printf (" wav_ulaw - test u-law WAV file functions\n") ;
|
|
|
|
printf (" wav_alaw - test A-law WAV file functions\n") ;
|
|
|
|
printf (" all - perform all tests\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
do_all = !strcmp (argv [1], "all") ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "wav_pcm"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ /* This is just a sanity test for PCM encoding. */
|
|
|
|
lcomp_test_short ("pcm.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16, 2, 0.00001) ;
|
|
|
|
lcomp_test_int ("pcm.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16, 2, 0.00001) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("pcm.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16, 2, 0.005) ;
|
|
|
|
lcomp_test_double ("pcm.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16, 2, 0.005) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* For all the rest, if the file format supports more than 1 channel, use stereo. */
|
|
|
|
/* Lite remove start */
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "wav_ima"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ima.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_int ("ima.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_float ("ima.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_double ("ima.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
|
|
|
|
sdlcomp_test_short ("ima.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
sdlcomp_test_int ("ima.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
sdlcomp_test_float ("ima.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
sdlcomp_test_double ("ima.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "wav_msadpcm"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
lcomp_test_int ("msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
lcomp_test_float ("msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
lcomp_test_double ("msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
|
|
|
|
sdlcomp_test_short ("msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
sdlcomp_test_int ("msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
sdlcomp_test_float ("msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
sdlcomp_test_double ("msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
/* Lite remove end */
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "wav_ulaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ulaw.wav", SF_FORMAT_WAV | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("ulaw.wav", SF_FORMAT_WAV | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("ulaw.wav", SF_FORMAT_WAV | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("ulaw.wav", SF_FORMAT_WAV | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "wav_alaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("alaw.wav", SF_FORMAT_WAV | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("alaw.wav", SF_FORMAT_WAV | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("alaw.wav", SF_FORMAT_WAV | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("alaw.wav", SF_FORMAT_WAV | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "wav_gsm610"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ /* Don't do lcomp_test_XXX as the errors are too big. */
|
|
|
|
sdlcomp_test_short ("gsm610.wav", SF_FORMAT_WAV | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
sdlcomp_test_int ("gsm610.wav", SF_FORMAT_WAV | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
sdlcomp_test_float ("gsm610.wav", SF_FORMAT_WAV | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
sdlcomp_test_double ("gsm610.wav", SF_FORMAT_WAV | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "aiff_ulaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ulaw.aiff", SF_FORMAT_AIFF | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("ulaw.aiff", SF_FORMAT_AIFF | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("ulaw.aiff", SF_FORMAT_AIFF | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("ulaw.aiff", SF_FORMAT_AIFF | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "aiff_alaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("alaw.aiff", SF_FORMAT_AIFF | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("alaw.aiff", SF_FORMAT_AIFF | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("alaw.aiff", SF_FORMAT_AIFF | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("alaw.aiff", SF_FORMAT_AIFF | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "aiff_gsm610"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ /* Don't do lcomp_test_XXX as the errors are too big. */
|
|
|
|
sdlcomp_test_short ("gsm610.aiff", SF_FORMAT_AIFF | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
sdlcomp_test_int ("gsm610.aiff", SF_FORMAT_AIFF | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
sdlcomp_test_float ("gsm610.aiff", SF_FORMAT_AIFF | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
sdlcomp_test_double ("gsm610.aiff", SF_FORMAT_AIFF | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "aiff_ima"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ima.aiff", SF_FORMAT_AIFF | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_int ("ima.aiff", SF_FORMAT_AIFF | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_float ("ima.aiff", SF_FORMAT_AIFF | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_double ("ima.aiff", SF_FORMAT_AIFF | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "au_ulaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ulaw.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("ulaw.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("ulaw.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("ulaw.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "au_alaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("alaw.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("alaw.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("alaw.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("alaw.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Lite remove start */
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "au_g721"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ printf ("**** Fix this later : error bound should be 0.06 ****\n") ;
|
|
|
|
lcomp_test_short ("g721.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G721_32, 1, 0.7) ;
|
|
|
|
lcomp_test_int ("g721.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G721_32, 1, 0.7) ;
|
|
|
|
lcomp_test_float ("g721.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G721_32, 1, 0.7) ;
|
|
|
|
lcomp_test_double ("g721.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G721_32, 1, 0.7) ;
|
|
|
|
|
|
|
|
/*- sdlcomp_test_short ("g721.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G721_32, 1, 0.07) ;
|
|
|
|
sdlcomp_test_int ("g721.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G721_32, 1, 0.07) ;
|
|
|
|
sdlcomp_test_float ("g721.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G721_32, 1, 0.07) ;
|
|
|
|
sdlcomp_test_double ("g721.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G721_32, 1, 0.12) ;
|
|
|
|
-*/
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "au_g723"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ printf ("**** Fix this later : error bound should be 0.16 ****\n") ;
|
|
|
|
lcomp_test_short ("g723_24.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G723_24, 1, 0.7) ;
|
|
|
|
lcomp_test_int ("g723_24.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G723_24, 1, 0.7) ;
|
|
|
|
lcomp_test_float ("g723_24.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G723_24, 1, 0.7) ;
|
|
|
|
lcomp_test_double ("g723_24.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G723_24, 1, 0.7) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
lcomp_test_short ("g723_40.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G723_40, 1, 0.21) ;
|
|
|
|
lcomp_test_int ("g723_40.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G723_40, 1, 0.21) ;
|
|
|
|
lcomp_test_float ("g723_40.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G723_40, 1, 0.21) ;
|
|
|
|
lcomp_test_double ("g723_40.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G723_40, 1, 0.21) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
/*- sdlcomp_test_short ("g723.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G723_24, 1, 0.15) ;
|
|
|
|
sdlcomp_test_int ("g723.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G723_24, 1, 0.15) ;
|
|
|
|
sdlcomp_test_float ("g723.au", SF_ENDIAN_BIG | SF_FORMAT_AU | SF_FORMAT_G723_24, 1, 0.15) ;
|
|
|
|
sdlcomp_test_double ("g723.au", SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_G723_24, 1, 0.15) ;
|
|
|
|
-*/
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
/* Lite remove end */
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "raw_ulaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ulaw.raw", SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("ulaw.raw", SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("ulaw.raw", SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("ulaw.raw", SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "raw_alaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("alaw.raw", SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("alaw.raw", SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("alaw.raw", SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("alaw.raw", SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
/*- if (do_all || ! strcmp (argv [1], "raw_gsm610"))
|
|
|
|
{ /+* Don't do lcomp_test_XXX as the errors are too big. *+/
|
|
|
|
sdlcomp_test_short ("gsm610.raw", SF_FORMAT_RAW | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
sdlcomp_test_int ("gsm610.raw", SF_FORMAT_RAW | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
sdlcomp_test_float ("gsm610.raw", SF_FORMAT_RAW | SF_FORMAT_GSM610, 1, 0.24) ;
|
|
|
|
sdlcomp_test_double ("gsm610.raw", SF_FORMAT_RAW | SF_FORMAT_GSM610, 1, 0.24) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
test_count++ ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
-*/
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
/* Lite remove start */
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "ircam_ulaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ulaw.ircam", SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("ulaw.ircam", SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_float ("ulaw.ircam", SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("ulaw.ircam", SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "ircam_alaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("alaw.ircam", SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("alaw.ircam", SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_float ("alaw.ircam", SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("alaw.ircam", SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "nist_ulaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ulaw.nist", SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("ulaw.nist", SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_float ("ulaw.nist", SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("ulaw.nist", SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "nist_alaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("alaw.nist", SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("alaw.nist", SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_float ("alaw.nist", SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("alaw.nist", SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "voc_ulaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ulaw.voc", SF_FORMAT_VOC | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("ulaw.voc", SF_FORMAT_VOC | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_float ("ulaw.voc", SF_FORMAT_VOC | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("ulaw.voc", SF_FORMAT_VOC | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "voc_alaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("alaw.voc", SF_FORMAT_VOC | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("alaw.voc", SF_FORMAT_VOC | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_float ("alaw.voc", SF_FORMAT_VOC | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("alaw.voc", SF_FORMAT_VOC | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
/* Lite remove end */
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "w64_ulaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ulaw.w64", SF_FORMAT_W64 | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("ulaw.w64", SF_FORMAT_W64 | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("ulaw.w64", SF_FORMAT_W64 | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("ulaw.w64", SF_FORMAT_W64 | SF_FORMAT_ULAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "w64_alaw"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("alaw.w64", SF_FORMAT_W64 | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_int ("alaw.w64", SF_FORMAT_W64 | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
lcomp_test_float ("alaw.w64", SF_FORMAT_W64 | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
lcomp_test_double ("alaw.w64", SF_FORMAT_W64 | SF_FORMAT_ALAW, 2, 0.04) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Lite remove start */
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "w64_ima"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("ima.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_int ("ima.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_float ("ima.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
lcomp_test_double ("ima.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
|
|
|
|
sdlcomp_test_short ("ima.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
sdlcomp_test_int ("ima.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
sdlcomp_test_float ("ima.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
sdlcomp_test_double ("ima.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM, 2, 0.18) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "w64_msadpcm"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
lcomp_test_int ("msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
lcomp_test_float ("msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
lcomp_test_double ("msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
|
|
|
|
sdlcomp_test_short ("msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
sdlcomp_test_int ("msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
sdlcomp_test_float ("msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
sdlcomp_test_double ("msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM, 2, 0.36) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
/* Lite remove end */
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "w64_gsm610"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ /* Don't do lcomp_test_XXX as the errors are too big. */
|
|
|
|
sdlcomp_test_short ("gsm610.w64", SF_FORMAT_W64 | SF_FORMAT_GSM610, 1, 0.2) ;
|
|
|
|
sdlcomp_test_int ("gsm610.w64", SF_FORMAT_W64 | SF_FORMAT_GSM610, 1, 0.2) ;
|
|
|
|
/* Lite remove start */
|
|
|
|
sdlcomp_test_float ("gsm610.w64", SF_FORMAT_W64 | SF_FORMAT_GSM610, 1, 0.2) ;
|
|
|
|
sdlcomp_test_double ("gsm610.w64", SF_FORMAT_W64 | SF_FORMAT_GSM610, 1, 0.2) ;
|
|
|
|
/* Lite remove end */
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Lite remove start */
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "vox_adpcm"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("adpcm.vox", SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM, 1, 0.17) ;
|
|
|
|
lcomp_test_int ("adpcm.vox", SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM, 1, 0.17) ;
|
|
|
|
lcomp_test_float ("adpcm.vox", SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM, 1, 0.17) ;
|
|
|
|
lcomp_test_double ("adpcm.vox", SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM, 1, 0.17) ;
|
|
|
|
|
|
|
|
sdlcomp_test_short ("adpcm.vox", SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM, 1, 0.072) ;
|
|
|
|
sdlcomp_test_int ("adpcm.vox", SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM, 1, 0.072) ;
|
|
|
|
sdlcomp_test_float ("adpcm.vox", SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM, 1, 0.072) ;
|
|
|
|
sdlcomp_test_double ("adpcm.vox", SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM, 1, 0.072) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (do_all || ! strcmp (argv [1], "xi_dpcm"))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ lcomp_test_short ("8bit.xi", SF_FORMAT_XI | SF_FORMAT_DPCM_8, 1, 0.25) ;
|
|
|
|
lcomp_test_int ("8bit.xi", SF_FORMAT_XI | SF_FORMAT_DPCM_8, 1, 0.25) ;
|
|
|
|
|
|
|
|
lcomp_test_short ("16bit.xi", SF_FORMAT_XI | SF_FORMAT_DPCM_16, 1, 0.002) ;
|
|
|
|
lcomp_test_int ("16bit.xi", SF_FORMAT_XI | SF_FORMAT_DPCM_16, 1, 0.002) ;
|
|
|
|
lcomp_test_float ("16bit.xi", SF_FORMAT_XI | SF_FORMAT_DPCM_16, 1, 0.002) ;
|
|
|
|
lcomp_test_double ("16bit.xi", SF_FORMAT_XI | SF_FORMAT_DPCM_16, 1, 0.002) ;
|
|
|
|
test_count++ ;
|
|
|
|
} ;
|
|
|
|
/* Lite remove end */
|
|
|
|
|
|
|
|
if (test_count == 0)
|
|
|
|
{ printf ("************************************\n") ;
|
|
|
|
printf ("* No '%s' test defined.\n", argv [1]) ;
|
|
|
|
printf ("************************************\n") ;
|
|
|
|
return 1 ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
return 0 ;
|
|
|
|
} /* main */
|
|
|
|
|
|
|
|
/*============================================================================================
|
|
|
|
** Here are the test functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
lcomp_test_short (const char *filename, int filetype, int channels, double margin)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
2004-01-21 07:46:34 +00:00
|
|
|
int k, m, seekpos, sum_abs ;
|
2007-05-14 09:55:24 +00:00
|
|
|
long datalen ;
|
|
|
|
short *orig, *data ;
|
|
|
|
|
|
|
|
print_test_name ("lcomp_test_short", filename) ;
|
|
|
|
|
|
|
|
datalen = BUFFER_SIZE / channels ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
data = (short*) data_buffer ;
|
|
|
|
orig = (short*) orig_buffer ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
gen_signal_double (orig_buffer, 32000.0, channels, datalen) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < channels * datalen ; k++)
|
2004-01-21 07:46:34 +00:00
|
|
|
orig [k] = (short) (orig_buffer [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = 123456789 ; /* Ridiculous value. */
|
|
|
|
sfinfo.channels = channels ;
|
|
|
|
sfinfo.format = filetype ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_WRITE, &sfinfo)))
|
|
|
|
{ printf ("sf_open_write failed with error : ") ;
|
|
|
|
fflush (stdout) ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_writef_short (file, orig, datalen)) != datalen)
|
|
|
|
{ printf ("sf_writef_short failed with short write (%ld => %d).\n", datalen, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (data, 0, datalen * sizeof (short)) ;
|
|
|
|
|
|
|
|
if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_READ, &sfinfo)))
|
|
|
|
{ printf ("Line %d: sf_open_read failed with error : ", __LINE__) ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if ((sfinfo.format & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)) != (filetype & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Returned format incorrect (0x%08X => 0x%08X).\n", __LINE__, filetype, sfinfo.format) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < datalen / channels)
|
|
|
|
{ printf ("Too few frames in file. (%ld should be a little more than %ld)\n", SF_COUNT_TO_LONG (sfinfo.frames), datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sfinfo.frames > (datalen + datalen / 2))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ printf ("Too many frames in file. (%ld should be a little more than %ld)\n", SF_COUNT_TO_LONG (sfinfo.frames), datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != channels)
|
|
|
|
{ printf ("Incorrect number of channels in file.\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
check_log_buffer_or_die (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_short (file, data, datalen)) != datalen)
|
|
|
|
{ printf ("Line %d: short read (%d should be %ld).\n", __LINE__, k, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = 0 ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < datalen ; k++)
|
|
|
|
{ if (error_function (data [k], orig [k], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample A (#%d : %d should be %d).\n", __LINE__, k, data [k], orig [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
oct_save_short (orig, data, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = abs (sum_abs + abs (data [k])) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sum_abs < 1.0)
|
|
|
|
{ printf ("Line %d: Signal is all zeros.\n", __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_short (file, data, datalen)) != sfinfo.frames - datalen)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect read length (%ld should be %d).\n", __LINE__,
|
2007-05-14 09:55:24 +00:00
|
|
|
SF_COUNT_TO_LONG (channels * sfinfo.frames - datalen), k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* This check is only for block based encoders which must append silence
|
|
|
|
** to the end of a file so as to fill out a block.
|
|
|
|
*/
|
|
|
|
for (k = 0 ; k < sfinfo.frames - datalen ; k++)
|
|
|
|
if (abs (data [channels * k]) > decay_response (channels * k))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d : Incorrect sample B (#%d : abs (%d) should be < %d).\n", __LINE__, channels * k, data [channels * k], decay_response (channels * k)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (! sfinfo.seekable)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ unlink (filename) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
printf ("ok\n") ;
|
|
|
|
return ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Now test sf_seek function. */
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_SET)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Seek to start of file failed (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (m = 0 ; m < 3 ; m++)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ if ((k = sf_readf_short (file, data, 11)) != 11)
|
|
|
|
{ printf ("Line %d: Incorrect read length (11 => %d).\n", __LINE__, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
for (k = 0 ; k < channels * 11 ; k++)
|
|
|
|
if (error_function ((double) data [k], (double) orig [k + channels * m * 11], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (m = %d) (#%d : %d => %d).\n", __LINE__, m, k + channels * m * 11, orig [k + channels * m * 11], data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (m = 0 ; m < channels ; m++)
|
|
|
|
printf ("%d ", data [m]) ;
|
|
|
|
printf ("\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = BUFFER_SIZE / 10 ;
|
|
|
|
|
|
|
|
/* Check seek from start of file. */
|
|
|
|
if ((k = sf_seek (file, seekpos, SEEK_SET)) != seekpos)
|
|
|
|
{ printf ("Seek to start of file + %d failed (%d).\n", seekpos, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_short (file, data, 1)) != 1)
|
|
|
|
{ printf ("Line %d: sf_readf_short (file, data, 1) returned %d.\n", __LINE__, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_SET) followed by sf_readf_short failed (%d, %d).\n", __LINE__, orig [1], data [0]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_CUR)) != seekpos + 1)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_CUR) with 0 offset failed (%d should be %d)\n", __LINE__, k, seekpos + 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) + BUFFER_SIZE / 5 ;
|
|
|
|
k = sf_seek (file, BUFFER_SIZE / 5, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_short (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (forwards, SEEK_CUR) followed by sf_readf_short failed (%d, %d) (%d, %d).\n", __LINE__, data [0], orig [seekpos * channels], k, seekpos + 1) ;
|
|
|
|
|
|
|
|
oct_save_short (orig, data, datalen) ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) - 20 ;
|
|
|
|
/* Check seek backward from current position. */
|
|
|
|
k = sf_seek (file, -20, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_short (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (backwards, SEEK_CUR) followed by sf_readf_short failed (%d, %d) (%d, %d).\n", data [0], orig [seekpos * channels], k, seekpos) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that read past end of file returns number of items. */
|
|
|
|
sf_seek (file, (short) sfinfo.frames, SEEK_SET) ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_short (file, data, datalen)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Return value from sf_readf_short past end of file incorrect (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check seek backward from end. */
|
|
|
|
if ((k = sf_seek (file, 5 - (short) sfinfo.frames, SEEK_END)) != 5)
|
|
|
|
{ printf ("sf_seek (SEEK_END) returned %d instead of %d.\n", k, 5) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_short (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [5], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_END) followed by sf_readf_short failed (%d should be %d).\n", __LINE__, data [0], orig [5]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
printf ("ok\n") ;
|
|
|
|
} /* lcomp_test_short */
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
lcomp_test_int (const char *filename, int filetype, int channels, double margin)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
|
|
|
int k, m, *orig, *data, sum_abs ;
|
|
|
|
long datalen, seekpos ;
|
|
|
|
double scale ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
print_test_name ("lcomp_test_int", filename) ;
|
|
|
|
|
|
|
|
datalen = BUFFER_SIZE / channels ;
|
|
|
|
|
|
|
|
scale = 1.0 * 0x10000 ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
data = (int*) data_buffer ;
|
|
|
|
orig = (int*) orig_buffer ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
gen_signal_double (orig_buffer, 32000.0 * scale, channels, datalen) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < channels * datalen ; k++)
|
2004-01-21 07:46:34 +00:00
|
|
|
orig [k] = orig_buffer [k] ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = 123456789 ; /* Ridiculous value. */
|
|
|
|
sfinfo.channels = channels ;
|
|
|
|
sfinfo.format = filetype ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_WRITE, &sfinfo)))
|
|
|
|
{ printf ("sf_open_write failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_writef_int (file, orig, datalen)) != datalen)
|
|
|
|
{ printf ("sf_writef_int failed with short write (%ld => %d).\n", datalen, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (data, 0, datalen * sizeof (int)) ;
|
|
|
|
|
|
|
|
if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_READ, &sfinfo)))
|
|
|
|
{ printf ("sf_open_read failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if ((sfinfo.format & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)) != (filetype & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Returned format incorrect (0x%08X => 0x%08X).\n", __LINE__, filetype, sfinfo.format) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < datalen / channels)
|
|
|
|
{ printf ("Too few.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sfinfo.frames > (datalen + datalen / 2))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ printf ("Too many.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != channels)
|
|
|
|
{ printf ("Incorrect number of channels in file.\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
check_log_buffer_or_die (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_int (file, data, datalen)) != datalen)
|
|
|
|
{ printf ("Line %d: short read (%d should be %ld).\n", __LINE__, k, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = 0 ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < datalen ; k++)
|
|
|
|
{ if (error_function (data [k] / scale, orig [k] / scale, margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%d : %f should be %f).\n", __LINE__, k, data [k] / scale, orig [k] / scale) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
oct_save_int (orig, data, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = abs (sum_abs + abs (abs (data [k]) - 256)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sum_abs < 1.0)
|
|
|
|
{ printf ("Line %d: Signal is all zeros (%d, 0x%X).\n", __LINE__, sum_abs, sum_abs) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_int (file, data, datalen)) != sfinfo.frames - datalen)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect read length (%ld should be %d).\n", __LINE__,
|
2007-05-14 09:55:24 +00:00
|
|
|
SF_COUNT_TO_LONG (channels * sfinfo.frames - datalen), k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* This check is only for block based encoders which must append silence
|
|
|
|
** to the end of a file so as to fill out a block.
|
|
|
|
*/
|
|
|
|
if ((sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_MS_ADPCM)
|
|
|
|
for (k = 0 ; k < sfinfo.frames - datalen ; k++)
|
|
|
|
if (abs (data [channels * k] / scale) > decay_response (channels * k))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d : Incorrect sample B (#%d : abs (%d) should be < %d).\n", __LINE__, channels * k, data [channels * k], decay_response (channels * k)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (! sfinfo.seekable)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ unlink (filename) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
printf ("ok\n") ;
|
|
|
|
return ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Now test sf_seek function. */
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_SET)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Seek to start of file failed (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (m = 0 ; m < 3 ; m++)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ if ((k = sf_readf_int (file, data, 11)) != 11)
|
|
|
|
{ printf ("Line %d: Incorrect read length (11 => %d).\n", __LINE__, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
for (k = 0 ; k < channels * 11 ; k++)
|
|
|
|
if (error_function (data [k] / scale, orig [k + channels * m * 11] / scale, margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (m = %d) (#%d : %d => %d).\n", __LINE__, m, k + channels * m * 11, orig [k + channels * m * 11], data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (m = 0 ; m < channels ; m++)
|
|
|
|
printf ("%d ", data [m]) ;
|
|
|
|
printf ("\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = BUFFER_SIZE / 10 ;
|
|
|
|
|
|
|
|
/* Check seek from start of file. */
|
|
|
|
if ((k = sf_seek (file, seekpos, SEEK_SET)) != seekpos)
|
|
|
|
{ printf ("Seek to start of file + %ld failed (%d).\n", seekpos, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_int (file, data, 1)) != 1)
|
|
|
|
{ printf ("Line %d: sf_readf_int (file, data, 1) returned %d.\n", __LINE__, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_SET) followed by sf_readf_int failed (%d, %d).\n", __LINE__, orig [1], data [0]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_CUR)) != seekpos + 1)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_CUR) with 0 offset failed (%d should be %ld)\n", __LINE__, k, seekpos + 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) + BUFFER_SIZE / 5 ;
|
|
|
|
k = sf_seek (file, BUFFER_SIZE / 5, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_int (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (forwards, SEEK_CUR) followed by sf_readf_int failed (%d, %d) (%d, %ld).\n", __LINE__, data [0], orig [seekpos * channels], k, seekpos + 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) - 20 ;
|
|
|
|
/* Check seek backward from current position. */
|
|
|
|
k = sf_seek (file, -20, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_int (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (backwards, SEEK_CUR) followed by sf_readf_int failed (%d, %d) (%d, %ld).\n", data [0], orig [seekpos * channels], k, seekpos) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that read past end of file returns number of items. */
|
|
|
|
sf_seek (file, (int) sfinfo.frames, SEEK_SET) ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_int (file, data, datalen)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Return value from sf_readf_int past end of file incorrect (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check seek backward from end. */
|
|
|
|
if ((k = sf_seek (file, 5 - (int) sfinfo.frames, SEEK_END)) != 5)
|
|
|
|
{ printf ("sf_seek (SEEK_END) returned %d instead of %d.\n", k, 5) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_int (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function (data [0] / scale, orig [5] / scale, margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_END) followed by sf_readf_short failed (%d should be %d).\n", __LINE__, data [0], orig [5]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
printf ("ok\n") ;
|
|
|
|
} /* lcomp_test_int */
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
lcomp_test_float (const char *filename, int filetype, int channels, double margin)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
2004-01-21 07:46:34 +00:00
|
|
|
int k, m, seekpos, sum_abs ;
|
2007-05-14 09:55:24 +00:00
|
|
|
long datalen ;
|
|
|
|
float *orig, *data ;
|
|
|
|
|
|
|
|
print_test_name ("lcomp_test_float", filename) ;
|
|
|
|
|
|
|
|
datalen = BUFFER_SIZE / channels ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
data = (float*) data_buffer ;
|
|
|
|
orig = (float*) orig_buffer ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
gen_signal_double (orig_buffer, 32000.0, channels, datalen) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < channels * datalen ; k++)
|
2004-01-21 07:46:34 +00:00
|
|
|
orig [k] = (float) (orig_buffer [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = 123456789 ; /* Ridiculous value. */
|
|
|
|
sfinfo.channels = channels ;
|
|
|
|
sfinfo.format = filetype ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_WRITE, &sfinfo)))
|
|
|
|
{ printf ("sf_open_write failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_command (file, SFC_SET_NORM_FLOAT, NULL, SF_FALSE) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
|
|
|
|
if ((k = sf_writef_float (file, orig, datalen)) != datalen)
|
|
|
|
{ printf ("sf_writef_float failed with short write (%ld => %d).\n", datalen, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (data, 0, datalen * sizeof (float)) ;
|
|
|
|
|
|
|
|
if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_READ, &sfinfo)))
|
|
|
|
{ printf ("sf_open_read failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if ((sfinfo.format & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)) != (filetype & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Returned format incorrect (0x%08X => 0x%08X).\n", __LINE__, filetype, sfinfo.format) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < datalen / channels)
|
|
|
|
{ printf ("Too few.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sfinfo.frames > (datalen + datalen / 2))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ printf ("Too many.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != channels)
|
|
|
|
{ printf ("Incorrect number of channels in file.\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_command (file, SFC_SET_NORM_FLOAT, NULL, SF_FALSE) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
check_log_buffer_or_die (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sf_command (file, SFC_SET_NORM_FLOAT, NULL, SF_FALSE) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_float (file, data, datalen)) != datalen)
|
|
|
|
{ printf ("Line %d: short read (%d should be %ld).\n", __LINE__, k, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = 0.0 ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < datalen ; k++)
|
|
|
|
{ if (error_function ((double) data [k], (double) orig [k], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample A (#%d : %f should be %f).\n", __LINE__, k, data [k], orig [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
oct_save_float (orig, data, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs += fabs (data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sum_abs < 1.0)
|
|
|
|
{ printf ("Line %d: Signal is all zeros.\n", __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_float (file, data, datalen)) != sfinfo.frames - datalen)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect read length (%ld should be %d).\n", __LINE__,
|
2007-05-14 09:55:24 +00:00
|
|
|
SF_COUNT_TO_LONG (channels * sfinfo.frames - datalen), k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* This check is only for block based encoders which must append silence
|
|
|
|
** to the end of a file so as to fill out a block.
|
|
|
|
*/
|
|
|
|
if ((sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_MS_ADPCM)
|
|
|
|
for (k = 0 ; k < sfinfo.frames - datalen ; k++)
|
|
|
|
if (abs (data [channels * k]) > decay_response (channels * k))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d : Incorrect sample B (#%d : abs (%f) should be < %d).\n", __LINE__, channels * k, data [channels * k], decay_response (channels * k)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (! sfinfo.seekable)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ unlink (filename) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
printf ("ok\n") ;
|
|
|
|
return ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Now test sf_seek function. */
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_SET)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Seek to start of file failed (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (m = 0 ; m < 3 ; m++)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ if ((k = sf_readf_float (file, data, 11)) != 11)
|
|
|
|
{ printf ("Line %d: Incorrect read length (11 => %d).\n", __LINE__, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
for (k = 0 ; k < channels * 11 ; k++)
|
|
|
|
if (error_function ((double) data [k], (double) orig [k + channels * m * 11], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (m = %d) (#%d : %f => %f).\n", __LINE__, m, k + channels * m * 11, orig [k + channels * m * 11], data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (m = 0 ; m < channels ; m++)
|
|
|
|
printf ("%f ", data [m]) ;
|
|
|
|
printf ("\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = BUFFER_SIZE / 10 ;
|
|
|
|
|
|
|
|
/* Check seek from start of file. */
|
|
|
|
if ((k = sf_seek (file, seekpos, SEEK_SET)) != seekpos)
|
|
|
|
{ printf ("Seek to start of file + %d failed (%d).\n", seekpos, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_float (file, data, 1)) != 1)
|
|
|
|
{ printf ("Line %d: sf_readf_float (file, data, 1) returned %d.\n", __LINE__, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_SET) followed by sf_readf_float failed (%f, %f).\n", __LINE__, orig [1], data [0]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_CUR)) != seekpos + 1)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_CUR) with 0 offset failed (%d should be %d)\n", __LINE__, k, seekpos + 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) + BUFFER_SIZE / 5 ;
|
|
|
|
k = sf_seek (file, BUFFER_SIZE / 5, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_float (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (forwards, SEEK_CUR) followed by sf_readf_float failed (%f, %f) (%d, %d).\n", __LINE__, data [0], orig [seekpos * channels], k, seekpos + 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) - 20 ;
|
|
|
|
/* Check seek backward from current position. */
|
|
|
|
k = sf_seek (file, -20, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_float (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (backwards, SEEK_CUR) followed by sf_readf_float failed (%f, %f) (%d, %d).\n", data [0], orig [seekpos * channels], k, seekpos) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that read past end of file returns number of items. */
|
|
|
|
sf_seek (file, (float) sfinfo.frames, SEEK_SET) ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_float (file, data, datalen)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Return value from sf_readf_float past end of file incorrect (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check seek backward from end. */
|
|
|
|
if ((k = sf_seek (file, 5 - (float) sfinfo.frames, SEEK_END)) != 5)
|
|
|
|
{ printf ("sf_seek (SEEK_END) returned %d instead of %d.\n", k, 5) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_float (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [5], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_END) followed by sf_readf_short failed (%f should be %f).\n", __LINE__, data [0], orig [5]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
printf ("ok\n") ;
|
|
|
|
} /* lcomp_test_float */
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
lcomp_test_double (const char *filename, int filetype, int channels, double margin)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
2004-01-21 07:46:34 +00:00
|
|
|
int k, m, seekpos, sum_abs ;
|
2007-05-14 09:55:24 +00:00
|
|
|
long datalen ;
|
|
|
|
double *orig, *data ;
|
|
|
|
|
|
|
|
print_test_name ("lcomp_test_double", filename) ;
|
|
|
|
|
|
|
|
datalen = BUFFER_SIZE / channels ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
data = (double*) data_buffer ;
|
|
|
|
orig = (double*) orig_buffer ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
gen_signal_double (orig_buffer, 32000.0, channels, datalen) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < channels * datalen ; k++)
|
2004-01-21 07:46:34 +00:00
|
|
|
orig [k] = (double) (orig_buffer [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = 123456789 ; /* Ridiculous value. */
|
|
|
|
sfinfo.channels = channels ;
|
|
|
|
sfinfo.format = filetype ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_WRITE, &sfinfo)))
|
|
|
|
{ printf ("sf_open_write failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_command (file, SFC_SET_NORM_DOUBLE, NULL, SF_FALSE) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
|
|
|
|
if ((k = sf_writef_double (file, orig, datalen)) != datalen)
|
|
|
|
{ printf ("sf_writef_double failed with short write (%ld => %d).\n", datalen, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (data, 0, datalen * sizeof (double)) ;
|
|
|
|
|
|
|
|
if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_READ, &sfinfo)))
|
|
|
|
{ printf ("sf_open_read failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if ((sfinfo.format & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)) != (filetype & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Returned format incorrect (0x%08X => 0x%08X).\n", __LINE__, filetype, sfinfo.format) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < datalen / channels)
|
|
|
|
{ printf ("Too few.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sfinfo.frames > (datalen + datalen / 2))
|
2007-05-14 09:55:24 +00:00
|
|
|
{ printf ("Too many.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != channels)
|
|
|
|
{ printf ("Incorrect number of channels in file.\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_command (file, SFC_SET_NORM_DOUBLE, NULL, SF_FALSE) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
check_log_buffer_or_die (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sf_command (file, SFC_SET_NORM_DOUBLE, NULL, SF_FALSE) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_double (file, data, datalen)) != datalen)
|
|
|
|
{ printf ("Line %d: short read (%d should be %ld).\n", __LINE__, k, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = 0.0 ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < datalen ; k++)
|
|
|
|
{ if (error_function ((double) data [k], (double) orig [k], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample A (#%d : %f should be %f).\n", __LINE__, k, data [k], orig [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
oct_save_double (orig, data, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs += fabs (data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sum_abs < 1.0)
|
|
|
|
{ printf ("Line %d: Signal is all zeros.\n", __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_double (file, data, datalen)) != sfinfo.frames - datalen)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect read length (%ld should be %d).\n", __LINE__,
|
2007-05-14 09:55:24 +00:00
|
|
|
SF_COUNT_TO_LONG (channels * sfinfo.frames - datalen), k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* This check is only for block based encoders which must append silence
|
|
|
|
** to the end of a file so as to fill out a block.
|
|
|
|
*/
|
|
|
|
if ((sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_MS_ADPCM)
|
|
|
|
for (k = 0 ; k < sfinfo.frames - datalen ; k++)
|
|
|
|
if (abs (data [channels * k]) > decay_response (channels * k))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d : Incorrect sample B (#%d : abs (%f) should be < %d).\n", __LINE__, channels * k, data [channels * k], decay_response (channels * k)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (! sfinfo.seekable)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ unlink (filename) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
printf ("ok\n") ;
|
|
|
|
return ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Now test sf_seek function. */
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_SET)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Seek to start of file failed (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (m = 0 ; m < 3 ; m++)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ if ((k = sf_readf_double (file, data, 11)) != 11)
|
|
|
|
{ printf ("Line %d: Incorrect read length (11 => %d).\n", __LINE__, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
for (k = 0 ; k < channels * 11 ; k++)
|
|
|
|
if (error_function ((double) data [k], (double) orig [k + channels * m * 11], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (m = %d) (#%d : %f => %f).\n", __LINE__, m, k + channels * m * 11, orig [k + channels * m * 11], data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (m = 0 ; m < channels ; m++)
|
|
|
|
printf ("%f ", data [m]) ;
|
|
|
|
printf ("\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = BUFFER_SIZE / 10 ;
|
|
|
|
|
|
|
|
/* Check seek from start of file. */
|
|
|
|
if ((k = sf_seek (file, seekpos, SEEK_SET)) != seekpos)
|
|
|
|
{ printf ("Seek to start of file + %d failed (%d).\n", seekpos, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_double (file, data, 1)) != 1)
|
|
|
|
{ printf ("Line %d: sf_readf_double (file, data, 1, 0) returned %d.\n", __LINE__, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_SET) followed by sf_readf_double failed (%f, %f).\n", __LINE__, orig [1], data [0]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_CUR)) != seekpos + 1)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_CUR) with 0 offset failed (%d should be %d)\n", __LINE__, k, seekpos + 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) + BUFFER_SIZE / 5 ;
|
|
|
|
k = sf_seek (file, BUFFER_SIZE / 5, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_double (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (forwards, SEEK_CUR) followed by sf_readf_double failed (%f, %f) (%d, %d).\n", __LINE__, data [0], orig [seekpos * channels], k, seekpos + 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) - 20 ;
|
|
|
|
/* Check seek backward from current position. */
|
|
|
|
k = sf_seek (file, -20, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_double (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (backwards, SEEK_CUR) followed by sf_readf_double failed (%f, %f) (%d, %d).\n", data [0], orig [seekpos * channels], k, seekpos) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that read past end of file returns number of items. */
|
|
|
|
sf_seek (file, (double) sfinfo.frames, SEEK_SET) ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_double (file, data, datalen)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Return value from sf_readf_double past end of file incorrect (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check seek backward from end. */
|
|
|
|
if ((k = sf_seek (file, 5 - (double) sfinfo.frames, SEEK_END)) != 5)
|
|
|
|
{ printf ("sf_seek (SEEK_END) returned %d instead of %d.\n", k, 5) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_double (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [5], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_END) followed by sf_readf_short failed (%f should be %f).\n", __LINE__, data [0], orig [5]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
printf ("ok\n") ;
|
|
|
|
} /* lcomp_test_double */
|
|
|
|
|
|
|
|
/*========================================================================================
|
|
|
|
** Smoothed differential loss compression tests.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
sdlcomp_test_short (const char *filename, int filetype, int channels, double margin)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
2004-01-21 07:46:34 +00:00
|
|
|
int k, m, seekpos, sum_abs ;
|
2007-05-14 09:55:24 +00:00
|
|
|
long datalen ;
|
|
|
|
short *orig, *data, *smooth ;
|
|
|
|
|
|
|
|
channels = 1 ;
|
|
|
|
print_test_name ("sdlcomp_test_short", filename) ;
|
|
|
|
|
|
|
|
datalen = BUFFER_SIZE ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
orig = (short*) orig_buffer ;
|
|
|
|
data = (short*) data_buffer ;
|
|
|
|
smooth = (short*) smooth_buffer ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
gen_signal_double (orig_buffer, 32000.0, channels, datalen) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < datalen ; k++)
|
2004-01-21 07:46:34 +00:00
|
|
|
orig [k] = (short) (orig_buffer [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = 123456789 ; /* Ridiculous value. */
|
|
|
|
sfinfo.channels = channels ;
|
|
|
|
sfinfo.format = filetype ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_WRITE, &sfinfo)))
|
|
|
|
{ printf ("sf_open_write failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_write_short (file, orig, datalen)) != datalen)
|
|
|
|
{ printf ("sf_write_short failed with short write (%ld => %d).\n", datalen, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (data, 0, datalen * sizeof (short)) ;
|
|
|
|
|
|
|
|
if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_READ, &sfinfo)))
|
|
|
|
{ printf ("sf_open_read failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sfinfo.format != (filetype & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)))
|
|
|
|
{ printf ("Line %d: Returned format incorrect (0x%08X => 0x%08X).\n", __LINE__, filetype, sfinfo.format) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < datalen / channels)
|
|
|
|
{ printf ("Too few.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames > (datalen + 400))
|
|
|
|
{ printf ("Too many.frames in file. (%ld should be a little more than %ld)\n", SF_COUNT_TO_LONG (sfinfo.frames), datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != channels)
|
|
|
|
{ printf ("Incorrect number of channels in file.\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_command (file, SFC_SET_NORM_FLOAT, NULL, SF_FALSE) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
check_log_buffer_or_die (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_read_short (file, data, datalen)) != datalen)
|
|
|
|
{ printf ("Line %d: short read (%d should be %ld).\n", __LINE__, k, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
memcpy (smooth, orig, datalen * sizeof (short)) ;
|
|
|
|
smoothed_diff_short (data, datalen) ;
|
|
|
|
smoothed_diff_short (smooth, datalen) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = abs (data [0]) ;
|
|
|
|
for (k = 1 ; k < datalen ; k++)
|
2007-05-14 09:55:24 +00:00
|
|
|
{ if (error_function ((double) data [k], (double) smooth [k], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%d : %d should be %d).\n", __LINE__, k, data [k], smooth [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
oct_save_short (orig, smooth, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = abs (sum_abs + abs (data [k])) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sum_abs < 1)
|
|
|
|
{ printf ("Line %d: Signal is all zeros.\n", __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_read_short (file, data, datalen)) != sfinfo.frames - datalen)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect read length (%d should be %ld).\n", __LINE__, k, SF_COUNT_TO_LONG (sfinfo.frames - datalen)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_MS_ADPCM &&
|
|
|
|
(sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_GSM610)
|
|
|
|
for (k = 0 ; k < sfinfo.frames - datalen ; k++)
|
|
|
|
if (abs (data [k]) > decay_response (k))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%ld : abs (%d) should be < %d).\n", __LINE__, datalen + k, data [k], decay_response (k)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Now test sf_seek function. */
|
|
|
|
if (sfinfo.seekable)
|
|
|
|
{ if ((k = sf_seek (file, 0, SEEK_SET)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Seek to start of file failed (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (m = 0 ; m < 3 ; m++)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ if ((k = sf_read_short (file, data, datalen / 7)) != datalen / 7)
|
|
|
|
{ printf ("Line %d: Incorrect read length (%ld => %d).\n", __LINE__, datalen / 7, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
smoothed_diff_short (data, datalen / 7) ;
|
|
|
|
memcpy (smooth, orig + m * datalen / 7, datalen / 7 * sizeof (short)) ;
|
|
|
|
smoothed_diff_short (smooth, datalen / 7) ;
|
|
|
|
|
|
|
|
for (k = 0 ; k < datalen / 7 ; k++)
|
|
|
|
if (error_function ((double) data [k], (double) smooth [k], margin))
|
|
|
|
{ printf ("Incorrect sample C (#%d (%ld) : %d => %d).\n", k, k + m * (datalen / 7), smooth [k], data [k]) ;
|
|
|
|
for (m = 0 ; m < 10 ; m++)
|
|
|
|
printf ("%d ", data [k]) ;
|
|
|
|
printf ("\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ; /* for (m = 0 ; m < 3 ; m++) */
|
|
|
|
|
|
|
|
seekpos = BUFFER_SIZE / 10 ;
|
|
|
|
|
|
|
|
/* Check seek from start of file. */
|
|
|
|
if ((k = sf_seek (file, seekpos, SEEK_SET)) != seekpos)
|
|
|
|
{ printf ("Seek to start of file + %d failed (%d).\n", seekpos, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_read_short (file, data, 1)) != 1)
|
|
|
|
{ printf ("sf_read_short (file, data, 1) returned %d.\n", k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin))
|
|
|
|
{ printf ("sf_seek (SEEK_SET) followed by sf_read_short failed (%d, %d).\n", orig [1], data [0]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_CUR)) != seekpos + 1)
|
|
|
|
{ printf ("sf_seek (SEEK_CUR) with 0 offset failed (%d should be %d)\n", k, seekpos + 1) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) + BUFFER_SIZE / 5 ;
|
|
|
|
k = sf_seek (file, BUFFER_SIZE / 5, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_short (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (forwards, SEEK_CUR) followed by sf_read_short failed (%d, %d) (%d, %d).\n", data [0], orig [seekpos * channels], k, seekpos + 1) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) - 20 ;
|
|
|
|
/* Check seek backward from current position. */
|
|
|
|
k = sf_seek (file, -20, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_short (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (backwards, SEEK_CUR) followed by sf_read_short failed (%d, %d) (%d, %d).\n", data [0], orig [seekpos * channels], k, seekpos) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that read past end of file returns number of items. */
|
|
|
|
sf_seek (file, (int) sfinfo.frames, SEEK_SET) ;
|
|
|
|
|
|
|
|
if ((k = sf_read_short (file, data, datalen)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Return value from sf_read_short past end of file incorrect (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check seek backward from end. */
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 5 - (int) sfinfo.frames, SEEK_END)) != 5)
|
|
|
|
{ printf ("sf_seek (SEEK_END) returned %d instead of %d.\n", k, 5) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_short (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [5], margin))
|
|
|
|
{ printf ("sf_seek (SEEK_END) followed by sf_read_short failed (%d should be %d).\n", data [0], orig [5]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} /* if (sfinfo.seekable) */
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
printf ("ok\n") ;
|
|
|
|
} /* sdlcomp_test_short */
|
|
|
|
|
|
|
|
static void
|
|
|
|
sdlcomp_test_int (const char *filename, int filetype, int channels, double margin)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
2004-01-21 07:46:34 +00:00
|
|
|
int k, m, seekpos, sum_abs ;
|
2007-05-14 09:55:24 +00:00
|
|
|
long datalen ;
|
|
|
|
int *orig, *data, *smooth ;
|
|
|
|
double scale ;
|
|
|
|
|
|
|
|
channels = 1 ;
|
|
|
|
|
|
|
|
print_test_name ("sdlcomp_test_int", filename) ;
|
|
|
|
|
|
|
|
datalen = BUFFER_SIZE ;
|
|
|
|
scale = 1.0 * 0x10000 ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
orig = (int*) orig_buffer ;
|
|
|
|
data = (int*) data_buffer ;
|
|
|
|
smooth = (int*) smooth_buffer ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
gen_signal_double (orig_buffer, 32000.0 * scale, channels, datalen) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < datalen ; k++)
|
2004-01-21 07:46:34 +00:00
|
|
|
orig [k] = (int) (orig_buffer [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = 123456789 ; /* Ridiculous value. */
|
|
|
|
sfinfo.channels = channels ;
|
|
|
|
sfinfo.format = filetype ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_WRITE, &sfinfo)))
|
|
|
|
{ printf ("sf_open_write failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_writef_int (file, orig, datalen)) != datalen)
|
|
|
|
{ printf ("sf_writef_int failed with int write (%ld => %d).\n", datalen, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (data, 0, datalen * sizeof (int)) ;
|
|
|
|
|
|
|
|
if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_READ, &sfinfo)))
|
|
|
|
{ printf ("sf_open_read failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (sfinfo.format != filetype)
|
|
|
|
{ printf ("Returned format incorrect (0x%08X => 0x%08X).\n", filetype, sfinfo.format) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < datalen / channels)
|
|
|
|
{ printf ("Too few.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames > (datalen + 400))
|
|
|
|
{ printf ("Too many.frames in file. (%ld should be a little more than %ld)\n", SF_COUNT_TO_LONG (sfinfo.frames), datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != channels)
|
|
|
|
{ printf ("Incorrect number of channels in file.\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
check_log_buffer_or_die (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_int (file, data, datalen)) != datalen)
|
|
|
|
{ printf ("int read (%d).\n", k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
memcpy (smooth, orig, datalen * sizeof (int)) ;
|
|
|
|
smoothed_diff_int (data, datalen) ;
|
|
|
|
smoothed_diff_int (smooth, datalen) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = abs (data [0] >> 16) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 1 ; k < datalen ; k++)
|
|
|
|
{ if (error_function (data [k] / scale, smooth [k] / scale, margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%d : %d should be %d).\n", __LINE__, k, data [k], smooth [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
oct_save_int (orig, smooth, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = abs (sum_abs + abs (data [k] >> 16)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sum_abs < 1)
|
|
|
|
{ printf ("Line %d: Signal is all zeros.\n", __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_int (file, data, datalen)) != sfinfo.frames - datalen)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect read length (%d should be %ld).\n", __LINE__, k, SF_COUNT_TO_LONG (sfinfo.frames - datalen)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_IMA_ADPCM &&
|
|
|
|
(sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_MS_ADPCM &&
|
|
|
|
(sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_GSM610 &&
|
|
|
|
(sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_G721_32 &&
|
|
|
|
(sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_G723_24)
|
|
|
|
for (k = 0 ; k < sfinfo.frames - datalen ; k++)
|
|
|
|
if (abs (data [k]) > decay_response (k))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%ld : abs (%d) should be < %d).\n", __LINE__, datalen + k, data [k], decay_response (k)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Now test sf_seek function. */
|
|
|
|
if (sfinfo.seekable)
|
|
|
|
{ if ((k = sf_seek (file, 0, SEEK_SET)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Seek to start of file failed (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (m = 0 ; m < 3 ; m++)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ if ((k = sf_readf_int (file, data, datalen / 7)) != datalen / 7)
|
|
|
|
{ printf ("Line %d: Incorrect read length (%ld => %d).\n", __LINE__, datalen / 7, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
smoothed_diff_int (data, datalen / 7) ;
|
|
|
|
memcpy (smooth, orig + m * datalen / 7, datalen / 7 * sizeof (int)) ;
|
|
|
|
smoothed_diff_int (smooth, datalen / 7) ;
|
|
|
|
|
|
|
|
for (k = 0 ; k < datalen / 7 ; k++)
|
|
|
|
if (error_function (data [k] / scale, smooth [k] / scale, margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%d (%ld) : %d => %d).\n", __LINE__, k, k + m * (datalen / 7), smooth [k], data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (m = 0 ; m < 10 ; m++)
|
|
|
|
printf ("%d ", data [k]) ;
|
|
|
|
printf ("\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ; /* for (m = 0 ; m < 3 ; m++) */
|
|
|
|
|
|
|
|
seekpos = BUFFER_SIZE / 10 ;
|
|
|
|
|
|
|
|
/* Check seek from start of file. */
|
|
|
|
if ((k = sf_seek (file, seekpos, SEEK_SET)) != seekpos)
|
|
|
|
{ printf ("Seek to start of file + %d failed (%d).\n", seekpos, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_readf_int (file, data, 1)) != 1)
|
|
|
|
{ printf ("sf_readf_int (file, data, 1) returned %d.\n", k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin))
|
|
|
|
{ printf ("sf_seek (SEEK_SET) followed by sf_readf_int failed (%d, %d).\n", orig [1], data [0]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_CUR)) != seekpos + 1)
|
|
|
|
{ printf ("sf_seek (SEEK_CUR) with 0 offset failed (%d should be %d)\n", k, seekpos + 1) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) + BUFFER_SIZE / 5 ;
|
|
|
|
k = sf_seek (file, BUFFER_SIZE / 5, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_int (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (forwards, SEEK_CUR) followed by sf_readf_int failed (%d, %d) (%d, %d).\n", data [0], orig [seekpos * channels], k, seekpos + 1) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) - 20 ;
|
|
|
|
/* Check seek backward from current position. */
|
|
|
|
k = sf_seek (file, -20, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_int (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (backwards, SEEK_CUR) followed by sf_readf_int failed (%d, %d) (%d, %d).\n", data [0], orig [seekpos * channels], k, seekpos) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that read past end of file returns number of items. */
|
|
|
|
sf_seek (file, (int) sfinfo.frames, SEEK_SET) ;
|
|
|
|
|
|
|
|
if ((k = sf_readf_int (file, data, datalen)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Return value from sf_readf_int past end of file incorrect (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check seek backward from end. */
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 5 - (int) sfinfo.frames, SEEK_END)) != 5)
|
|
|
|
{ printf ("sf_seek (SEEK_END) returned %d instead of %d.\n", k, 5) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_readf_int (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function (data [0] / scale, orig [5] / scale, margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: sf_seek (SEEK_END) followed by sf_readf_int failed (%d should be %d).\n", __LINE__, data [0], orig [5]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} /* if (sfinfo.seekable) */
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
printf ("ok\n") ;
|
|
|
|
} /* sdlcomp_test_int */
|
|
|
|
|
|
|
|
static void
|
|
|
|
sdlcomp_test_float (const char *filename, int filetype, int channels, double margin)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
|
|
|
int k, m, seekpos ;
|
|
|
|
long datalen ;
|
|
|
|
float *orig, *data, *smooth ;
|
2004-01-21 07:46:34 +00:00
|
|
|
double sum_abs ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
channels = 1 ;
|
|
|
|
|
|
|
|
print_test_name ("sdlcomp_test_float", filename) ;
|
|
|
|
|
|
|
|
printf ("** fix this ** ") ;
|
|
|
|
|
|
|
|
datalen = BUFFER_SIZE ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
orig = (float*) orig_buffer ;
|
|
|
|
data = (float*) data_buffer ;
|
|
|
|
smooth = (float*) smooth_buffer ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
gen_signal_double (orig_buffer, 32000.0, channels, datalen) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 0 ; k < datalen ; k++)
|
2004-01-21 07:46:34 +00:00
|
|
|
orig [k] = (int) (orig_buffer [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = 123456789 ; /* Ridiculous value. */
|
|
|
|
sfinfo.channels = channels ;
|
|
|
|
sfinfo.format = filetype ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_WRITE, &sfinfo)))
|
|
|
|
{ printf ("sf_open_write failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_command (file, SFC_SET_NORM_FLOAT, NULL, SF_FALSE) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
|
|
|
|
if ((k = sf_write_float (file, orig, datalen)) != datalen)
|
|
|
|
{ printf ("sf_write_float failed with float write (%ld => %d).\n", datalen, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (data, 0, datalen * sizeof (float)) ;
|
|
|
|
|
|
|
|
if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_READ, &sfinfo)))
|
|
|
|
{ printf ("sf_open_read failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if ((sfinfo.format & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)) != (filetype & (SF_FORMAT_TYPEMASK | SF_FORMAT_SUBMASK)))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Returned format incorrect (0x%08X => 0x%08X).\n", __LINE__, filetype, sfinfo.format) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < datalen / channels)
|
|
|
|
{ printf ("Too few.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames > (datalen + 400))
|
|
|
|
{ printf ("Too many.frames in file. (%ld should be a little more than %ld)\n", SF_COUNT_TO_LONG (sfinfo.frames), datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != channels)
|
|
|
|
{ printf ("Incorrect number of channels in file.\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_command (file, SFC_SET_NORM_FLOAT, NULL, SF_FALSE) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
check_log_buffer_or_die (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_read_float (file, data, datalen)) != datalen)
|
|
|
|
{ printf ("int read (%d).\n", k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
memcpy (smooth, orig, datalen * sizeof (float)) ;
|
|
|
|
smoothed_diff_float (data, datalen) ;
|
|
|
|
smoothed_diff_float (smooth, datalen) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = fabs (data [0]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
for (k = 1 ; k < datalen ; k++)
|
|
|
|
{ if (error_function (data [k], smooth [k], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%d : %d should be %d).\n", __LINE__, k, (int) data [k], (int) smooth [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
oct_save_float (orig, smooth, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs += fabs (data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sum_abs <= 0.0)
|
|
|
|
{ printf ("Line %d: Signal is all zeros.\n", __LINE__) ;
|
|
|
|
printf ("sum_abs : % 10.6f\n", sum_abs) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_read_float (file, data, datalen)) != sfinfo.frames - datalen)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect read length (%d should be %ld).\n", __LINE__, k, SF_COUNT_TO_LONG (sfinfo.frames - datalen)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_MS_ADPCM &&
|
|
|
|
(sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_GSM610)
|
|
|
|
for (k = 0 ; k < sfinfo.frames - datalen ; k++)
|
|
|
|
if (abs (data [k]) > decay_response (k))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%ld : abs (%d) should be < %d).\n", __LINE__, datalen + k, (int) data [k], (int) decay_response (k)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Now test sf_seek function. */
|
|
|
|
if (sfinfo.seekable)
|
|
|
|
{ if ((k = sf_seek (file, 0, SEEK_SET)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Seek to start of file failed (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (m = 0 ; m < 3 ; m++)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ if ((k = sf_read_float (file, data, datalen / 7)) != datalen / 7)
|
|
|
|
{ printf ("Line %d: Incorrect read length (%ld => %d).\n", __LINE__, datalen / 7, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
smoothed_diff_float (data, datalen / 7) ;
|
|
|
|
memcpy (smooth, orig + m * datalen / 7, datalen / 7 * sizeof (float)) ;
|
|
|
|
smoothed_diff_float (smooth, datalen / 7) ;
|
|
|
|
|
|
|
|
for (k = 0 ; k < datalen / 7 ; k++)
|
|
|
|
if (error_function ((float) data [k], (float) smooth [k], margin))
|
|
|
|
{ printf ("Incorrect sample C (#%d (%ld) : %d => %d).\n", k, k + m * (datalen / 7), (int) smooth [k], (int) data [k]) ;
|
|
|
|
for (m = 0 ; m < 10 ; m++)
|
|
|
|
printf ("%d ", (int) data [k]) ;
|
|
|
|
printf ("\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ; /* for (m = 0 ; m < 3 ; m++) */
|
|
|
|
|
|
|
|
seekpos = BUFFER_SIZE / 10 ;
|
|
|
|
|
|
|
|
/* Check seek from start of file. */
|
|
|
|
if ((k = sf_seek (file, seekpos, SEEK_SET)) != seekpos)
|
|
|
|
{ printf ("Seek to start of file + %d failed (%d).\n", seekpos, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_read_float (file, data, 1)) != 1)
|
|
|
|
{ printf ("sf_read_float (file, data, 1) returned %d.\n", k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (error_function ((float) data [0], (float) orig [seekpos * channels], margin))
|
|
|
|
{ printf ("sf_seek (SEEK_SET) followed by sf_read_float failed (%d, %d).\n", (int) orig [1], (int) data [0]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_CUR)) != seekpos + 1)
|
|
|
|
{ printf ("sf_seek (SEEK_CUR) with 0 offset failed (%d should be %d)\n", k, seekpos + 1) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) + BUFFER_SIZE / 5 ;
|
|
|
|
k = sf_seek (file, BUFFER_SIZE / 5, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_float (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((float) data [0], (float) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (forwards, SEEK_CUR) followed by sf_read_float failed (%d, %d) (%d, %d).\n", (int) data [0], (int) orig [seekpos * channels], k, seekpos + 1) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) - 20 ;
|
|
|
|
/* Check seek backward from current position. */
|
|
|
|
k = sf_seek (file, -20, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_float (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((float) data [0], (float) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (backwards, SEEK_CUR) followed by sf_read_float failed (%d, %d) (%d, %d).\n", (int) data [0], (int) orig [seekpos * channels], k, seekpos) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that read past end of file returns number of items. */
|
|
|
|
sf_seek (file, (int) sfinfo.frames, SEEK_SET) ;
|
|
|
|
|
|
|
|
if ((k = sf_read_float (file, data, datalen)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Return value from sf_read_float past end of file incorrect (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check seek backward from end. */
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 5 - (int) sfinfo.frames, SEEK_END)) != 5)
|
|
|
|
{ printf ("sf_seek (SEEK_END) returned %d instead of %d.\n", k, 5) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_float (file, data, channels) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((float) data [0], (float) orig [5], margin))
|
|
|
|
{ printf ("sf_seek (SEEK_END) followed by sf_read_float failed (%d should be %d).\n", (int) data [0], (int) orig [5]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} /* if (sfinfo.seekable) */
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
printf ("ok\n") ;
|
|
|
|
} /* sdlcomp_test_float */
|
|
|
|
|
|
|
|
static void
|
|
|
|
sdlcomp_test_double (const char *filename, int filetype, int channels, double margin)
|
|
|
|
{ SNDFILE *file ;
|
|
|
|
SF_INFO sfinfo ;
|
|
|
|
int k, m, seekpos ;
|
|
|
|
long datalen ;
|
2004-01-21 07:46:34 +00:00
|
|
|
double *orig, *data, *smooth, sum_abs ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
channels = 1 ;
|
|
|
|
print_test_name ("sdlcomp_test_double", filename) ;
|
|
|
|
|
|
|
|
datalen = BUFFER_SIZE ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
orig = orig_buffer ;
|
|
|
|
data = data_buffer ;
|
|
|
|
smooth = smooth_buffer ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
gen_signal_double (orig_buffer, 32000.0, channels, datalen) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
sfinfo.samplerate = SAMPLE_RATE ;
|
|
|
|
sfinfo.frames = 123456789 ; /* Ridiculous value. */
|
|
|
|
sfinfo.channels = channels ;
|
|
|
|
sfinfo.format = filetype ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_WRITE, &sfinfo)))
|
|
|
|
{ printf ("sf_open_write failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_command (file, SFC_SET_NORM_DOUBLE, NULL, SF_FALSE) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
|
|
|
|
if ((k = sf_write_double (file, orig, datalen)) != datalen)
|
|
|
|
{ printf ("sf_write_double failed with double write (%ld => %d).\n", datalen, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
memset (data, 0, datalen * sizeof (double)) ;
|
|
|
|
|
|
|
|
if ((filetype & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
|
|
|
|
memset (&sfinfo, 0, sizeof (sfinfo)) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (! (file = sf_open (filename, SFM_READ, &sfinfo)))
|
|
|
|
{ printf ("sf_open_read failed with error : ") ;
|
|
|
|
puts (sf_strerror (NULL)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (sfinfo.format != filetype)
|
|
|
|
{ printf ("Returned format incorrect (0x%08X => 0x%08X).\n", filetype, sfinfo.format) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames < datalen / channels)
|
|
|
|
{ printf ("Too few.frames in file. (%ld should be a little more than %ld)\n", datalen, SF_COUNT_TO_LONG (sfinfo.frames)) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.frames > (datalen + 400))
|
|
|
|
{ printf ("Too many.frames in file. (%ld should be a little more than %ld)\n", SF_COUNT_TO_LONG (sfinfo.frames), datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (sfinfo.channels != channels)
|
|
|
|
{ printf ("Incorrect number of channels in file.\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
sf_command (file, SFC_SET_NORM_DOUBLE, NULL, SF_FALSE) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
check_log_buffer_or_die (file) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_read_double (file, data, datalen)) != datalen)
|
|
|
|
{ printf ("int read (%d).\n", k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
memcpy (smooth, orig, datalen * sizeof (double)) ;
|
|
|
|
smoothed_diff_double (data, datalen) ;
|
|
|
|
smoothed_diff_double (smooth, datalen) ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs = fabs (data [0]) ;
|
|
|
|
for (k = 1 ; k < datalen ; k++)
|
2007-05-14 09:55:24 +00:00
|
|
|
{ if (error_function (data [k], smooth [k], margin))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%d : %d should be %d).\n", __LINE__, k, (int) data [k], (int) smooth [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
oct_save_double (orig, smooth, datalen) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sum_abs += fabs (data [k]) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
if (sum_abs < 1.0)
|
|
|
|
{ printf ("Line %d: Signal is all zeros.\n", __LINE__) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_read_double (file, data, datalen)) != sfinfo.frames - datalen)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect read length (%d should be %ld).\n", __LINE__, k, SF_COUNT_TO_LONG (sfinfo.frames - datalen)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_MS_ADPCM &&
|
|
|
|
(sfinfo.format & SF_FORMAT_SUBMASK) != SF_FORMAT_GSM610)
|
|
|
|
for (k = 0 ; k < sfinfo.frames - datalen ; k++)
|
|
|
|
if (abs (data [k]) > decay_response (k))
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Incorrect sample (#%ld : abs (%d) should be < %d).\n", __LINE__, datalen + k, (int) data [k], (int) decay_response (k)) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Now test sf_seek function. */
|
|
|
|
if (sfinfo.seekable)
|
|
|
|
{ if ((k = sf_seek (file, 0, SEEK_SET)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Seek to start of file failed (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
for (m = 0 ; m < 3 ; m++)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ if ((k = sf_read_double (file, data, datalen / 7)) != datalen / 7)
|
|
|
|
{ printf ("Line %d: Incorrect read length (%ld => %d).\n", __LINE__, datalen / 7, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
smoothed_diff_double (data, datalen / 7) ;
|
|
|
|
memcpy (smooth, orig + m * datalen / 7, datalen / 7 * sizeof (double)) ;
|
|
|
|
smoothed_diff_double (smooth, datalen / 7) ;
|
|
|
|
|
|
|
|
for (k = 0 ; k < datalen / 7 ; k++)
|
|
|
|
if (error_function ((double) data [k], (double) smooth [k], margin))
|
|
|
|
{ printf ("Incorrect sample C (#%d (%ld) : %d => %d).\n", k, k + m * (datalen / 7), (int) smooth [k], (int) data [k]) ;
|
|
|
|
for (m = 0 ; m < 10 ; m++)
|
|
|
|
printf ("%d ", (int) data [k]) ;
|
|
|
|
printf ("\n") ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} ; /* for (m = 0 ; m < 3 ; m++) */
|
|
|
|
|
|
|
|
seekpos = BUFFER_SIZE / 10 ;
|
|
|
|
|
|
|
|
/* Check seek from start of file. */
|
|
|
|
if ((k = sf_seek (file, seekpos, SEEK_SET)) != seekpos)
|
|
|
|
{ printf ("Seek to start of file + %d failed (%d).\n", seekpos, k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2004-01-21 07:46:34 +00:00
|
|
|
if ((k = sf_read_double (file, data, 1)) != 1)
|
|
|
|
{ printf ("sf_read_double (file, data, 1) returned %d.\n", k) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
2007-05-14 09:55:24 +00:00
|
|
|
|
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin))
|
|
|
|
{ printf ("sf_seek (SEEK_SET) followed by sf_read_double failed (%d, %d).\n", (int) orig [1], (int) data [0]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 0, SEEK_CUR)) != seekpos + 1)
|
|
|
|
{ printf ("sf_seek (SEEK_CUR) with 0 offset failed (%d should be %d)\n", k, seekpos + 1) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) + BUFFER_SIZE / 5 ;
|
|
|
|
k = sf_seek (file, BUFFER_SIZE / 5, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_double (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (forwards, SEEK_CUR) followed by sf_read_double failed (%d, %d) (%d, %d).\n", (int) data [0], (int) orig [seekpos * channels], k, seekpos + 1) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
seekpos = sf_seek (file, 0, SEEK_CUR) - 20 ;
|
|
|
|
/* Check seek backward from current position. */
|
|
|
|
k = sf_seek (file, -20, SEEK_CUR) ;
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_double (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [seekpos * channels], margin) || k != seekpos)
|
|
|
|
{ printf ("sf_seek (backwards, SEEK_CUR) followed by sf_read_double failed (%d, %d) (%d, %d).\n", (int) data [0], (int) orig [seekpos * channels], k, seekpos) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check that read past end of file returns number of items. */
|
|
|
|
sf_seek (file, (int) sfinfo.frames, SEEK_SET) ;
|
|
|
|
|
|
|
|
if ((k = sf_read_double (file, data, datalen)) != 0)
|
2004-01-21 07:46:34 +00:00
|
|
|
{ printf ("Line %d: Return value from sf_read_double past end of file incorrect (%d).\n", __LINE__, k) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
/* Check seek backward from end. */
|
|
|
|
|
|
|
|
if ((k = sf_seek (file, 5 - (int) sfinfo.frames, SEEK_END)) != 5)
|
|
|
|
{ printf ("sf_seek (SEEK_END) returned %d instead of %d.\n", k, 5) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
|
2004-01-21 07:46:34 +00:00
|
|
|
sf_read_double (file, data, 1) ;
|
2007-05-14 09:55:24 +00:00
|
|
|
if (error_function ((double) data [0], (double) orig [5], margin))
|
|
|
|
{ printf ("sf_seek (SEEK_END) followed by sf_read_double failed (%d should be %d).\n", (int) data [0], (int) orig [5]) ;
|
|
|
|
exit (1) ;
|
|
|
|
} ;
|
|
|
|
} /* if (sfinfo.seekable) */
|
|
|
|
|
|
|
|
sf_close (file) ;
|
|
|
|
|
|
|
|
unlink (filename) ;
|
|
|
|
printf ("ok\n") ;
|
|
|
|
} /* sdlcomp_test_double */
|
|
|
|
|
|
|
|
/*========================================================================================
|
|
|
|
** Auxiliary functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SIGNAL_MAXVAL 30000.0
|
|
|
|
#define DECAY_COUNT 1000
|
|
|
|
|
|
|
|
static int
|
|
|
|
decay_response (int k)
|
|
|
|
{ if (k < 1)
|
|
|
|
return (int) (1.2 * SIGNAL_MAXVAL) ;
|
|
|
|
if (k > DECAY_COUNT)
|
|
|
|
return 0 ;
|
|
|
|
return (int) (1.2 * SIGNAL_MAXVAL * (DECAY_COUNT - k) / (1.0 * DECAY_COUNT)) ;
|
|
|
|
} /* decay_response */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gen_signal_double (double *data, double scale, int channels, int datalen)
|
|
|
|
{ int k, ramplen ;
|
|
|
|
double amp = 0.0 ;
|
|
|
|
|
|
|
|
ramplen = DECAY_COUNT ;
|
|
|
|
|
|
|
|
if (channels == 1)
|
|
|
|
{ for (k = 0 ; k < datalen ; k++)
|
|
|
|
{ if (k <= ramplen)
|
|
|
|
amp = scale * k / ((double) ramplen) ;
|
|
|
|
else if (k > datalen - ramplen)
|
|
|
|
amp = scale * (datalen - k) / ((double) ramplen) ;
|
|
|
|
|
|
|
|
/*-printf ("%3d : %g\n", k, amp) ;-*/
|
|
|
|
|
|
|
|
data [k] = amp * (0.4 * sin (33.3 * 2.0 * M_PI * ((double) (k+1)) / ((double) SAMPLE_RATE))
|
|
|
|
+ 0.3 * cos (201.1 * 2.0 * M_PI * ((double) (k+1)) / ((double) SAMPLE_RATE))) ;
|
|
|
|
} ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ for (k = 0 ; k < datalen ; k ++)
|
|
|
|
{ if (k <= ramplen)
|
|
|
|
amp = scale * k / ((double) ramplen) ;
|
|
|
|
else if (k > datalen - ramplen)
|
|
|
|
amp = scale * (datalen - k) / ((double) ramplen) ;
|
|
|
|
|
|
|
|
data [2 * k] = amp * (0.4 * sin (33.3 * 2.0 * M_PI * ((double) (k+1)) / ((double) SAMPLE_RATE))
|
|
|
|
+ 0.3 * cos (201.1 * 2.0 * M_PI * ((double) (k+1)) / ((double) SAMPLE_RATE))) ;
|
|
|
|
data [2 * k + 1] = amp * (0.4 * sin (55.5 * 2.0 * M_PI * ((double) (k+1)) / ((double) SAMPLE_RATE))
|
|
|
|
+ 0.3 * cos (201.1 * 2.0 * M_PI * ((double) (k+1)) / ((double) SAMPLE_RATE))) ;
|
|
|
|
} ;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
return ;
|
|
|
|
} /* gen_signal_double */
|
|
|
|
|
|
|
|
static int
|
|
|
|
error_function (double data, double orig, double margin)
|
|
|
|
{ double error ;
|
|
|
|
|
|
|
|
if (fabs (orig) <= 500.0)
|
|
|
|
error = fabs (fabs (data) - fabs (orig)) / 2000.0 ;
|
|
|
|
else if (fabs (orig) <= 1000.0)
|
|
|
|
error = fabs (data - orig) / 3000.0 ;
|
|
|
|
else
|
|
|
|
error = fabs (data - orig) / fabs (orig) ;
|
|
|
|
|
|
|
|
if (error > margin)
|
|
|
|
{ printf ("\n\n*******************\nError : %f\n", error) ;
|
|
|
|
return 1 ;
|
|
|
|
} ;
|
|
|
|
return 0 ;
|
|
|
|
} /* error_function */
|
|
|
|
|
|
|
|
static void
|
|
|
|
smoothed_diff_short (short *data, unsigned int datalen)
|
|
|
|
{ unsigned int k ;
|
|
|
|
double memory = 0.0 ;
|
|
|
|
|
|
|
|
/* Calculate the smoothed sample-to-sample difference. */
|
|
|
|
for (k = 0 ; k < datalen - 1 ; k++)
|
|
|
|
{ memory = 0.7 * memory + (1 - 0.7) * (double) (data [k+1] - data [k]) ;
|
|
|
|
data [k] = (short) memory ;
|
|
|
|
} ;
|
|
|
|
data [datalen-1] = data [datalen-2] ;
|
|
|
|
|
|
|
|
} /* smoothed_diff_short */
|
|
|
|
|
|
|
|
static void
|
|
|
|
smoothed_diff_int (int *data, unsigned int datalen)
|
|
|
|
{ unsigned int k ;
|
|
|
|
double memory = 0.0 ;
|
|
|
|
|
|
|
|
/* Calculate the smoothed sample-to-sample difference. */
|
|
|
|
for (k = 0 ; k < datalen - 1 ; k++)
|
|
|
|
{ memory = 0.7 * memory + (1 - 0.7) * (double) (data [k+1] - data [k]) ;
|
|
|
|
data [k] = (int) memory ;
|
|
|
|
} ;
|
|
|
|
data [datalen-1] = data [datalen-2] ;
|
|
|
|
|
|
|
|
} /* smoothed_diff_int */
|
|
|
|
|
|
|
|
static void
|
|
|
|
smoothed_diff_float (float *data, unsigned int datalen)
|
|
|
|
{ unsigned int k ;
|
|
|
|
float memory = 0.0 ;
|
|
|
|
|
|
|
|
/* Calculate the smoothed sample-to-sample difference. */
|
|
|
|
for (k = 0 ; k < datalen - 1 ; k++)
|
|
|
|
{ memory = 0.7 * memory + (1 - 0.7) * (data [k+1] - data [k]) ;
|
|
|
|
data [k] = memory ;
|
|
|
|
} ;
|
|
|
|
data [datalen-1] = data [datalen-2] ;
|
|
|
|
|
|
|
|
} /* smoothed_diff_float */
|
|
|
|
|
|
|
|
static void
|
|
|
|
smoothed_diff_double (double *data, unsigned int datalen)
|
|
|
|
{ unsigned int k ;
|
|
|
|
double memory = 0.0 ;
|
|
|
|
|
|
|
|
/* Calculate the smoothed sample-to-sample difference. */
|
|
|
|
for (k = 0 ; k < datalen - 1 ; k++)
|
|
|
|
{ memory = 0.7 * memory + (1 - 0.7) * (data [k+1] - data [k]) ;
|
|
|
|
data [k] = memory ;
|
|
|
|
} ;
|
|
|
|
data [datalen-1] = data [datalen-2] ;
|
|
|
|
|
|
|
|
} /* smoothed_diff_double */
|
|
|
|
/*
|
|
|
|
** Do not edit or modify anything in this comment block.
|
|
|
|
** The arch-tag line is a file identity tag for the GNU Arch
|
|
|
|
** revision control system.
|
|
|
|
**
|
|
|
|
** arch-tag: 5eb86888-3311-48b8-920e-c2a0393b7ad2
|
|
|
|
*/
|