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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 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 <stdlib.h>
  34. #include <string.h>
  35. #include <sndfile.h>
  36. #include "common.h"
  37. #define BUFFER_LEN 4096
  38. #define MAX_CHANNELS 16
  39. typedef struct
  40. { SNDFILE * infile ;
  41. SNDFILE * outfile [MAX_CHANNELS] ;
  42. union
  43. { double d [MAX_CHANNELS * BUFFER_LEN] ;
  44. int i [MAX_CHANNELS * BUFFER_LEN] ;
  45. } din ;
  46. union
  47. { double d [BUFFER_LEN] ;
  48. int i [BUFFER_LEN] ;
  49. } dout ;
  50. int channels ;
  51. } STATE ;
  52. static void usage_exit (void) ;
  53. static void deinterleave_int (STATE * state) ;
  54. static void deinterleave_double (STATE * state) ;
  55. int
  56. main (int argc, char **argv)
  57. { STATE state ;
  58. SF_INFO sfinfo ;
  59. char pathname [512], ext [32], *cptr ;
  60. int ch, double_split ;
  61. if (argc != 2)
  62. { puts ("nError : need a single input file.n") ;
  63. usage_exit () ;
  64. } ;
  65. memset (&state, 0, sizeof (state)) ;
  66. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  67. if ((state.infile = sf_open (argv [1], SFM_READ, &sfinfo)) == NULL)
  68. { printf ("nError : Not able to open input file '%s'n%sn", argv [1], sf_strerror (NULL)) ;
  69. exit (1) ;
  70. } ;
  71. if (sfinfo.channels < 2)
  72. { printf ("nError : Input file '%s' only has one channel.n", argv [1]) ;
  73. exit (1) ;
  74. } ;
  75. state.channels = sfinfo.channels ;
  76. sfinfo.channels = 1 ;
  77. snprintf (pathname, sizeof (pathname), "%s", argv [1]) ;
  78. if ((cptr = strrchr (pathname, '.')) == NULL)
  79. ext [0] = 0 ;
  80. else
  81. { snprintf (ext, sizeof (ext), "%s", cptr) ;
  82. cptr [0] = 0 ;
  83. } ;
  84. printf ("Input file : %sn", pathname) ;
  85. puts ("Output files :") ;
  86. for (ch = 0 ; ch < state.channels ; ch++)
  87. { char filename [520] ;
  88. snprintf (filename, sizeof (filename), "%s_%02d%s", pathname, ch, ext) ;
  89. if ((state.outfile [ch] = sf_open (filename, SFM_WRITE, &sfinfo)) == NULL)
  90. { printf ("Not able to open output file '%s'n%sn", filename, sf_strerror (NULL)) ;
  91. exit (1) ;
  92. } ;
  93. printf ("    %sn", filename) ;
  94. } ;
  95. switch (sfinfo.format & SF_FORMAT_SUBMASK)
  96. { case SF_FORMAT_FLOAT :
  97. case SF_FORMAT_DOUBLE :
  98. case SF_FORMAT_VORBIS :
  99. double_split = 1 ;
  100. break ;
  101. default :
  102. double_split = 0 ;
  103. break ;
  104. } ;
  105. if (double_split)
  106. deinterleave_double (&state) ;
  107. else
  108. deinterleave_int (&state) ;
  109. sf_close (state.infile) ;
  110. for (ch = 0 ; ch < MAX_CHANNELS ; ch++)
  111. if (state.outfile [ch] != NULL)
  112. sf_close (state.outfile [ch]) ;
  113. return 0 ;
  114. } /* main */
  115. /*------------------------------------------------------------------------------
  116. */
  117. static void
  118. usage_exit (void)
  119. { puts ("nUsage : sndfile-deinterleave <filename>n") ;
  120. puts ("Split a mutli channel file into a set of mon files.n") ;
  121. exit (0) ;
  122. } /* usage_exit */
  123. static void
  124. deinterleave_int (STATE * state)
  125. { int read_len ;
  126. int ch, k ;
  127. do
  128. { read_len = sf_readf_int (state->infile, state->din.i, BUFFER_LEN) ;
  129. for (ch = 0 ; ch < state->channels ; ch ++)
  130. { for (k = 0 ; k < read_len ; k++)
  131. state->dout.i [k] = state->din.i [k * state->channels + ch] ;
  132. sf_write_int (state->outfile [ch], state->dout.i, read_len) ;
  133. } ;
  134. }
  135. while (read_len > 0) ;
  136. } /* deinterleave_int */
  137. static void
  138. deinterleave_double (STATE * state)
  139. { int read_len ;
  140. int ch, k ;
  141. do
  142. { read_len = sf_readf_double (state->infile, state->din.d, BUFFER_LEN) ;
  143. for (ch = 0 ; ch < state->channels ; ch ++)
  144. { for (k = 0 ; k < read_len ; k++)
  145. state->dout.d [k] = state->din.d [k * state->channels + ch] ;
  146. sf_write_double (state->outfile [ch], state->dout.d, read_len) ;
  147. } ;
  148. }
  149. while (read_len > 0) ;
  150. } /* deinterleave_double */