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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2008-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. /* sndfile-cmp.c
  33.  * Conrad Parker 2008
  34.  */
  35. #include "sfconfig.h"
  36. #include <stdio.h>
  37. #include <string.h>
  38. #include <sndfile.h>
  39. /* Length of comparison data buffers in units of items */
  40. #define BUFLEN 65536
  41. static char * progname ;
  42. static char * filename1, * filename2 ;
  43. static int
  44. comparison_error (const char * what)
  45. { printf ("%s: %s of files %s and %s differn", progname, what, filename1, filename2) ;
  46. return 1 ;
  47. } /* comparison_error */
  48. static int
  49. compare (void)
  50. {
  51. double buf1 [BUFLEN], buf2 [BUFLEN] ;
  52. SF_INFO sfinfo1, sfinfo2 ;
  53. SNDFILE * sf1 = NULL, * sf2 = NULL ;
  54. sf_count_t len, i, nread1, nread2 ;
  55. int retval = 0 ;
  56. memset (&sfinfo1, 0, sizeof (SF_INFO)) ;
  57. sf1 = sf_open (filename1, SFM_READ, &sfinfo1) ;
  58. if (sf1 == NULL)
  59. { printf ("Error opening %s.n", filename1) ;
  60. retval = 1 ;
  61. goto out ;
  62. } ;
  63. memset (&sfinfo2, 0, sizeof (SF_INFO)) ;
  64. sf2 = sf_open (filename2, SFM_READ, &sfinfo2) ;
  65. if (sf2 == NULL)
  66. { printf ("Error opening %s.n", filename2) ;
  67. retval = 1 ;
  68. goto out ;
  69. } ;
  70. if (sfinfo1.samplerate != sfinfo2.samplerate)
  71. { retval = comparison_error ("Samplerates") ;
  72. goto out ;
  73. } ;
  74. if (sfinfo1.channels != sfinfo2.channels)
  75. { retval = comparison_error ("Number of channels") ;
  76. goto out ;
  77. } ;
  78. /* Calculate the framecount that will fit in our data buffers */
  79. len = BUFLEN / sfinfo1.channels ;
  80. while ( (nread1 = sf_readf_double (sf1, buf1, len)) > 0)
  81. { nread2 = sf_readf_double (sf2, buf2, nread1) ;
  82. if (nread2 != nread1)
  83. { retval = comparison_error ("PCM data lengths") ;
  84. goto out ;
  85. } ;
  86. for (i = 0 ; i < nread1 ; i++)
  87. { if (buf1 [i] != buf2 [i])
  88. { retval = comparison_error ("PCM data") ;
  89. goto out ;
  90. } ;
  91. } ;
  92. } ;
  93. if ( (nread2 = sf_readf_double (sf2, buf2, nread1)) != 0)
  94. { retval = comparison_error ("PCM data lengths") ;
  95. goto out ;
  96. } ;
  97. out :
  98. sf_close (sf1) ;
  99. sf_close (sf2) ;
  100. return retval ;
  101. } /* compare */
  102. static void
  103. print_version (void)
  104. { char buffer [256] ;
  105. sf_command (NULL, SFC_GET_LIB_VERSION, buffer, sizeof (buffer)) ;
  106. printf ("nVersion : %snn", buffer) ;
  107. } /* print_version */
  108. static void
  109. print_usage (void)
  110. {
  111. print_version () ;
  112. printf ("Usage : %s <filename> <filename>n", progname) ;
  113. printf (" Compare the PCM data of two sound files.nn") ;
  114. } /* print_usage */
  115. int
  116. main (int argc, char *argv [])
  117. {
  118. progname = strrchr (argv [0], '/') ;
  119. progname = progname ? progname + 1 : argv [0] ;
  120. if (argc != 3)
  121. { print_usage () ;
  122. return 1 ;
  123. } ;
  124. filename1 = argv [argc - 2] ;
  125. filename2 = argv [argc - 1] ;
  126. if (strcmp (filename1, filename2) == 0)
  127. { printf ("Error : Input filenames are the same.nn") ;
  128. print_usage () ;
  129. return 1 ;
  130. } ;
  131. return compare () ;
  132. } /* main */