sndfile.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:8k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2. ** Copyright (C) 1999-2000 Erik de Castro Lopo <erikd@zip.com.au>
  3. **  
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU Lesser General Public License as published by
  6. ** the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
  13. ** 
  14. ** You should have received a copy of the GNU Lesser 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. /* sndfile.h -- system-wide definitions */
  19. #ifndef SNDFILE_H
  20. #define SNDFILE_H
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. /* For the Metrowerks CodeWarrior Pro Compiler (mainly MacOS) */
  24. #if (defined (__MWERKS__))
  25. #include <unix.h>
  26. #else
  27. #include <sys/types.h>
  28. #endif
  29. #ifdef _WIN32
  30. #pragma pack(push,1)
  31. #endif
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif /* __cplusplus */
  35. /* The following file types can be read and written.
  36. ** A file type would consist of a major type (ie SF_FORMAT_WAV) bitwise
  37. ** ORed with a minor type (ie SF_FORMAT_PCM). SF_FORMAT_TYPEMASK and
  38. ** SF_FORMAT_SUBMASK can be used to separate the major and minor file
  39. ** types.
  40. */
  41. enum
  42. { SF_FORMAT_WAV = 0x10000, /* Microsoft WAV format (big endian). */
  43. SF_FORMAT_AIFF = 0x20000, /* Apple/SGI AIFF format (little endian). */
  44. SF_FORMAT_AU = 0x30000, /* Sun/NeXT AU format (big endian). */
  45. SF_FORMAT_AULE = 0x40000, /* DEC AU format (little endian). */
  46. SF_FORMAT_RAW = 0x50000, /* RAW PCM data. */
  47. SF_FORMAT_PAF = 0x60000, /* Ensoniq PARIS file format. */
  48. SF_FORMAT_SVX = 0x70000, /* Amiga IFF / SVX8 / SV16 format. */
  49. SF_FORMAT_NIST = 0x80000, /* Sphere NIST format. */
  50. SF_FORMAT_PCM = 0x0001, /* PCM data in 8, 16, 24 or 32 bits. */
  51. SF_FORMAT_FLOAT = 0x0002, /* 32 bit floats. */
  52. SF_FORMAT_ULAW = 0x0003, /* U-Law encoded. */
  53. SF_FORMAT_ALAW = 0x0004, /* A-Law encoded. */
  54. SF_FORMAT_IMA_ADPCM = 0x0005, /* IMA ADPCM. */
  55. SF_FORMAT_MS_ADPCM  = 0x0006, /* Microsoft ADPCM. */
  56. SF_FORMAT_PCM_BE = 0x0007, /* Big endian PCM data. */
  57. SF_FORMAT_PCM_LE   = 0x0008, /* Little endian PCM data. */
  58. SF_FORMAT_PCM_S8 = 0x0009, /* Signed 8 bit PCM. */
  59. SF_FORMAT_PCM_U8   = 0x000A, /* Unsigned 8 bit PCM. */
  60. SF_FORMAT_SVX_FIB = 0x000B,  /* SVX Fibonacci Delta encoding. */
  61. SF_FORMAT_SVX_EXP = 0x000C,  /* SVX Exponential Delta encoding. */
  62. SF_FORMAT_GSM610 = 0x000D,  /* GSM 6.10 encoding. */
  63. SF_FORMAT_G721_32 = 0x000E,  /* 32kbs G721 ADPCM encoding. */
  64. SF_FORMAT_G723_24 = 0x000F,  /* 24kbs G723 ADPCM encoding. */
  65. SF_FORMAT_SUBMASK = 0xFFFF,
  66. SF_FORMAT_TYPEMASK = 0x7FFF0000,
  67. SF_FORCE_OPEN           = 0xFFFF
  68. } ;
  69. /* Th following SF_FORMAT_RAW_* identifiers are deprecated. Use the
  70. ** SF_FORMAT_PCM_* idetifiers instead.
  71. */
  72. #define SF_FORMAT_RAW_BE SF_FORMAT_PCM_BE
  73. #define SF_FORMAT_RAW_LE SF_FORMAT_PCM_LE
  74. #define SF_FORMAT_RAW_S8 SF_FORMAT_PCM_S8
  75. #define SF_FORMAT_RAW_U8 SF_FORMAT_PCM_U8
  76. /* A SNDFILE* pointer can be passed around much like stdio.h's FILE* pointer. */
  77. typedef void SNDFILE ;
  78. /* A pointer to a SF_INFO structure is passed to sf_open_read () and filled in. 
  79. ** On write, the SF_INFO structure is filled in by the user and passed into  
  80. ** sf_open_write ().
  81. */
  82. typedef struct
  83. { unsigned int samplerate ;
  84. unsigned int samples ;
  85. unsigned int channels ;
  86. unsigned int pcmbitwidth ;  /* pcmbitwidth is deprecated. */
  87. unsigned int format ;
  88. unsigned int sections ;
  89. unsigned int seekable ;
  90. unsigned int    bytewidth;     /* size in bytes of one frame/sample*/
  91. unsigned int    format_tag;    /* file header format tag */
  92. /* wav files extra params */
  93. unsigned int    avg_bytes_per_sec;
  94. unsigned int    eb_size;       /* extra bytes size. wav-file only */
  95. void*           extra_bytes;   /* a pointer to extra bytes */
  96. } SF_INFO ;
  97. /* Open the specified file for read or write. On error, this will return 
  98. ** a NULL pointer. To find the error number, pass a NULL SNDFILE to
  99. ** sf_perror () or sf_error_str ().
  100. */
  101. SNDFILE*  sf_open_read (const char *path, SF_INFO *wfinfo) ;
  102. SNDFILE*  sf_open_write (const char *path, const SF_INFO *wfinfo) ;
  103. /* sf_perror () prints out the current error state.
  104. ** sf_error_str () returns the current error message to the caller in the 
  105. ** string buffer provided. 
  106. */
  107. int sf_perror (SNDFILE *sndfile) ;
  108. int sf_error_str (SNDFILE *sndfile, char* str, size_t len) ;
  109. int sf_error_number (int errnum, char *str, size_t maxlen) ;
  110. size_t sf_get_header_info (SNDFILE *sndfile, char* buffer, size_t bufferlen, size_t offset) ;
  111. /* Get the library version string. */
  112. size_t sf_get_lib_version (char* buffer, size_t bufferlen) ;
  113. /* Return TRUE if fields of the SF_INFO struct are a valid combination of values. */
  114. int sf_format_check (const SF_INFO *info) ;
  115. /* Return the maximum absolute sample value in the SNDFILE. */
  116. double sf_signal_max (SNDFILE *sndfile) ;
  117. /* Seek within the waveform data chunk of the SNDFILE. sf_seek () uses 
  118. ** the same values for whence (SEEK_SET, SEEK_CUR and SEEK_END) as
  119. ** stdio.h functions lseek () and fseek ().
  120. ** An offset of zero with whence set to SEEK_SET will position the 
  121. ** read / write pointer to the first data sample.
  122. ** On success sf_seek returns the current position in (multi-channel) 
  123. ** samples from the start of the file.
  124. ** On error sf_seek returns -1.
  125. */
  126. off_t sf_seek  (SNDFILE *sndfile, off_t frames, int whence) ;
  127. /* Functions for reading/writing the waveform data of a sound file.
  128. */
  129. size_t sf_read_raw (SNDFILE *sndfile, void *ptr, size_t bytes) ;
  130. size_t sf_write_raw  (SNDFILE *sndfile, void *ptr, size_t bytes) ;
  131. /*or it's a hack for reading unknown formats
  132. */
  133. int sf_set_bytewidth(SNDFILE *sndfile, SF_INFO *sfinfo);
  134. /* Functions for reading and writing the data chunk in terms of frames. 
  135. ** The number of items actually read/written = frames * number of channels.
  136. **     sf_xxxx_raw read/writes the raw data bytes from/to the file
  137. **     sf_xxxx_uchar passes data in the unsigned char format
  138. **     sf_xxxx_char passes data in the signed char format
  139. **     sf_xxxx_short passes data in the native short format
  140. **     sf_xxxx_int passes data in the native int format
  141. **     sf_xxxx_float passes data in the native float format
  142. **     sf_xxxx_double passes data in the native double format
  143. ** For the double format, if the normalize flag is TRUE, the read/write 
  144. ** operations will use floats/doubles in the rangs [-1.0 .. 1.0] to 
  145. ** represent the minimum and maximum values of the waveform irrespective
  146. ** of the bitwidth of the input/output file.
  147. ** All of these read/write function return number of frames read/written.
  148. */
  149. size_t sf_readf_short (SNDFILE *sndfile, short *ptr, size_t frames) ;
  150. size_t sf_writef_short (SNDFILE *sndfile, short *ptr, size_t frames) ;
  151. size_t sf_readf_int (SNDFILE *sndfile, int *ptr, size_t frames) ;
  152. size_t sf_writef_int  (SNDFILE *sndfile, int *ptr, size_t frames) ;
  153. size_t sf_readf_double (SNDFILE *sndfile, double *ptr, size_t frames, int normalize) ;
  154. size_t sf_writef_double(SNDFILE *sndfile, double *ptr, size_t frames, int normalize) ;
  155. /* Functions for reading and writing the data chunk in terms of items. 
  156. ** Otherwise similar to above.
  157. ** All of these read/write function return number of items read/written.
  158. */
  159. size_t sf_read_short (SNDFILE *sndfile, short *ptr, size_t items) ;
  160. size_t sf_write_short (SNDFILE *sndfile, short *ptr, size_t items) ;
  161. size_t sf_read_int (SNDFILE *sndfile, int *ptr, size_t items) ;
  162. size_t sf_write_int  (SNDFILE *sndfile, int *ptr, size_t items) ;
  163. size_t sf_read_double (SNDFILE *sndfile, double *ptr, size_t items, int normalize) ;
  164. size_t sf_write_double (SNDFILE *sndfile, double *ptr, size_t items, int normalize) ;
  165. /* Close the SNDFILE. Returns 0 on success, or an error number. */
  166. int sf_close (SNDFILE *sndfile) ;
  167. #ifdef __cplusplus
  168. } /* extern "C" */
  169. #endif /* __cplusplus */
  170. #ifdef _WIN32
  171. #pragma pack(pop,1)
  172. #endif
  173. #endif /* SNDFILE_H */