sndfilehandle.cc
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:2k
源码类别:

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2007 Erik de Castro Lopo <erikd@mega-nerd.com>
  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 <cstdio>
  19. #include <cstring>
  20. #include <sndfile.hh>
  21. #define BUFFER_LEN 1024
  22. static void
  23. create_file (const char * fname, int format)
  24. { static short buffer [BUFFER_LEN] ;
  25. SndfileHandle file ;
  26. int channels = 2 ;
  27. int srate = 48000 ;
  28. printf ("Creating file named '%s'n", fname) ;
  29. file = SndfileHandle (fname, SFM_WRITE, format, channels, srate) ;
  30. memset (buffer, 0, sizeof (buffer)) ;
  31. file.write (buffer, BUFFER_LEN) ;
  32. puts ("") ;
  33. /*
  34. ** The SndfileHandle object will automatically close the file and
  35. ** release all allocated memory when the object goes out of scope.
  36. ** This is the Resource Acquisition Is Initailization idom.
  37. ** See : http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization
  38. */
  39. } /* create_file */
  40. static void
  41. read_file (const char * fname)
  42. { static short buffer [BUFFER_LEN] ;
  43. SndfileHandle file ;
  44. file = SndfileHandle (fname) ;
  45. printf ("Opened file '%s'n", fname) ;
  46. printf ("    Sample rate : %dn", file.samplerate ()) ;
  47. printf ("    Channels    : %dn", file.channels ()) ;
  48. file.read (buffer, BUFFER_LEN) ;
  49. puts ("") ;
  50. /* RAII takes care of destroying SndfileHandle object. */
  51. } /* read_file */
  52. int
  53. main (void)
  54. { const char * fname = "test.wav" ;
  55. puts ("nSimple example showing usage of the C++ SndfileHandle object.n") ;
  56. create_file (fname, SF_FORMAT_WAV | SF_FORMAT_PCM_16) ;
  57. read_file (fname) ;
  58. puts ("Done.n") ;
  59. return 0 ;
  60. } /* main */