/* IO handlers */

#include <math.h>
#include <stdio.h>
#include <fcntl.h>
#include <signal.h>
#include <limits.h>
#include <errno.h>
#include <stdlib.h>

#ifdef NEXT
  #include <libc.h>
#else
  #include <unistd.h>
  #ifndef inline
    #define inline
  #endif
#endif

#ifdef INT_MAX
  #if INT_MAX != 2147483647
  #error CLM C code assumes 32-bit ints
  #endif
#endif

#ifdef LONG_MAX
  #if LONG_MAX < 2147483647
  #error CLM C code assumes longs are at least 32 bits
  #endif
#endif

#ifdef SHRT_MAX
  #if SHRT_MAX != 32767
  #error CLM C code assumes 16-bit shorts
  #endif
#endif

#ifdef CHAR_BIT
  #if CHAR_BIT != 8
  #error CLM C code assumes 8-bit chars
  #endif
#endif

#include "cmus.h"
#include "sound_types.h"
#include "cmus_prototypes.h"


/* in MCL, printf causes the Mac to crash, so we go through clm_printf for all such calls */

#if defined(MACOS) || defined(SGI)
  void (*lisp_printf_callback)(char *);
  #ifdef SGI
    static int lp_set = 0;
  #endif
  void set_lisp_printf(void (*lp)(char *)) 
  {
    lisp_printf_callback = lp;
    #ifdef SGI
      lp_set = 1;
    #endif
  }
#endif

void clm_printf(char *str)
{
#ifndef MACOS
  #ifdef SGI
    if (lp_set) (*lisp_printf_callback)(str);
  #endif
  printf(str); fflush(stdout);
#else
  (*lisp_printf_callback)(str);
#endif
}


/* data translations for big/little endian machines -- the m_* forms are macros where possible for speed */

inline static short swap_short (short n)
{
  short o;
  unsigned char *inp,*outp; 
  inp=(unsigned char *)&n; 
  outp=(unsigned char *)&o;
  outp[0]=inp[1]; outp[1]=inp[0]; 
  return(o);
}

inline static unsigned short swap_unsigned_short (unsigned short n)
{
  unsigned short o;
  unsigned char *inp,*outp; 
  inp=(unsigned char *)&n; 
  outp=(unsigned char *)&o;
  outp[0]=inp[1]; outp[1]=inp[0]; 
  return(o);
}

inline static int swap_int (int n)
{
  int o;
  unsigned char *inp,*outp; 
  inp=(unsigned char *)&n; 
  outp=(unsigned char *)&o;
  outp[0]=inp[3]; outp[1]=inp[2]; outp[2]=inp[1]; outp[3]=inp[0];
  return(o);
}

inline static float swap_float (unsigned char *inp)
{
  float o;
  unsigned char *outp;
  outp=(unsigned char *)&o;
  outp[0]=inp[3]; outp[1]=inp[2]; outp[2]=inp[1]; outp[3]=inp[0];
  return(o);
}

inline static float swap_double (unsigned char *inp)
{
  double o;
  unsigned char *outp;
  outp=(unsigned char *)&o;
  outp[0]=inp[7]; outp[1]=inp[6]; outp[2]=inp[5]; outp[3]=inp[4]; outp[4]=inp[3]; outp[5]=inp[2]; outp[6]=inp[1]; outp[7]=inp[0];
  return(o);
}

inline static void set_float(unsigned char *j, float x)
{
  unsigned char *ox;
  ox=(unsigned char *)&x;
  j[0]=ox[0]; j[1]=ox[1]; j[2]=ox[2]; j[3]=ox[3];
}

inline static void set_swapped_float(unsigned char *j, float x)
{
  unsigned char *ox;
  ox=(unsigned char *)&x;
  j[0]=ox[3]; j[1]=ox[2]; j[2]=ox[1]; j[3]=ox[0];
}

inline static void set_double(unsigned char *j, double x)
{
  int i;
  unsigned char *ox;
  ox=(unsigned char *)&x;
  for (i=0;i<8;i++) j[i]=ox[i];
}

inline static void set_swapped_double(unsigned char *j, double x)
{
  unsigned char *ox;
  ox=(unsigned char *)&x;
  j[0]=ox[7]; j[1]=ox[6]; j[2]=ox[5]; j[3]=ox[4]; j[4]=ox[3]; j[5]=ox[2]; j[6]=ox[1]; j[7]=ox[0];
}


/* Vax float translation taken from Mosaic libdtm/vaxcvt.c */
static float from_vax_float(unsigned int intp)
{
  unsigned char exp;
  unsigned char c0, c1, c2, c3;
  float o;
  unsigned char *outp,*inp;
  outp=(unsigned char *)&o;
  inp = (unsigned char *)&intp;
  c0 = inp[0]; c1 = inp[1]; c2 = inp[2]; c3 = inp[3];
  exp = (c1 << 1) | (c0 >> 7);             /* extract exponent */
  if (!exp && !c1) return(0.0);            /* zero value */
  else if (exp>2) {                        /* normal value */
    outp[0] = c1 - 1;                      /* subtracts 2 from exponent */
    outp[1] = c0;                          /* copy mantissa, LSB of exponent */
    outp[2] = c3;
    outp[3] = c2;}
  else if (exp) {                          /* denormalized number */
    unsigned int shft;
    outp[0] = c1 & 0x80;                   /* keep sign, zero exponent */
    shft = 3 - exp;
    /* shift original mant by 1 or 2 to get denormalized mant */
    /* prefix mantissa with '1'b or '01'b as appropriate */
    outp[1] = ((c0 & 0x7f) >> shft) | (0x10 << exp);
    outp[2] = (c0 << (8-shft)) | (c3 >> shft);
    outp[3] = (c3 << (8-shft)) | (c2 >> shft);}
  else {                                   /* sign=1 -> infinity or NaN */
    outp[0] = 0xff;                        /* set exp to 255 */
    outp[1] = c0 | 0x80;                   /* LSB of exp = 1 */
    outp[2] = c3;
    outp[3] = c2;}
  return(o);
}

