1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
/*
** Copyright (C) 1999-2002 Erik de Castro Lopo <erikd@zip.com.au>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <sndfile.h>
#define BUFFER_LEN 1024
typedef struct
{ char *infilename, *outfilename ;
SF_INFO infileinfo, outfileinfo ;
} OptionData ;
static void
copy_data (SNDFILE *outfile, SNDFILE *infile, int len)
{ static double data [BUFFER_LEN] ;
long readcount ;
readcount = len ;
while (readcount == len)
{ readcount = sf_read_double (infile, data, len) ;
sf_write_double (outfile, data, readcount) ;
} ;
return ;
} /* copy_data */
static int
guess_output_file_type (char *str, int format)
{ char buffer [16], *cptr ;
int k ;
format &= SF_FORMAT_SUBMASK ;
if (! (cptr = strrchr (str, '.')))
return 0 ;
strncpy (buffer, cptr + 1, 15) ;
buffer [15] = 0 ;
for (k = 0 ; buffer [k] ; k++)
buffer [k] = tolower ((buffer [k])) ;
if (! strncmp (buffer, "aif", 3))
return (SF_FORMAT_AIFF | format) ;
if (! strcmp (buffer, "wav"))
return (SF_FORMAT_WAV | format) ;
if (! strcmp (buffer, "au") || ! strcmp (buffer, "snd"))
return (SF_FORMAT_AU | format) ;
if (! strcmp (buffer, "svx"))
return (SF_FORMAT_SVX | format) ;
if (! strcmp (buffer, "paf"))
return (SF_FORMAT_PAF | format) ;
if (! strcmp (buffer, "fap"))
return (SF_ENDIAN_LITTLE | SF_FORMAT_PAF | format) ;
if (! strcmp (buffer, "nist"))
return (SF_FORMAT_NIST | format) ;
if (! strcmp (buffer, "ircam") || ! strcmp (buffer, "sf"))
return (SF_FORMAT_IRCAM | format) ;
if (! strcmp (buffer, "voc"))
return (SF_FORMAT_VOC | format) ;
if (! strcmp (buffer, "w64"))
return (SF_FORMAT_W64 | format) ;
if (! strcmp (buffer, "raw"))
return (SF_FORMAT_RAW | format) ;
if (! strcmp (buffer, "mat4"))
return (SF_FORMAT_MAT4 | format) ;
if (! strcmp (buffer, "mat5"))
return (SF_FORMAT_MAT5 | format) ;
return 0 ;
} /* guess_output_file_type */
static void
print_usage (char *progname)
{ printf ("\nUsage : %s [options] <input file> <output file>\n", progname) ;
printf ("\n where [options] may be one of the following:\n") ;
printf (" -pcm16 : force the output to 16 bit pcm\n") ;
printf (" -pcm24 : force the output to 24 bit pcm\n") ;
printf (" -pcm32 : force the output to 32 bit pcm\n") ;
printf (" -float32 : force the output to 32 bit floating point\n") ;
printf (" -ima-adpcm : force the output IMA ADPCM (WAV only)\n") ;
printf (" -ms-adpcm : force the output MS ADPCM (WAV only)\n") ;
printf (" -gsm610 : force the GSM6.10 (WAV only)\n") ;
printf (" -dwvw12 : force the output to 12 bit DWVW (AIFF only)\n") ;
printf (" -dwvw16 : force the output to 16 bit DWVW (AIFF only)\n") ;
printf (" -dwvw24 : force the output to 24 bit DWVW (AIFF only)\n") ;
printf ("\n") ;
} /* print_usage */
int
main (int argc, char *argv[])
{ char *progname, *infilename, *outfilename ;
SNDFILE *infile, *outfile ;
SF_INFO sfinfo ;
int k, outfilemajor, outfileminor = 0 ;
progname = strrchr (argv [0], '/') ;
progname = progname ? progname + 1 : argv [0] ;
if (argc < 3 || argc > 5)
{ print_usage (progname) ;
return 1 ;
} ;
infilename = argv [argc-2] ;
outfilename = argv [argc-1] ;
if (! strcmp (infilename, outfilename))
{ printf ("Error : Input and output filenames are the same.\n\n") ;
print_usage (progname) ;
return 1 ;
} ;
if (infilename [0] == '-')
{ printf ("Error : Input filename (%s) looks like an option.\n\n", infilename) ;
print_usage (progname) ;
return 1 ;
} ;
if (outfilename [0] == '-')
{ printf ("Error : Output filename (%s) looks like an option.\n\n", outfilename) ;
print_usage (progname) ;
return 1 ;
} ;
for (k = 1 ; k < argc - 2 ; k++)
{ if (! strcmp (argv [k], "-pcm16"))
{ outfileminor = SF_FORMAT_PCM_16 ;
continue ;
} ;
if (! strcmp (argv [k], "-pcm24"))
{ outfileminor = SF_FORMAT_PCM_24 ;
continue ;
} ;
if (! strcmp (argv [k], "-pcm32"))
{ outfileminor = SF_FORMAT_PCM_32 ;
continue ;
} ;
if (! strcmp (argv [k], "-float32"))
{ outfileminor = SF_FORMAT_FLOAT ;
continue ;
} ;
if (! strcmp (argv [k], "-ima-adpcm"))
{ outfileminor = SF_FORMAT_IMA_ADPCM ;
continue ;
} ;
if (! strcmp (argv [k], "-ms-adpcm"))
{ outfileminor = SF_FORMAT_MS_ADPCM ;
continue ;
} ;
if (! strcmp (argv [k], "-gsm610"))
{ outfileminor = SF_FORMAT_GSM610 ;
continue ;
} ;
if (! strcmp (argv [k], "-dwvw12"))
{ outfileminor = SF_FORMAT_DWVW_12 ;
continue ;
} ;
if (! strcmp (argv [k], "-dwvw16"))
{ outfileminor = SF_FORMAT_DWVW_16 ;
continue ;
} ;
if (! strcmp (argv [k], "-dwvw24"))
{ outfileminor = SF_FORMAT_DWVW_24 ;
continue ;
} ;
} ;
if (! (infile = sf_open (infilename, SFM_READ, &sfinfo)))
{ printf ("Not able to open input file %s.\n", infilename) ;
sf_perror (NULL) ;
return 1 ;
} ;
if (! (sfinfo.format = guess_output_file_type (outfilename, sfinfo.format)))
{ printf ("Error : Not able to determine output file type for %s.\n", outfilename) ;
return 1 ;
} ;
outfilemajor = sfinfo.format & (SF_FORMAT_TYPEMASK | SF_FORMAT_ENDMASK) ;
if (outfileminor)
sfinfo.format = outfilemajor | outfileminor ;
else
sfinfo.format = outfilemajor | (sfinfo.format & SF_FORMAT_SUBMASK) ;
if (! sf_format_check (&sfinfo))
{ printf ("Error : output file format is invalid (0x%08X).\n", sfinfo.format) ;
return 1 ;
} ;
/* Open the output file. */
if (! (outfile = sf_open (outfilename, SFM_WRITE, &sfinfo)))
{ printf ("Not able to open output file %s.\n", outfilename) ;
return 1 ;
} ;
copy_data (outfile, infile, BUFFER_LEN / sfinfo.channels) ;
sf_close (infile) ;
sf_close (outfile) ;
return 0 ;
} /* main */
|