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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2002-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. ** Copyright (C) 2007 Reuben Thomas
  4. **
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU Lesser General Public License as published by
  7. ** the Free Software Foundation; either version 2.1 of the License, or
  8. ** (at your option) any later version.
  9. **
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ** GNU Lesser General Public License for more details.
  14. **
  15. ** You should have received a copy of the GNU Lesser General Public License
  16. ** along with this program; if not, write to the Free Software
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. #include "sfconfig.h"
  20. #include <stdio.h>
  21. #include <fcntl.h>
  22. #include <string.h>
  23. #include <ctype.h>
  24. #include "sndfile.h"
  25. #include "sfendian.h"
  26. #include "common.h"
  27. /*------------------------------------------------------------------------------
  28. ** Macros to handle big/little endian issues, and other magic numbers.
  29. */
  30. #define ALAW_MARKER MAKE_MARKER ('A', 'L', 'a', 'w')
  31. #define SOUN_MARKER MAKE_MARKER ('S', 'o', 'u', 'n')
  32. #define DFIL_MARKER MAKE_MARKER ('d', 'F', 'i', 'l')
  33. #define ESSN_MARKER MAKE_MARKER ('e', '*', '*', '')
  34. #define PSION_VERSION ((unsigned short) 3856)
  35. #define PSION_DATAOFFSET 0x20
  36. /*------------------------------------------------------------------------------
  37. ** Private static functions.
  38. */
  39. static int wve_read_header (SF_PRIVATE *psf) ;
  40. static int wve_write_header (SF_PRIVATE *psf, int calc_length) ;
  41. static int wve_close (SF_PRIVATE *psf) ;
  42. /*------------------------------------------------------------------------------
  43. ** Public function.
  44. */
  45. int
  46. wve_open (SF_PRIVATE *psf)
  47. { int error = 0 ;
  48. if (psf->is_pipe)
  49. return SFE_WVE_NO_PIPE ;
  50. if (psf->file.mode == SFM_READ || (psf->file.mode == SFM_RDWR && psf->filelength > 0))
  51. { if ((error = wve_read_header (psf)))
  52. return error ;
  53. } ;
  54. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  55. { if ((SF_CONTAINER (psf->sf.format)) != SF_FORMAT_WVE)
  56. return SFE_BAD_OPEN_FORMAT ;
  57. psf->endian = SF_ENDIAN_BIG ;
  58. if ((error = wve_write_header (psf, SF_FALSE)))
  59. return error ;
  60. psf->write_header = wve_write_header ;
  61. } ;
  62. psf->blockwidth = psf->bytewidth * psf->sf.channels ;
  63. psf->container_close = wve_close ;
  64. error = alaw_init (psf) ;
  65. return error ;
  66. } /* wve_open */
  67. /*------------------------------------------------------------------------------
  68. */
  69. static int
  70. wve_read_header (SF_PRIVATE *psf)
  71. { int marker ;
  72. unsigned short version, padding, repeats, trash ;
  73. unsigned datalength ;
  74. /* Set position to start of file to begin reading header. */
  75. psf_binheader_readf (psf, "pm", 0, &marker) ;
  76. if (marker != ALAW_MARKER)
  77. { psf_log_printf (psf, "Could not find '%M'n", ALAW_MARKER) ;
  78. return SFE_WVE_NOT_WVE ;
  79. } ;
  80. psf_binheader_readf (psf, "m", &marker) ;
  81. if (marker != SOUN_MARKER)
  82. { psf_log_printf (psf, "Could not find '%M'n", SOUN_MARKER) ;
  83. return SFE_WVE_NOT_WVE ;
  84. } ;
  85. psf_binheader_readf (psf, "m", &marker) ;
  86. if (marker != DFIL_MARKER)
  87. { psf_log_printf (psf, "Could not find '%M'n", DFIL_MARKER) ;
  88. return SFE_WVE_NOT_WVE ;
  89. } ;
  90. psf_binheader_readf (psf, "m", &marker) ;
  91. if (marker != ESSN_MARKER)
  92. { psf_log_printf (psf, "Could not find '%M'n", ESSN_MARKER) ;
  93. return SFE_WVE_NOT_WVE ;
  94. } ;
  95. psf_binheader_readf (psf, "E2", &version) ;
  96. psf_log_printf (psf, "Psion Palmtop Alaw (.wve)n"
  97. "  Sample Rate : 8000n"
  98. "  Channels    : 1n"
  99. "  Encoding    : A-lawn") ;
  100. if (version != PSION_VERSION)
  101. psf_log_printf (psf, "Psion version %d should be %dn", version, PSION_VERSION) ;
  102. psf_binheader_readf (psf, "E4", &datalength) ;
  103. psf->dataoffset = PSION_DATAOFFSET ;
  104. if (datalength != psf->filelength - psf->dataoffset)
  105. { psf->datalength = psf->filelength - psf->dataoffset ;
  106. psf_log_printf (psf, "Data length %d should be %Dn", datalength, psf->datalength) ;
  107. }
  108. else
  109. psf->datalength = datalength ;
  110. psf_binheader_readf (psf, "E22222", &padding, &repeats, &trash, &trash, &trash) ;
  111. psf->sf.format = SF_FORMAT_WVE | SF_FORMAT_ALAW ;
  112. psf->sf.samplerate = 8000 ;
  113. psf->sf.frames = psf->datalength ;
  114. psf->sf.channels = 1 ;
  115. return SFE_NO_ERROR ;
  116. } /* wve_read_header */
  117. /*------------------------------------------------------------------------------
  118. */
  119. static int
  120. wve_write_header (SF_PRIVATE *psf, int calc_length)
  121. { sf_count_t current ;
  122. unsigned datalen ;
  123. current = psf_ftell (psf) ;
  124. if (calc_length)
  125. { psf->filelength = psf_get_filelen (psf) ;
  126. psf->datalength = psf->filelength - psf->dataoffset ;
  127. if (psf->dataend)
  128. psf->datalength -= psf->filelength - psf->dataend ;
  129. psf->sf.frames = psf->datalength / (psf->bytewidth * psf->sf.channels) ;
  130. } ;
  131. /* Reset the current header length to zero. */
  132. psf->header [0] = 0 ;
  133. psf->headindex = 0 ;
  134. psf_fseek (psf, 0, SEEK_SET) ;
  135. /* Write header. */
  136. datalen = psf->datalength ;
  137. psf_binheader_writef (psf, "Emmmm", ALAW_MARKER, SOUN_MARKER, DFIL_MARKER, ESSN_MARKER) ;
  138. psf_binheader_writef (psf, "E2422222", PSION_VERSION, datalen, 0, 0, 0, 0, 0) ;
  139. psf_fwrite (psf->header, psf->headindex, 1, psf) ;
  140. if (psf->sf.channels != 1)
  141. return SFE_CHANNEL_COUNT ;
  142. if (psf->error)
  143. return psf->error ;
  144. psf->dataoffset = psf->headindex ;
  145. if (current > 0)
  146. psf_fseek (psf, current, SEEK_SET) ;
  147. return psf->error ;
  148. } /* wve_write_header */
  149. /*------------------------------------------------------------------------------
  150. */
  151. static int
  152. wve_close (SF_PRIVATE *psf)
  153. {
  154. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  155. { /*  Now we know for certain the length of the file we can re-write
  156. ** the header.
  157. */
  158. wve_write_header (psf, SF_TRUE) ;
  159. } ;
  160. return 0 ;
  161. } /* wve_close */