#if 0
int to_vax_float(float f)
{
  int i;
  unsigned char exp;
  unsigned char c0, c1, c2, c3;
  int o;
  unsigned char *outp, *inp;
  inp = (unsigned char *)&f;
  outp = (unsigned char *)&o;
  c0 = inp[0];
  c1 = inp[1];
  c2 = inp[2];
  c3 = inp[3]; 
  exp = (c0 << 1) | (c1 >> 7); 	 	 /* extract exponent */
  if (exp) {                             /* non-zero exponent */
    outp[0] = c1;                        /* copy mantissa, last bit of exponent */
    outp[2] = c3;
    outp[3] = c2;
    if (exp<254)                         /* normal value */
      outp[1] = c0 + 1;		         /* actually adds two to exp */
    else {                               /* infinity or NaN */
      if (exp==254)                      /* unrepresentable - OFL */
	return(0);                       /* set mant=0 for overflow */
      outp[0] &= 0x7f;                   /* set last bit of exp to 0 */
      outp[1] = 0x80;}}                  /* sign=1 exp=0 -> OFL or NaN */
  else if (c1 & 0x60) {                  /* denormalized value */
    int shft;
    shft = (c1 & 0x40) ? 1 : 2;          /* shift needed to normalize */
    /* shift mantissa -- note last bit of exp set to 1 implicitly */
    outp[0] = (c1 << shft) | (c2 >> (8-shft));
    outp[3] = (c2 << shft) | (c3 >> (8-shft));
    outp[2] = c3 << shft;
    outp[1] = (c0 & 0x80);               /* sign */
    if (shft==1) {                       /* set exp to 2 */
      outp[1] |= 0x01;
      outp[0] &= 0x7f;}                  /* set LSB of exp to 0 */
    else return(0);}                     /* zero */
  return(o);
}
#endif

#ifdef CLM_LITTLE_ENDIAN

  #define m_big_endian_short(n)             (swap_short(n))
  #define m_little_endian_short(n)          (n)
  #define m_big_endian_int(n)               (swap_int(n))
  #define m_little_endian_int(n)            (n)
  #define m_big_endian_float(n)             (swap_float(n))
  #define m_little_endian_float(n)          (*((float *)n))
  #define m_big_endian_double(n)            (swap_double(n))
  #define m_little_endian_double(n)         (*((double *)n))
  #define m_big_endian_unsigned_short(n)    (swap_unsigned_short(n))
  #define m_little_endian_unsigned_short(n) (n)
  #define m_big_endian_float_set(j,x)       (set_swapped_float(j,x))
  #define m_little_endian_float_set(j,x)    (set_float(j,x))
  #define m_big_endian_double_set(j,x)      (set_swapped_double(j,x))
  #define m_little_endian_double_set(j,x)   (set_double(j,x))

  short big_endian_short(short n)                 {return(swap_short(n));}
  short little_endian_short(short n)              {return(n);}
  int big_endian_int(int n)                       {return(swap_int(n));}
  int little_endian_int(int n)                    {return(n);}
  float big_endian_float(unsigned char* buf)      {return(swap_float(buf));}
  float little_endian_float(unsigned char *buf)   {return(*((float *)buf));}
  double big_endian_double(unsigned char* buf)    {return(swap_double(buf));}
  double little_endian_double(unsigned char *buf) {return(*((double *)buf));}
  unsigned short big_endian_unsigned_short(unsigned short n) {return(swap_unsigned_short(n));}
  unsigned short little_endian_unsigned_short(unsigned short n) {return(n);}

#else

  #define m_big_endian_short(n)             (n)
  #define m_little_endian_short(n)          (swap_short(n))
  #define m_big_endian_int(n)               (n)
  #define m_little_endian_int(n)            (swap_int(n))
  #define m_big_endian_float(n)             (*((float *)n))
  #define m_little_endian_float(n)          (swap_float(n))
  #define m_big_endian_double(n)            (*((double *)n))
  #define m_little_endian_double(n)         (swap_double(n))
  #define m_big_endian_unsigned_short(n)    (n)
  #define m_little_endian_unsigned_short(n) (swap_unsigned_short(n))
  #define m_big_endian_float_set(j,x)       (set_float(j,x))
  #define m_little_endian_float_set(j,x)    (set_swapped_float(j,x))
  #define m_big_endian_double_set(j,x)      (set_double(j,x))
  #define m_little_endian_double_set(j,x)   (set_swapped_double(j,x))

  short big_endian_short(short n)                 {return(n);}
  short little_endian_short(short n)              {return(swap_short(n));}
  int big_endian_int(int n)                       {return(n);}
  int little_endian_int(int n)                    {return(swap_int(n));}
  float big_endian_float(unsigned char *buf)      {return(*((float *)buf));}
  float little_endian_float(unsigned char *buf)   {return(swap_float(buf));}
  double big_endian_double(unsigned char *buf)    {return(*((double *)buf));}
  double little_endian_double(unsigned char *buf) {return(swap_double(buf));}
  unsigned short big_endian_unsigned_short(unsigned short n) {return(n);}
  unsigned short little_endian_unsigned_short(unsigned short n) {return(swap_unsigned_short(n));}

#endif


/* ---------------- arrays ---------------- */

int setarray(int *arr, int i, int val) {arr[i]=val; return(val);}
int getarray(int *arr, int i) {return(arr[i]);}
int incarray(int *arr, int i, int val) {arr[i]+=val; return(arr[i]);}

int *makearray(int len) 
{
  int *ip; 
  ip = (int *)calloc(len,sizeof(int)); 
  return(ip);
}

void freearray(int *ip) 
{
  if ((ip == NULL) || (((int)ip) < 0)) 
    clm_printf("attempt to free invalid pointer!");
  else free(ip);
}

void cleararray1(int beg, int end, int *arr)
{
  int i;
  for (i=beg;i<=end;i++) arr[i] = 0; /* bzero here is slightly faster on the old NeXTs, but not on the SGI */
}

static float maxamparray(int size, float *arr)
{
  float minA,maxA,val;
  int i;
  minA = 0.0;
  maxA = 0.0;
  for (i=0;i<size;i++)
    {
      val = arr[i];
      if ((val > maxA) || (val < minA))
	{
	  maxA = val;
	  if (maxA < 0.0) maxA = -maxA;
	  minA = -maxA;
	}
    }
  return(maxA);
}

void normarray(int size, float *arr)
{
  float maxa;
  int i;
  maxa=maxamparray(size,arr);
  if ((maxa != 0.0) && (maxa != 1.0))
    {
      maxa=1.0/maxa;
      for (i=0;i<size;i++) arr[i] *= maxa;
    }
}

void arrblt(int beg, int end, int newbeg, int *arr)
{
  int i,j;
  for (i=beg,j=newbeg;i>=end;i--,j--) arr[j]=arr[i];
}

int absmaxarr(int beg, int end, int *arr)
{
  int minA,maxA,val,i;
  minA = 0;
  maxA = 0;
  for (i=beg;i<=end;i++)
    {
      val = arr[i];
      if ((val > maxA) || (val < minA))
	{
	  maxA = val;
	  if (maxA < 0) maxA = -maxA;
	  minA = -maxA;
	}
    }
  return(maxA);
}


