wav32_aiff24.c
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2. ** Copyright (C) 1999-2000 Erik de Castro Lopo <erikd@zip.com.au>
  3. **  
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU General Public License as published by
  6. ** the Free Software Foundation; either version 2 of the License, or
  7. ** (at your option) any later version.
  8. ** 
  9. ** This program is distributed in the hope that it will be useful,
  10. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ** GNU General Public License for more details.
  13. ** 
  14. ** You should have received a copy of the GNU General Public License
  15. ** along with this program; if not, write to the Free Software 
  16. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #include <stdio.h>
  19. #include <string.h>
  20. #include <ctype.h>
  21. #include <sndfile.h>
  22. #define  BUFFER_LEN      1024
  23. static double data [BUFFER_LEN] ;
  24. static
  25. void    copy_data (SNDFILE *outfile, SNDFILE *infile, unsigned int len, double normfactor)
  26. { unsigned int readcount, k ;
  27. readcount = len ;
  28. while (readcount == len)
  29. { readcount = sf_read_double (infile, data, len, 0) ;
  30. for (k = 0 ; k < readcount ; k++)
  31. data [k] *= normfactor ;
  32. sf_write_double (outfile, data, readcount, 0) ;
  33. } ;
  34. return ;
  35. } /* copy_data */
  36. static
  37. void print_usage (char *progname)
  38. {
  39. printf ("nConverts a 32 bit floating point WAV file into a 24 bit PCM AIFF file.n") ;
  40. printf ("        Usage : %s <input file> <output file>nn", progname) ;
  41. } /* print_usage */
  42. int     main (int argc, char *argv[])
  43. { char  *progname, *infilename, *outfilename ;
  44. SNDFILE   *infile, *outfile ;
  45. SF_INFO   sfinfo ;
  46. double normfactor ;
  47. progname = strrchr (argv [0], '/') ;
  48. progname = progname ? progname + 1 : argv [0] ;
  49. if (argc != 3)
  50. { print_usage (progname) ;
  51. return  1 ;
  52. } ;
  53. infilename = argv [1] ;
  54. outfilename = argv [2] ;
  55. if (! strcmp (infilename, outfilename))
  56. { printf ("Error : Input and output filenames are the same.nn") ;
  57. print_usage (progname) ;
  58. return  1 ;
  59. } ;
  60. if (! (infile = sf_open_read (infilename, &sfinfo)))
  61. { printf ("Not able to open input file %s.n", infilename) ;
  62. sf_perror (NULL) ;
  63. return  1 ;
  64. } ;
  65. if (sfinfo.format != (SF_FORMAT_WAV | SF_FORMAT_FLOAT))
  66. { printf ("Error : Input file %s is not a 32 bit floating point WAV file.n", infilename) ;
  67. return  1 ;
  68. } ;
  69. sfinfo.format = (SF_FORMAT_AIFF | SF_FORMAT_PCM) ;
  70. sfinfo.pcmbitwidth = 24 ;
  71. normfactor = sf_signal_max (infile) ;
  72. if (normfactor < 1.0 && normfactor > 0.0)
  73. normfactor = ((double) 0x400000) ;
  74. else
  75. normfactor = 1.0 ;
  76. printf ("normfactor : %gn", normfactor) ;
  77. if (! (outfile = sf_open_write (outfilename, &sfinfo)))
  78. { printf ("Not able to open output file %s.n", outfilename) ;
  79. return  1 ;
  80. } ;
  81. copy_data (outfile, infile, BUFFER_LEN / sfinfo.channels, normfactor) ;
  82. sf_close (infile) ;
  83. sf_close (outfile) ;
  84. return 0 ;
  85. } /* main */