sndfile2oct.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      400
  23. int     main (int argc, char *argv[])
  24. { static double data [BUFFER_LEN] ;
  25. char  *progname, *infilename, *outfilename, *cptr ;
  26. SNDFILE   *infile ;
  27. SF_INFO   sfinfo ;
  28. FILE *outfile ;
  29. unsigned int k, readcount, len, total ;
  30. progname = strrchr (argv [0], '/') ;
  31. progname = progname ? progname + 1 : argv [0] ;
  32. if (argc != 3)
  33. { printf ("n Usage : %s <input file> <output file>nn", progname) ;
  34. return  1 ;
  35. } ;
  36. infilename  = argv [1] ;
  37. outfilename = argv [2] ;
  38. if (! strcmp (infilename, outfilename))
  39. { printf ("Error : Input and output filename are the same.n") ;
  40. return 1 ;
  41. } ;
  42. if (! (infile = sf_open_read (infilename, &sfinfo)))
  43. { printf ("Not able to open input file %s.n", infilename) ;
  44. sf_perror (NULL) ;
  45. return  1 ;
  46. } ;
  47. if (! (outfile = fopen (outfilename, "w")))
  48. { printf ("Not able to open output file %s.n", outfilename) ;
  49. sf_perror (NULL) ;
  50. return  1 ;
  51. } ;
  52. outfilename = strrchr (argv [2], '/') ;
  53. outfilename = outfilename ? outfilename + 1 : argv [2] ;
  54. if ((cptr = strchr (outfilename, '.')))
  55. *cptr = 0 ;
  56. fprintf (outfile, "# name: %sn", outfilename) ;
  57. fprintf (outfile, "# type: matrixn") ;
  58. fprintf (outfile, "# rows: %dn", sfinfo.samples) ;
  59. fprintf (outfile, "# columns: %d", sfinfo.channels) ;
  60. len = BUFFER_LEN - (BUFFER_LEN % sfinfo.channels) ;
  61. total = 0 ;
  62. while ((readcount = sf_read_double (infile, data, len, 0)))
  63. {
  64. for (k = 0 ; k < readcount ; k++)
  65. { if (! (k % sfinfo.channels))
  66. fprintf (outfile, "n") ;
  67. fprintf (outfile, "%g ", data [k]) ;
  68. } ;
  69. memset (data, 0, len * sizeof (double)) ;
  70. total += readcount ;
  71. } ;
  72. if (total != sfinfo.samples * sfinfo.channels)
  73. printf ("Error : Values read (%d) != samples * channels (%d)n", total, sfinfo.samples * sfinfo.channels) ;
  74. fclose (outfile) ;
  75. sf_close (infile) ;
  76. return 0 ;
  77. } /* main */