/* ---------------- file descriptors ----------------
 *
 * I'm using unbuffered IO here because it is faster on the machines I normally use,
 * and I'm normally doing very large reads/writes (that is, the stuff is self-buffered).
 *
 *   machine                     read/write:              fread/fwrite:             arithmetic: 
 *                               256   512   8192  65536  same sizes                tbl   bigfft sffts
 *
 * NeXT 68040 (32MB):            11575 10514 10256  9943  11951 11923 12358 12259   10478 108122 26622
 * NeXT Turbo (16MB):             8329  7760  6933  6833   9216  8742  9416  9238    7825 121591 19495
 * HP 90MHz Pentium NextStep:    11970 10069  9840  9920  11930 11209 11399 11540    1930  46389  4019
 * Mac 8500 120 MHz PPC MacOS:   21733 15416  5000  2916   9566  9550  9733  9850    <died in memory manager>
 * Mac clone 120 MHz PPC BeOS:    1398   856   688   857   1584  1579  1722  1756    1009  35759  1140
 * SGI R4600 132 MHz Indy (32MB): 2412  1619   959  1045   1172  1174  1111  1126    1224  30825  3490
 * SGI R5000 150 MHz Indy (32MB): 1067   846   684   737    847   817   734   791     885  25878  1591
 * SGI R5000 180 MHz O2 (64MB):   1359   788   431   446   1919  1944  1891  1885     828  24658  1390
 * HP 200 MHz Pentium Linux:       576   492   456   482    615   613   599   592     695  14851   882
 * Asus 266 MHz Pentium II Linux:  475   426   404   406    466   455   467   465     490  13170   595
 * Dell XPSD300 Pentium II Linux:  393   350   325   332    376   369   397   372     414   8793   576
 *
 * the first 8 numbers are comparing read/write fread/fwrite at various buffer sizes -- CLM uses 65536.
 * the last 3 numbers are comparing table lookup, a huge fft, and a bunch of small ffts.
 * In normal CLM usage, small instruments and mixes are IO bound, so these differences can matter.
 * The reason to use 65536 rather than 8192 is that it allows us to forgo IO completely in
 * many cases -- the output buffer can collect many notes before flushing, etc.
 */

#if defined(SGI) || defined(LINUX) || defined(UW2) || defined(SCO5)
  #define FILE_DESCRIPTORS 256
  #define BASE_FILE_DESCRIPTORS 200
#else
  #define FILE_DESCRIPTORS 128
  #define BASE_FILE_DESCRIPTORS 64
#endif

static int clm_descriptors_ok = 0;
static int *clm_datum_format,*clm_datum_size,*clm_datum_location,*clm_files,*clm_datum_type;
static int clm_files_ready = 0;

static int rt_ap_out,rt_ap_rec;   /* address of RT audio ports, if any */

void create_descriptors (void)
{
  if (!clm_descriptors_ok)
    {
      clm_descriptors_ok = 1;
      clm_datum_format = (int *)calloc(FILE_DESCRIPTORS,sizeof(int));
      clm_datum_size = (int *)calloc(FILE_DESCRIPTORS,sizeof(int));
      clm_datum_type = (int *)calloc(FILE_DESCRIPTORS,sizeof(int));
      clm_datum_location = (int *)calloc(FILE_DESCRIPTORS,sizeof(int));
      clm_files = (int *)calloc(BASE_FILE_DESCRIPTORS,sizeof(int));
      if ((clm_datum_format == NULL) || (clm_datum_size == NULL) || (clm_datum_location == NULL) || (clm_files == NULL))
	clm_printf("file descriptor buffer allocation trouble");
    }
}

void set_rt_audio_p (int rt)
{
  rt_ap_out = rt;
}

void set_rt_record_p (int rt)
{
  rt_ap_rec = rt;
}

static int convert_fd(int n)
{
  if (n<BASE_FILE_DESCRIPTORS)
    return(n);
  else
    {
      int i;
      for (i=0;i<BASE_FILE_DESCRIPTORS;i++)
	{
	  if (clm_files[i] == n) return(i+BASE_FILE_DESCRIPTORS);
	}
      return(-1);
    }
}

int open_clm_file (int tfd)
{
  int fd;
  if (tfd < BASE_FILE_DESCRIPTORS) return(tfd);
  if (clm_files_ready == 0)
    {
      for (fd=0;fd<BASE_FILE_DESCRIPTORS;fd++) clm_files[fd]=-1;
      clm_files_ready = 1;
    }
  for (fd=0;fd<BASE_FILE_DESCRIPTORS;fd++)
    {
      if (clm_files[fd] == -1)
	{
	  clm_files[fd] = tfd;
	  return(fd+BASE_FILE_DESCRIPTORS);
	}
    }
  return(-1);
}

void open_clm_file_descriptors (int tfd, int df, int ds, int dl)
{ /* transfers header info from functions in header.c back to us for reads here and in merge.c */
  int fd;
  if (!clm_descriptors_ok) return;
  fd = open_clm_file(tfd);
  clm_datum_format[fd] = df;
  clm_datum_size[fd] = ds;
  clm_datum_location[fd] = dl;
  clm_datum_type[fd] = 0;
}

void set_clm_datum_type (int tfd, int type)
{
  int fd;
  if (!clm_descriptors_ok) return;
  fd = convert_fd(tfd);
  clm_datum_type[fd] = type;
}

void close_clm_file_descriptors(int tfd)
{
  int fd;
  if (!clm_descriptors_ok) return; /* not necessarily an error -- c-close before with-sound etc */
  fd = convert_fd(tfd);
  if (fd >= BASE_FILE_DESCRIPTORS)
    clm_files[fd-BASE_FILE_DESCRIPTORS] = -1;
  clm_datum_format[fd]=snd_no_snd;
  clm_datum_type[fd] = 0;
}


/* ---------------- open, creat, close ---------------- */

int clm_open_read(char *arg) 
{
#ifndef MACOS
  int fd;
  fd = open (arg, O_RDONLY, 0);
  #ifndef ACL4
    if (fd == -1) perror(arg);
  #endif
  return(fd);
#else
  return(open (arg, O_RDONLY));
#endif
}

int clm_open_write(char *arg)
{
  int fd;
#ifndef MACOS
  if ((fd=open(arg,O_RDWR,0))==-1)
    {
      fd=creat(arg,0666);  /* equivalent to the new open(arg,O_RDWR | O_CREAT | O_TRUNC, 0666) */
      #ifndef ACL4
        if (fd == -1) perror(arg);
      #endif
    }
  else
    lseek(fd,0L,2);
#else
  if ((fd=open(arg,O_RDWR))==-1)
    fd=creat(arg, 0);
  else
    lseek(fd,0L,2);
#endif
  return(fd);
}

int clm_create(char *arg)
{
#ifndef MACOS
  int fd;
  fd = creat(arg,0666);
  #ifndef ACL4
    if (fd == -1) perror(arg);
  #endif
  return(fd);
#else
  return(creat(arg,0));
#endif
}

