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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2004-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  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. #include "sfconfig.h"
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include "sndfile.h"
  22. #include "sfendian.h"
  23. #include "common.h"
  24. #define TWOBIT_MARKER (MAKE_MARKER ('2', 'B', 'I', 'T'))
  25. #define AVR_HDR_SIZE 128
  26. #define SFE_AVR_X 666
  27. /*
  28. ** From: hyc@hanauma.Jpl.Nasa.Gov (Howard Chu)
  29. **
  30. ** A lot of PD software exists to play Mac .snd files on the ST. One other
  31. ** format that seems pretty popular (used by a number of commercial packages)
  32. ** is the AVR format (from Audio Visual Research). This format has a 128 byte
  33. ** header that looks like this (its actually packed, but thats not portable):
  34. */
  35. typedef struct
  36. { int marker ; /* 2BIT */
  37. char name [8] ; /* null-padded sample name */
  38. short mono ; /* 0 = mono, 0xffff = stereo */
  39. short rez ; /* 8 = 8 bit, 16 = 16 bit */
  40. short sign ; /* 0 = unsigned, 0xffff = signed */
  41. short loop ; /* 0 = no loop, 0xffff = looping sample */
  42. short midi ; /* 0xffff = no MIDI note assigned,  */
  43. /* 0xffXX = single key note assignment */
  44. /* 0xLLHH = key split, low/hi note */
  45. int srate ; /* sample frequency in hertz */
  46. int frames ; /* sample length in bytes or words (see rez) */
  47. int lbeg ; /* offset to start of loop in bytes or words. */
  48. /* set to zero if unused */
  49. int lend ; /* offset to end of loop in bytes or words. */
  50. /* set to sample length if unused */
  51. short res1 ; /* Reserved, MIDI keyboard split */
  52. short res2 ; /* Reserved, sample compression */
  53. short res3 ; /* Reserved */
  54. char ext [20] ; /* Additional filename space, used if (name[7] != 0) */
  55. char user [64] ; /* User defined. Typically ASCII message */
  56. } AVR_HEADER ;
  57. /*------------------------------------------------------------------------------
  58. ** Private static functions.
  59. */
  60. static int avr_close (SF_PRIVATE *psf) ;
  61. static int avr_read_header (SF_PRIVATE *psf) ;
  62. static int avr_write_header (SF_PRIVATE *psf, int calc_length) ;
  63. /*------------------------------------------------------------------------------
  64. ** Public function.
  65. */
  66. int
  67. avr_open (SF_PRIVATE *psf)
  68. { int error = 0 ;
  69. if (psf->file.mode == SFM_READ || (psf->file.mode == SFM_RDWR && psf->filelength > 0))
  70. { if ((error = avr_read_header (psf)))
  71. return error ;
  72. } ;
  73. if ((SF_CONTAINER (psf->sf.format)) != SF_FORMAT_AVR)
  74. return SFE_BAD_OPEN_FORMAT ;
  75. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  76. { psf->endian = SF_ENDIAN (psf->sf.format) ;
  77. psf->endian = SF_ENDIAN_BIG ;
  78. if (avr_write_header (psf, SF_FALSE))
  79. return psf->error ;
  80. psf->write_header = avr_write_header ;
  81. } ;
  82. psf->container_close = avr_close ;
  83. psf->blockwidth = psf->bytewidth * psf->sf.channels ;
  84. error = pcm_init (psf) ;
  85. return error ;
  86. } /* avr_open */
  87. static int
  88. avr_read_header (SF_PRIVATE *psf)
  89. { AVR_HEADER hdr ;
  90. memset (&hdr, 0, sizeof (hdr)) ;
  91. psf_binheader_readf (psf, "pmb", 0, &hdr.marker, &hdr.name, sizeof (hdr.name)) ;
  92. psf_log_printf (psf, "%Mn", hdr.marker) ;
  93. if (hdr.marker != TWOBIT_MARKER)
  94. return SFE_AVR_X ;
  95. psf_log_printf (psf, "  Name        : %sn", hdr.name) ;
  96. psf_binheader_readf (psf, "E22222", &hdr.mono, &hdr.rez, &hdr.sign, &hdr.loop, &hdr.midi) ;
  97. psf->sf.channels = (hdr.mono & 1) + 1 ;
  98. psf_log_printf (psf, "  Channels    : %dn  Bit width   : %dn  Signed      : %sn",
  99. (hdr.mono & 1) + 1, hdr.rez, hdr.sign ? "yes" : "no") ;
  100. switch ((hdr.rez << 16) + (hdr.sign & 1))
  101. { case ((8 << 16) + 0) :
  102. psf->sf.format = SF_FORMAT_AVR | SF_FORMAT_PCM_U8 ;
  103. psf->bytewidth = 1 ;
  104. break ;
  105. case ((8 << 16) + 1) :
  106. psf->sf.format = SF_FORMAT_AVR | SF_FORMAT_PCM_S8 ;
  107. psf->bytewidth = 1 ;
  108. break ;
  109. case ((16 << 16) + 1) :
  110. psf->sf.format = SF_FORMAT_AVR | SF_FORMAT_PCM_16 ;
  111. psf->bytewidth = 2 ;
  112. break ;
  113. default :
  114. psf_log_printf (psf, "Error : bad rez/sign combination.n") ;
  115. return SFE_AVR_X ;
  116. } ;
  117. psf_binheader_readf (psf, "E4444", &hdr.srate, &hdr.frames, &hdr.lbeg, &hdr.lend) ;
  118. psf->sf.frames = hdr.frames ;
  119. psf->sf.samplerate = hdr.srate ;
  120. psf_log_printf (psf, "  Frames      : %Dn", psf->sf.frames) ;
  121. psf_log_printf (psf, "  Sample rate : %dn", psf->sf.samplerate) ;
  122. psf_binheader_readf (psf, "E222", &hdr.res1, &hdr.res2, &hdr.res3) ;
  123. psf_binheader_readf (psf, "bb", hdr.ext, sizeof (hdr.ext), hdr.user, sizeof (hdr.user)) ;
  124. psf_log_printf (psf, "  Ext         : %sn  User        : %sn", hdr.ext, hdr.user) ;
  125. psf->endian = SF_ENDIAN_BIG ;
  126.   psf->dataoffset = AVR_HDR_SIZE ;
  127. psf->datalength = hdr.frames * (hdr.rez / 8) ;
  128. if (psf->fileoffset > 0)
  129. psf->filelength = AVR_HDR_SIZE + psf->datalength ;
  130. if (psf_ftell (psf) != psf->dataoffset)
  131. psf_binheader_readf (psf, "j", psf->dataoffset - psf_ftell (psf)) ;
  132. psf->blockwidth = psf->sf.channels * psf->bytewidth ;
  133. if (psf->sf.frames == 0 && psf->blockwidth)
  134. psf->sf.frames = (psf->filelength - psf->dataoffset) / psf->blockwidth ;
  135. return 0 ;
  136. } /* avr_read_header */
  137. static int
  138. avr_write_header (SF_PRIVATE *psf, int calc_length)
  139. { sf_count_t current ;
  140. int sign ;
  141. if (psf->pipeoffset > 0)
  142. return 0 ;
  143. current = psf_ftell (psf) ;
  144. if (calc_length)
  145. { psf->filelength = psf_get_filelen (psf) ;
  146. psf->datalength = psf->filelength - psf->dataoffset ;
  147. if (psf->dataend)
  148. psf->datalength -= psf->filelength - psf->dataend ;
  149. psf->sf.frames = psf->datalength / (psf->bytewidth * psf->sf.channels) ;
  150. } ;
  151. /* Reset the current header length to zero. */
  152. psf->header [0] = 0 ;
  153. psf->headindex = 0 ;
  154. /*
  155. ** Only attempt to seek if we are not writng to a pipe. If we are
  156. ** writing to a pipe we shouldn't be here anyway.
  157. */
  158. if (psf->is_pipe == SF_FALSE)
  159. psf_fseek (psf, 0, SEEK_SET) ;
  160. psf_binheader_writef (psf, "Emz22", TWOBIT_MARKER, make_size_t (8),
  161. psf->sf.channels == 2 ? 0xFFFF : 0, psf->bytewidth * 8) ;
  162. sign = ((SF_CODEC (psf->sf.format)) == SF_FORMAT_PCM_U8) ? 0 : 0xFFFF ;
  163. psf_binheader_writef (psf, "E222", sign, 0, 0xFFFF) ;
  164. psf_binheader_writef (psf, "E4444", psf->sf.samplerate, psf->sf.frames, 0, 0) ;
  165. psf_binheader_writef (psf, "E222zz", 0, 0, 0, make_size_t (20), make_size_t (64)) ;
  166. /* Header construction complete so write it out. */
  167. psf_fwrite (psf->header, psf->headindex, 1, psf) ;
  168. if (psf->error)
  169. return psf->error ;
  170. psf->dataoffset = psf->headindex ;
  171. if (current > 0)
  172. psf_fseek (psf, current, SEEK_SET) ;
  173. return psf->error ;
  174. } /* avr_write_header */
  175. static int
  176. avr_close (SF_PRIVATE *psf)
  177. {
  178. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  179. avr_write_header (psf, SF_TRUE) ;
  180. return 0 ;
  181. } /* avr_close */