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

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 <stdlib.h>
  34. #include <string.h>
  35. #include <math.h>
  36. #include <sndfile.h>
  37. int
  38. main (void)
  39. { SF_FORMAT_INFO info ;
  40. SF_INFO  sfinfo ;
  41. char buffer [128] ;
  42. int format, major_count, subtype_count, m, s ;
  43. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  44. buffer [0] = 0 ;
  45. sf_command (NULL, SFC_GET_LIB_VERSION, buffer, sizeof (buffer)) ;
  46. if (strlen (buffer) < 1)
  47. { printf ("Line %d: could not retrieve lib version.n", __LINE__) ;
  48. exit (1) ;
  49. } ;
  50. printf ("Version : %snn", buffer) ;
  51. sf_command (NULL, SFC_GET_FORMAT_MAJOR_COUNT, &major_count, sizeof (int)) ;
  52. sf_command (NULL, SFC_GET_FORMAT_SUBTYPE_COUNT, &subtype_count, sizeof (int)) ;
  53. sfinfo.channels = 1 ;
  54. for (m = 0 ; m < major_count ; m++)
  55. { info.format = m ;
  56. sf_command (NULL, SFC_GET_FORMAT_MAJOR, &info, sizeof (info)) ;
  57. printf ("%s  (extension "%s")n", info.name, info.extension) ;
  58. format = info.format ;
  59. for (s = 0 ; s < subtype_count ; s++)
  60. { info.format = s ;
  61. sf_command (NULL, SFC_GET_FORMAT_SUBTYPE, &info, sizeof (info)) ;
  62. format = (format & SF_FORMAT_TYPEMASK) | info.format ;
  63. sfinfo.format = format ;
  64. if (sf_format_check (&sfinfo))
  65. printf ("   %sn", info.name) ;
  66. } ;
  67. puts ("") ;
  68. } ;
  69. puts ("") ;
  70. return 0 ;
  71. } /* main */