int clm_reopen_write(char *arg)
{
#ifndef MACOS
  int fd;
  fd = open(arg,O_RDWR,0);
  #ifndef ACL4
    if (fd == -1) perror(arg);
  #endif
  return(fd);
#else
  return(open(arg,O_RDWR));
#endif
}

void clm_close(int fd)
{
  close_clm_file_descriptors(fd);
  close(fd);
}



/* ---------------- seek ---------------- */

long clm_seek(int tfd, long offset, int origin)
{
  int fd,siz; /* siz = datum size in bytes */
  long loc,true_loc,header_end;
  char *str;
  if (!clm_descriptors_ok) {clm_printf("clm-seek: clm file descriptors not initialized!"); return(-1);}
  if ((tfd == DAC_CHANNEL) || (tfd == DAC_REVERB)) return(0);
  fd = convert_fd(tfd);
  if (clm_datum_format[fd] == snd_no_snd) 
    {
      str=(char *)calloc(64,sizeof(char));
      sprintf(str,"seek called on invalid stream: %d (%d, %d, %d)",fd,tfd,(int)offset,origin);
      clm_printf(str);
      free(str);
    }
  siz = clm_datum_size[fd];
  if ((siz == 2) || (origin != 0))
    return(lseek(tfd,offset,origin));
  else
    {
      header_end = clm_datum_location[fd];
      loc = offset - header_end;
      switch (siz)
	{
	case 1: 
	  true_loc = lseek(tfd,header_end+(loc>>1),origin);
	  /* now pretend we're still in 16-bit land and return where we "actually" are in that region */
	  /* that is, loc (in bytes) = how many (2-byte) samples into the file we want to go, return what we got */
	  return(header_end + ((true_loc - header_end)<<1));
	  break;
	case 3:
	  true_loc = lseek(tfd,header_end+loc+(loc>>1),origin);
	  return(true_loc + ((true_loc - header_end)>>1));
	  break;
	case 4:
	  true_loc = lseek(tfd,header_end+(loc<<1),origin);
	  return(header_end + ((true_loc - header_end)>>1));
	  break;
	case 8:
	  true_loc = lseek(tfd,header_end+(loc<<2),origin);
	  return(header_end + ((true_loc - header_end)>>2));
	  break;
	}
    }
  return(-1);
}

long excl_clm_seek(int tfd, int *offset, int origin)
{
  return(clm_seek(tfd,offset[0]+(offset[1]<<16),origin));
}


/* ---------------- mulaw/alaw conversions ----------------
 *
 *      x : input signal with max value 32767
 *     mu : compression parameter (mu=255 used for telephony)
 *     y = (32767/log(1+mu))*log(1+mu*abs(x)/32767)*sign(x); -- this isn't right -- typo?
 */

/* from sox g711.c */

#define	SIGN_BIT	(0x80)		/* Sign bit for a A-law byte. */
#define	QUANT_MASK	(0xf)		/* Quantization field mask. */
#define	NSEGS		(8)		/* Number of A-law segments. */
#define	SEG_SHIFT	(4)		/* Left shift for segment number. */
#define	SEG_MASK	(0x70)		/* Segment field mask. */

static short seg_end[8] = {0xFF, 0x1FF, 0x3FF, 0x7FF,  0xFFF, 0x1FFF, 0x3FFF, 0x7FFF};

static int search(int val, short *table, int size)
{
  int i;
  for (i = 0; i < size; i++) {if (val <= *table++) return (i);}
  return (size);
}

static unsigned char to_alaw(int pcm_val)
{
  int mask,seg;
  unsigned char	aval;
  if (pcm_val >= 0) {mask = 0xD5;} else {mask = 0x55; pcm_val = -pcm_val - 8;}
  seg = search(pcm_val, seg_end, 8);
  if (seg >= 8)	return (0x7F ^ mask);
  else 
    {
      aval = seg << SEG_SHIFT;
      if (seg < 2) aval |= (pcm_val >> 4) & QUANT_MASK; else aval |= (pcm_val >> (seg + 3)) & QUANT_MASK;
      return (aval ^ mask);
    }
}

static const int alaw[256] = {
 -5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736, -7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784, 
 -2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368, -3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392, 
 -22016, -20992, -24064, -23040, -17920, -16896, -19968, -18944, -30208, -29184, -32256, -31232, -26112, -25088, -28160, -27136, 
 -11008, -10496, -12032, -11520, -8960, -8448, -9984, -9472, -15104, -14592, -16128, -15616, -13056, -12544, -14080, -13568, 
 -344, -328, -376, -360, -280, -264, -312, -296, -472, -456, -504, -488, -408, -392, -440, -424, 
 -88, -72, -120, -104, -24, -8, -56, -40, -216, -200, -248, -232, -152, -136, -184, -168, 
 -1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184, -1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696, 
 -688, -656, -752, -720, -560, -528, -624, -592, -944, -912, -1008, -976, -816, -784, -880, -848, 
 5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736, 7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784, 
 2752, 2624, 3008, 2880, 2240, 2112, 2496, 2368, 3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392, 
 22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944, 30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136, 
 11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472, 15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568, 
 344, 328, 376, 360, 280, 264, 312, 296, 472, 456, 504, 488, 408, 392, 440, 424, 
 88, 72, 120, 104, 24, 8, 56, 40, 216, 200, 248, 232, 152, 136, 184, 168, 
 1376, 1312, 1504, 1440, 1120, 1056, 1248, 1184, 1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696, 
 688, 656, 752, 720, 560, 528, 624, 592, 944, 912, 1008, 976, 816, 784, 880, 848
};

#if 0
static int from_alaw(unsigned char a_val)
{
  int t,seg;
  a_val ^= 0x55;
  t = (a_val & QUANT_MASK) << 4;
  seg = ((unsigned)a_val & SEG_MASK) >> SEG_SHIFT;
  switch (seg) 
    {
    case 0: t += 8; break;
    case 1: t += 0x108; break;
  default:  t += 0x108; t <<= seg - 1;
    }
  return((a_val & SIGN_BIT) ? t : -t);
}
#endif 

#define	BIAS		(0x84)		/* Bias for linear code. */

static unsigned char to_mulaw(int pcm_val)
{
  int mask;
  int seg;
  unsigned char	uval;
  if (pcm_val < 0) {pcm_val = BIAS - pcm_val; mask = 0x7F;} else {pcm_val += BIAS; mask = 0xFF;}
  seg = search(pcm_val, seg_end, 8);
  if (seg >= 8) return (0x7F ^ mask);
  else 
    {
      uval = (seg << 4) | ((pcm_val >> (seg + 3)) & 0xF);
      return (uval ^ mask);
    }
}

