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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2001-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. **
  4. ** All rights reserved.
  5. **
  6. ** Redistribution and use in source and binary forms, with or without
  7. ** modification, are permitted provided that the following conditions are
  8. ** met:
  9. **
  10. **     * Redistributions of source code must retain the above copyright
  11. **       notice, this list of conditions and the following disclaimer.
  12. **     * Redistributions in binary form must reproduce the above copyright
  13. **       notice, this list of conditions and the following disclaimer in
  14. **       the documentation and/or other materials provided with the
  15. **       distribution.
  16. **     * Neither the author nor the names of any contributors may be used
  17. **       to endorse or promote products derived from this software without
  18. **       specific prior written permission.
  19. **
  20. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  22. ** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23. ** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  24. ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25. ** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. ** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  27. ** OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28. ** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  29. ** OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  30. ** ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #include <stdio.h>
  33. /* Include this header file to use functions from libsndfile. */
  34. #include <sndfile.h>
  35. /*    This will be the length of the buffer used to hold.frames while
  36. **    we process them.
  37. */
  38. #define BUFFER_LEN 1024
  39. /* libsndfile can handle more than 6 channels but we'll restrict it to 6. */
  40. #define MAX_CHANNELS 6
  41. /* Function prototype. */
  42. static void process_data (double *data, int count, int channels) ;
  43. int
  44. main (void)
  45. {   /* This is a buffer of double precision floating point values
  46.     ** which will hold our data while we process it.
  47.     */
  48.     static double data [BUFFER_LEN] ;
  49.     /* A SNDFILE is very much like a FILE in the Standard C library. The
  50.     ** sf_open function return an SNDFILE* pointer when they sucessfully
  51. ** open the specified file.
  52.     */
  53.     SNDFILE      *infile, *outfile ;
  54.     /* A pointer to an SF_INFO stutct is passed to sf_open.
  55.     ** On read, the library fills this struct with information about the file.
  56.     ** On write, the struct must be filled in before calling sf_open.
  57.     */
  58.     SF_INFO sfinfo ;
  59.     int readcount ;
  60.     const char *infilename = "input.wav" ;
  61.     const char *outfilename = "output.wav" ;
  62.     /* Here's where we open the input file. We pass sf_open the file name and
  63.     ** a pointer to an SF_INFO struct.
  64.     ** On successful open, sf_open returns a SNDFILE* pointer which is used
  65.     ** for all subsequent operations on that file.
  66.     ** If an error occurs during sf_open, the function returns a NULL pointer.
  67. **
  68. ** If you are trying to open a raw headerless file you will need to set the
  69. ** format and channels fields of sfinfo before calling sf_open(). For
  70. ** instance to open a raw 16 bit stereo PCM file you would need the following
  71. ** two lines:
  72. **
  73. ** sfinfo.format   = SF_FORMAT_RAW | SF_FORMAT_PCM_16 ;
  74. ** sfinfo.channels = 2 ;
  75.     */
  76.     if (! (infile = sf_open (infilename, SFM_READ, &sfinfo)))
  77.     {   /* Open failed so print an error message. */
  78.         printf ("Not able to open input file %s.n", infilename) ;
  79.         /* Print the error message from libsndfile. */
  80.         puts (sf_strerror (NULL)) ;
  81.         return  1 ;
  82.         } ;
  83.     if (sfinfo.channels > MAX_CHANNELS)
  84.     {   printf ("Not able to process more than %d channelsn", MAX_CHANNELS) ;
  85.         return  1 ;
  86.         } ;
  87.     /* Open the output file. */
  88.     if (! (outfile = sf_open (outfilename, SFM_WRITE, &sfinfo)))
  89.     {   printf ("Not able to open output file %s.n", outfilename) ;
  90.         puts (sf_strerror (NULL)) ;
  91.         return  1 ;
  92.         } ;
  93.     /* While there are.frames in the input file, read them, process
  94.     ** them and write them to the output file.
  95.     */
  96.     while ((readcount = sf_read_double (infile, data, BUFFER_LEN)))
  97.     {   process_data (data, readcount, sfinfo.channels) ;
  98.         sf_write_double (outfile, data, readcount) ;
  99.         } ;
  100.     /* Close input and output files. */
  101.     sf_close (infile) ;
  102.     sf_close (outfile) ;
  103.     return 0 ;
  104. } /* main */
  105. static void
  106. process_data (double *data, int count, int channels)
  107. { double channel_gain [MAX_CHANNELS] = { 0.5, 0.8, 0.1, 0.4, 0.4, 0.9 } ;
  108.     int k, chan ;
  109.     /* Process the data here.
  110.     ** If the soundfile contains more then 1 channel you need to take care of
  111.     ** the data interleaving youself.
  112.     ** Current we just apply a channel dependant gain.
  113.     */
  114.     for (chan = 0 ; chan < channels ; chan ++)
  115.         for (k = chan ; k < count ; k+= channels)
  116.             data [k] *= channel_gain [chan] ;
  117.     return ;
  118. } /* process_data */