/* generated by SNDiMulaw on a NeXT -- see /usr/include/sound/mulaw.h */
static const int mulaw[256] = {
  -32124, -31100, -30076, -29052, -28028, -27004, -25980, -24956, -23932, -22908, -21884, -20860, 
  -19836, -18812, -17788, -16764, -15996, -15484, -14972, -14460, -13948, -13436, -12924, -12412, 
  -11900, -11388, -10876, -10364, -9852, -9340, -8828, -8316, -7932, -7676, -7420, -7164, -6908, 
  -6652, -6396, -6140, -5884, -5628, -5372, -5116, -4860, -4604, -4348, -4092, -3900, -3772, -3644, 
  -3516, -3388, -3260, -3132, -3004, -2876, -2748, -2620, -2492, -2364, -2236, -2108, -1980, -1884, 
  -1820, -1756, -1692, -1628, -1564, -1500, -1436, -1372, -1308, -1244, -1180, -1116, -1052, -988, 
  -924, -876, -844, -812, -780, -748, -716, -684, -652, -620, -588, -556, -524, -492, -460, -428, 
  -396, -372, -356, -340, -324, -308, -292, -276, -260, -244, -228, -212, -196, -180, -164, -148, 
  -132, -120, -112, -104, -96, -88, -80, -72, -64, -56, -48, -40, -32, -24, -16, -8, 0, 32124, 31100, 
  30076, 29052, 28028, 27004, 25980, 24956, 23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764, 
  15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412, 11900, 11388, 10876, 10364, 9852, 9340, 
  8828, 8316, 7932, 7676, 7420, 7164, 6908, 6652, 6396, 6140, 5884, 5628, 5372, 5116, 4860, 4604, 
  4348, 4092, 3900, 3772, 3644, 3516, 3388, 3260, 3132, 3004, 2876, 2748, 2620, 2492, 2364, 2236, 
  2108, 1980, 1884, 1820, 1756, 1692, 1628, 1564, 1500, 1436, 1372, 1308, 1244, 1180, 1116, 1052, 
  988, 924, 876, 844, 812, 780, 748, 716, 684, 652, 620, 588, 556, 524, 492, 460, 428, 396, 372, 
  356, 340, 324, 308, 292, 276, 260, 244, 228, 212, 196, 180, 164, 148, 132, 120, 112, 104, 96, 
  88, 80, 72, 64, 56, 48, 40, 32, 24, 16, 8, 0};

#if 0
/* in case it's ever needed, here's the mulaw to linear converter from g711.c -- identical to table above */
static int from_mulaw(unsigned char u_val)
{
  int t;
  u_val = ~u_val;
  t = ((u_val & QUANT_MASK) << 3) + BIAS;
  t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT;
  return ((u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS));
}
#endif

/* ---------------- read/write buffer allocation ---------------- */

#ifdef MACOS
  #define BUFLIM 8192
#else
  #define BUFLIM 64*1024
#endif

static char *charbuf;
static int char_ok = -1;

static void check_charbuf (void)
{
  if (char_ok == -1)
    {
      charbuf = (char *)calloc(BUFLIM,sizeof(char)); 
      if (charbuf == NULL) clm_printf("IO buffer allocation trouble");
    }
  char_ok = 0;
}

static int checked_write(int fd, char *buf, int chars)
{
#ifndef MACOS
  long lisp_call(int index);
#endif
  int bytes,cfd;
  if (fd == DAC_CHANNEL)
    {
      write_dac(buf,chars,rt_ap_out);
    }
  else
    {
      bytes=write(fd,buf,chars);
      if (bytes != chars) 
	{
	  char *str;
	  if (buf == NULL) clm_printf("IO buffer in checked_write is unallocated (null)!");
	  perror("clm");
	  if (!clm_descriptors_ok) clm_printf("clm file descriptors not initialized!");
	  cfd = convert_fd(fd);
	  if (clm_datum_format[cfd] == snd_no_snd) clm_printf("checked_write called on closed file");
	  str = (char *)calloc(256,sizeof(char));
	  sprintf(str,"IO write error: %d of %d bytes written for %d from %d (%d %d %d %d)\n",
		 bytes,chars,fd,cfd,(int)buf,clm_datum_size[cfd],clm_datum_format[cfd],clm_datum_location[cfd]);
	  clm_printf(str);
	  free(str);
#ifndef MACOS
	  lisp_call(CLM_FATAL_WRITE_ERROR);
#endif
	  return(-1);
	}
    }
  return(0);
}



/* ---------------- read ---------------- */

int clm_read_any(int tfd, int beg, int chans, int nints, int **bufs, int *cm)
{
  int fd;
  int bytes,j,lim,siz,total,leftover,total_read,k,loc,oldloc,siz_chans,buflim;
  short *jshort;
  unsigned char *jchar;
  signed char *jbyte;
  long *jword;
  unsigned short *js;
  unsigned int *ji;
  int *buffer;
  if (!clm_descriptors_ok) {clm_printf("clm-read: clm file descriptors not initialized!"); return(-1);}
  if (nints <= 0) return(0);
  check_charbuf();
  fd = convert_fd(tfd);
  if (clm_datum_format[fd] == snd_no_snd) clm_printf("read_any called on closed file");
  siz = clm_datum_size[fd];
  siz_chans = siz*chans;
  leftover = (nints*siz_chans);
  k = (BUFLIM) % siz_chans;
  if (k != 0) /* for example, 3 channel output of 1-byte (mulaw) samples will need a mod 3 buffer */
    buflim = (BUFLIM) - k;
  else buflim = BUFLIM;
  total_read = 0;
  loc = beg;
  while (leftover > 0)
    {
      bytes = leftover;
      if (bytes > buflim) {leftover = (bytes-buflim); bytes = buflim;} else leftover = 0;
      total = read(tfd,charbuf,bytes); 
      if (total <= 0) return(total_read);
      lim = (int) (total / siz_chans);  /* this divide must be exact (hence the buflim calc above) */
      total_read += lim;
      oldloc = loc;

      for (k=0;k<chans;k++)
	{
	  if (((cm == NULL) || (cm[k])) && (buffer = (int *)(bufs[k])))
	    {
	      loc = oldloc;
	      switch (clm_datum_format[fd])
		{
		case snd_16_linear:   
		  jshort = (short *)charbuf;
		  jshort+=k;
		  for (j=0;j<lim;j++,loc++,jshort+=chans)
		    {
		      buffer[loc] = (int) m_big_endian_short(*jshort);
		    }
		  break;
		case snd_16_linear_little_endian:   
		  jshort = (short *)charbuf;
		  jshort+=k;
		  for (j=0;j<lim;j++,loc++,jshort+=chans)
		    {
		      buffer[loc] = (int) m_little_endian_short(*jshort);
		    }
		  break;
		case snd_32_linear:   
		  jword=(long *)charbuf;
		  jword+=k;
		  for (j=0;j<lim;j++,loc++,jword+=chans)
		    {
		      buffer[loc] = m_big_endian_int(*jword);
		    }
		  break;
		case snd_32_linear_little_endian:   
		  jword=(long *)charbuf;
		  jword+=k;
		  for (j=0;j<lim;j++,loc++,jword+=chans)
		    {
		      buffer[loc] = m_little_endian_int(*jword);
		    }
		  break;
		case snd_8_mulaw:
		  jchar=(unsigned char *)charbuf;
		  jchar+=k;
		  for (j=0;j<lim;j++,loc++,jchar+=chans)
		    {
		      buffer[loc] = mulaw[*jchar];
		    }
		  break;
		case snd_8_alaw:      
		  jchar=(unsigned char *)charbuf;
		  jchar+=k;
		  for (j=0;j<lim;j++,loc++,jchar+=chans)
		    {
		      buffer[loc] = alaw[*jchar];
		    }
		  break;
		case snd_8_linear:
		  jbyte=(signed char *)charbuf;
		  jbyte+=k;
		  for (j=0;j<lim;j++,loc++,jbyte+=chans)
		    {
		      buffer[loc] = (int) ((*jbyte) << 8);
		    }
		  break;
		case snd_8_unsigned:  
		  jchar=(unsigned char *)charbuf;
		  jchar+=k;
		  for (j=0;j<lim;j++,loc++,jchar+=chans)
		    {
		      buffer[loc] = (int) ((((int)(*jchar))-128) << 8);
		    }
		  break;
		case snd_24_linear:
		  jchar=(unsigned char *)charbuf;
		  jchar+=(k*3);
		  for (j=0;j<lim;j++,loc++,jchar+=(chans*3))
		    {
		      buffer[loc] = (int)(((jchar[0]<<24)+(jchar[1]<<16))>>16);
		    }
		  break;
		case snd_24_linear_little_endian:   
		  jchar=(unsigned char *)charbuf;
		  jchar+=(k*3);
		  for (j=0;j<lim;j++,loc++,jchar+=(chans*3))
		    {
		      buffer[loc] = (int)(((jchar[2]<<24)+(jchar[1]<<16))>>16);
		    }
		  break;
		case snd_32_float:
		  jchar=(unsigned char *)charbuf;
		  jchar+=(k*4);
		  for (j=0;j<lim;j++,loc++,jchar+=(chans*4))
		    {
		      buffer[loc] = (int) (clm_sndfix*(m_big_endian_float(jchar)));
		    }
		  break;
		case snd_64_double:   
		  jchar=(unsigned char *)charbuf;
		  jchar+=(k*8);
		  for (j=0;j<lim;j++,loc++,jchar+=(chans*8))
		    {
		      buffer[loc] = (int) (clm_sndfix*(m_big_endian_double(jchar)));
		    }
		  break;
		case snd_32_float_little_endian:    
		  jchar=(unsigned char *)charbuf;
		  jchar+=(k*4);
		  for (j=0;j<lim;j++,loc++,jchar+=(chans*4))
		    {
		      buffer[loc] = (int) (clm_sndfix*(m_little_endian_float(jchar)));
		    }
		  break;
		case snd_64_double_little_endian:   
		  jchar=(unsigned char *)charbuf;
		  jchar+=(k*8);
		  for (j=0;j<lim;j++,loc++,jchar+=(chans*8))
		    {
		      buffer[loc] = (int) (clm_sndfix*(m_little_endian_double(jchar)));
		    }
		  break;
		case snd_16_unsigned:   
		  js=(unsigned short *)charbuf;
		  js+=k;
		  for (j=0;j<lim;j++,loc++,js+=chans)
		    {
		      buffer[loc] = ((int)(m_big_endian_unsigned_short(*js)) - 32768);
		    }
		  break;
		case snd_32_vax_float:   
		  ji=(unsigned int *)charbuf;
		  ji+=k;
		  for (j=0;j<lim;j++,loc++,ji+=chans)
		    {
		      buffer[loc] = (int)from_vax_float(*ji);
		    }
		  break;
		case snd_16_unsigned_little_endian:   
		  js=(unsigned short *)charbuf;
		  js+=k;
		  for (j=0;j<lim;j++,loc++,js+=chans)
		    {
		      buffer[loc] = ((int)(m_little_endian_unsigned_short(*js)) - 32768);
		    }
		  break;
		}
	    }
	}
    }
  return(total_read);
}

void clm_read(int fd, int beg, int end, int chans, int **bufs)
{
  int num,rtn,i,k;
  int *buffer;
  num=(end-beg+1);
  rtn=clm_read_any(fd,beg,chans,num,bufs,NULL);
  if (rtn<num) 
    {
      for (k=0;k<chans;k++)
	{
	  buffer=(int *)(bufs[k]);
	  for (i=rtn+beg;i<=end;i++)
	    {
	      buffer[i]=0;
	    }
	}
    }
}

void clm_read_chans(int fd, int beg, int end, int chans, int **bufs, int *cm)
{
  /* an optimization of clm_read -- just reads the desired channels */
  int num,rtn,i,k;
  int *buffer;
  num=(end-beg+1);
  rtn=clm_read_any(fd,beg,chans,num,bufs,cm);
  if (rtn<num) 
    {
      for (k=0;k<chans;k++)
	{
	  if ((cm == NULL) || (cm[k]))
	    {
	      buffer=(int *)(bufs[k]);
	      for (i=rtn+beg;i<=end;i++)
		{
		  buffer[i]=0;
		}
	    }
	}
    }
}


/* ---------------- write ---------------- */

#define min(x,y)  ((x) < (y) ? (x) : (y))
inline static int ceiling (float x) {int y; y=x; if ((x-y)==0.0) return(y); return(y+1);}

void clm_write_zeros(int tfd, int num)
{
  int i,k,lim,curnum,fd;
  if (tfd == DAC_REVERB) return;
  if (!clm_descriptors_ok) {clm_printf("clm-write-zeros: clm file descriptors not initialized!"); return;}
  check_charbuf();
  fd = convert_fd(tfd);
  if (clm_datum_format[fd] == snd_no_snd) {clm_printf("write_zeros called on closed file"); return;}
  lim = num*(clm_datum_size[fd]);
  k=ceiling(lim/(BUFLIM));
  curnum=min(lim,BUFLIM);
  for (i=0;i<curnum;i++) charbuf[i]=0;
  for (i=0;i<=k;i++)
    {
      checked_write(tfd,charbuf,curnum);
      lim=lim-(BUFLIM);
      curnum=min(lim,BUFLIM);
    }
}

void clm_write(int tfd, int beg, int end, int chans, int **bufs)
{
  int fd;
  int bytes,j,k,lim,siz,leftover,loc,bk,oldloc,buflim,siz_chans,cliploc;
  short *jshort;
  unsigned char *jchar;
  signed char *jbyte;
  long *jword;
  int *buffer;
  if (tfd == DAC_REVERB) return;
  if (!clm_descriptors_ok) {clm_printf("clm-write: clm file descriptors not initialized!"); return;}
  check_charbuf();
  fd = convert_fd(tfd);
  if (clm_datum_format[fd] == snd_no_snd) clm_printf("write called on closed file");
  siz = clm_datum_size[fd];
  lim=(end-beg+1);
  siz_chans = siz*chans;
  leftover = lim*siz_chans;
  k = (BUFLIM) % siz_chans;
  if (k != 0) 
    buflim = (BUFLIM) - k;
  else buflim = BUFLIM;
  loc = beg;
  while (leftover > 0)
    {
      bytes = leftover;
      if (bytes > buflim) {leftover = (bytes-buflim); bytes = buflim;} else leftover = 0;
      lim = (int)(bytes/siz_chans); /* see note above */
      oldloc = loc;

      for (k=0;k<chans;k++)
	{
	  loc = oldloc;
	  buffer = (int *)(bufs[k]);
	  if (clm_datum_type[fd] == 1)
	    {
	      cliploc = oldloc;
	      for (j=0;j<lim;j++,cliploc++)
		{
		  if (buffer[cliploc] > 32767)
		    buffer[cliploc] = 32767;
		  else
		    if (buffer[cliploc] < -32768)
		      buffer[cliploc] = -32768;
		}
	    }
	  switch (clm_datum_format[fd])
	    {
	    case snd_16_linear: 
	      jshort = (short *)charbuf;
	      jshort+=k;
	      for (j=0;j<lim;j++,loc++,jshort+=chans)
		{
		  (*jshort) = (short) m_big_endian_short(buffer[loc]);
		}
	      break;
	    case snd_16_linear_little_endian:   
	      jshort = (short *)charbuf;
	      jshort+=k;
	      for (j=0;j<lim;j++,loc++,jshort+=chans)
		{
		  (*jshort) = (short) m_little_endian_short(buffer[loc]);
		}
	      break;
	    case snd_32_linear:   
	      jword=(long *)charbuf;
	      jword+=k;
	      for (j=0;j<lim;j++,loc++,jword+=chans)
		{
		  (*jword) = m_big_endian_int(buffer[loc]);
		}
	      break;
	    case snd_32_linear_little_endian:   
	      jword=(long *)charbuf;
	      jword+=k;
	      for (j=0;j<lim;j++,loc++,jword+=chans)
		{
		  (*jword) = m_little_endian_int(buffer[loc]);
		}
	      break;
	    case snd_8_mulaw:     
	      jchar=(unsigned char *)charbuf;
	      jchar+=k;
	      for (j=0;j<lim;j++,loc++,jchar+=chans)
		{
		  (*jchar) = to_mulaw(buffer[loc]);
		}
	      break;
	    case snd_8_alaw:      
	      jchar=(unsigned char *)charbuf;
	      jchar+=k;
	      for (j=0;j<lim;j++,loc++,jchar+=chans)
		{
		  (*jchar) = to_alaw(buffer[loc]);
		}
	      break;
	    case snd_8_linear:    
	      jbyte=(signed char *)charbuf;
	      jbyte+=k;
	      for (j=0;j<lim;j++,loc++,jbyte+=chans)
		{
		  (*jbyte) = ((buffer[loc])>>8);
		}
	      break;
	    case snd_8_unsigned:  
	      jchar=(unsigned char *)charbuf;
	      jchar+=k;
	      for (j=0;j<lim;j++,loc++,jchar+=chans)
		{
		  (*jchar) = ((buffer[loc])>>8)+128;
		}
	      break;
	    case snd_24_linear:   
	      bk=(k*3);
	      for (j=0;j<lim;j++,loc++,bk+=(chans*3)) 
		{
		  charbuf[bk]=((buffer[loc])>>8); 
		  charbuf[bk+1]=((buffer[loc])&0xFF); 
		  charbuf[bk+2]=0;	
		}
	      break;
	    case snd_24_linear_little_endian:   
	      bk=(k*3);
	      for (j=0;j<lim;j++,loc++,bk+=(chans*3))
		{
		  charbuf[bk+2]=((buffer[loc])>>8); 
		  charbuf[bk+1]=((buffer[loc])&0xFF); 
		  charbuf[bk]=0;    
		}
	      break;
	    case snd_32_float:    
	      jchar=(unsigned char *)charbuf;
	      jchar+=(k*4);
	      for (j=0;j<lim;j++,loc++,jchar+=(chans*4))
		{
		  m_big_endian_float_set(jchar,(clm_sndflt * (buffer[loc])));
		}
	      break;
	    case snd_32_float_little_endian:    
	      jchar=(unsigned char *)charbuf;
	      jchar+=(k*4);
	      for (j=0;j<lim;j++,loc++,jchar+=(chans*4))
		{
		  m_little_endian_float_set(jchar,(clm_sndflt * (buffer[loc])));
		}
	      break;
	    case snd_64_double:
	      jchar=(unsigned char *)charbuf;
	      jchar+=(k*8);
	      for (j=0;j<lim;j++,loc++,jchar+=(chans*8))
		{
		  m_big_endian_double_set(jchar,(clm_sndflt * (buffer[loc])));
		}
	      break;
	    case snd_64_double_little_endian:   
	      jchar=(unsigned char *)charbuf;
	      jchar+=(k*8);
	      for (j=0;j<lim;j++,loc++,jchar+=(chans*8))
		{
		  m_little_endian_double_set(jchar,(clm_sndflt * (buffer[loc])));
		}
	      break;
	    }
	}
      checked_write(tfd,charbuf,bytes);
    }
}



/* -------------------------------- floating point data files -------------------------------- */
/* Lisp does not provide float files for some reason (I don't want to know!), but several
 * programs that are very useful to CLM (such as Xavier Serra's SMS) write float data files,
 * so the following are provided to simplify and speed up access to those files.
 * The swapped versions added 11-Jan-97 (incorporating swapped.cl) since byte order
 * differences are ubiquitous these days (i.e. machines look the same to users,
 * but use different byte orders).
 */

int clm_read_floats(int fd,int n,float *arr)
{
  char *buf;
  int bytes;
  buf = (char *)arr;
  bytes=read(fd,buf,n*4);
  return(bytes>>2);
}
int clm_read_ints(int fd,int n,int *arr)
{
  char *buf;
  int bytes;
  buf = (char *)arr;
  bytes=read(fd,buf,n*4);
  return(bytes>>2);
}

int clm_write_floats(int fd,int n,float *arr)
{
  char *buf;
  int bytes;
  buf = (char *)arr;
  bytes=write(fd,buf,n*4);
  return(bytes>>2);
}

int clm_read_swapped_floats(int fd,int n,float *arr)
{
  char *buf;
  int bytes,i;
  char tmp;
  buf = (char *)arr;
  bytes=read(fd,buf,n*4);
  for (i=0;i<bytes;i+=4)
    {tmp=buf[i]; buf[i]=buf[i+3]; buf[i+3]=tmp; tmp=buf[i+1]; buf[i+1]=buf[i+2]; buf[i+2]=tmp;}
  return(bytes>>2);
}

int clm_read_swapped_ints(int fd,int n,int *arr)
{
  char *buf;
  int bytes,i;
  char tmp;
  buf = (char *)arr;
  bytes=read(fd,buf,n*4);
  for (i=0;i<bytes;i+=4)
    {tmp=buf[i]; buf[i]=buf[i+3]; buf[i+3]=tmp; tmp=buf[i+1]; buf[i+1]=buf[i+2]; buf[i+2]=tmp;}
  return(bytes>>2);
}

void clm_seek_floats(int fd,int n)
{
  lseek(fd,n*4,0);
}

void clm_seek_bytes(int fd,int n)
{
  lseek(fd,n,0);
}


#ifndef MACOS

sigfnc *clm_signal(int signo, sigfnc *fnc) {return(signal(signo,fnc));}

#endif


#if 0
/* -------------------------------- an example of calling these procedures from C -------------------------------- */
/* example of opening and reading a sound file using headers.c and io.c */
/* cc -DSGI io.ex.c -o test io.o headers.o -lm */

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

#include "sound_types.h"
#include "cmus.h"
#include "cmus_prototypes.h"

/* make the loader happy (we're using a subset of the CLM library here, so some things are undefined) */
long lisp_call(int index) {fprintf(stderr,"YOW: %d!!",index);}
void write_dac (char *buf, int chars, int cadr) {}

#define BUFFER_SIZE 8192

main (int argc, char **argv)
{
  /* test oboe.snd */
  int fd,chans,i,samples;
  int **bufs;
  create_header_buffer();
  create_descriptors ();
  /* now open and read some arbitrary sound file */
  fd = clm_open_read(argv[1]);
  c_read_header_with_fd(fd);
  chans = c_snd_header_chans();
  samples = c_snd_header_data_size(); /* total samples, not per channel */
  open_clm_file_descriptors(fd,c_snd_header_format(),c_snd_header_datum_size(),c_snd_header_data_location());
  bufs = (int **)calloc(chans,sizeof(int *));
  for (i=0;i<chans;i++) bufs[i] = (int *)calloc(BUFFER_SIZE,sizeof(int));
  clm_read(fd,0,BUFFER_SIZE-1,chans,bufs);
  fprintf(stderr,"%s has %d channels, %d samples, and %f is the first sample ",argv[1],chans,samples,(float)(bufs[0][0])/32768.0);
  clm_close(fd);
}
#endif

/* this is for the sound editor */
void snd_reformat(char *charbuf, int samps, int charbuf_format, float *buffer)
{
  /* translate whatever is in charbuf to 32-bit floats still interleaved */
  int j;
  short *jshort;
  unsigned char *jchar;
  signed char *jbyte;
  long *jword;
  unsigned short *js;
  unsigned int *ji;
  switch (charbuf_format)
    {
    case snd_16_linear:   
      jshort = (short *)charbuf;
      for (j=0;j<samps;j++,jshort++) buffer[j] = (float)(clm_sndflt * (m_big_endian_short(*jshort))); 
      break;
    case snd_16_linear_little_endian:   
      jshort = (short *)charbuf;
      for (j=0;j<samps;j++,jshort++) buffer[j] = (float)(clm_sndflt * (m_little_endian_short(*jshort))); 
      break;
    case snd_32_linear:   
      jword=(long *)charbuf;
      for (j=0;j<samps;j++,jword++) buffer[j] = (float)(clm_sndflt * (m_big_endian_int(*jword)));
      break;
    case snd_32_linear_little_endian:   
      jword=(long *)charbuf;
      for (j=0;j<samps;j++,jword++) buffer[j] = (float)(clm_sndflt * (m_little_endian_int(*jword)));
      break;
    case snd_8_mulaw:
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar++) buffer[j] = (float)(clm_sndflt * (mulaw[*jchar]));
      break;
    case snd_8_alaw:      
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar++) buffer[j] = (float)(clm_sndflt * (alaw[*jchar]));
      break;
    case snd_8_linear:
      jbyte=(signed char *)charbuf;
      for (j=0;j<samps;j++,jbyte++) buffer[j] = (float)(clm_sndflt * ((int) ((*jbyte) << 8)));
      break;
    case snd_8_unsigned:  
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar++) buffer[j] = (float)(clm_sndflt * ((int) ((((int)(*jchar))-128) << 8)));
      break;
    case snd_24_linear:
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar+=3) buffer[j] = (float)(clm_sndflt * ((int)(((jchar[0]<<24)+(jchar[1]<<16))>>16)));
      break;
    case snd_24_linear_little_endian:   
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar+=3) buffer[j] = (float)(clm_sndflt * ((int)(((jchar[2]<<24)+(jchar[1]<<16))>>16)));
      break;
    case snd_32_float:
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar+=4) buffer[j] = m_big_endian_float(jchar);
      break;
    case snd_64_double:   
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar+=8) buffer[j] = (float)(m_big_endian_double(jchar));
      break;
    case snd_32_float_little_endian:    
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar+=4) buffer[j] = m_little_endian_float(jchar);
      break;
    case snd_64_double_little_endian:   
      jchar=(unsigned char *)charbuf;
      for (j=0;j<samps;j++,jchar+=8) buffer[j] = (float)(m_little_endian_double(jchar));
      break;
    case snd_16_unsigned:   
      js=(unsigned short *)charbuf;
      for (j=0;j<samps;j++,js++) buffer[j] = (float)(clm_sndflt * (((int)(m_big_endian_unsigned_short(*js)) - 32768)));
      break;
    case snd_32_vax_float:   
      ji=(unsigned int *)charbuf;
      for (j=0;j<samps;j++,ji++) buffer[j] = (float)(clm_sndflt * ((int)from_vax_float(*ji)));
      break;
    case snd_16_unsigned_little_endian:   
      js=(unsigned short *)charbuf;
      for (j=0;j<samps;j++,js++) buffer[j] = (float)(clm_sndflt * (((int)(m_little_endian_unsigned_short(*js)) - 32768)));
      break;
    }
}
