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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2002-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 <fcntl.h>
  21. #include <string.h>
  22. #include <ctype.h>
  23. #include "sndfile.h"
  24. #include "sfendian.h"
  25. #include "common.h"
  26. /*------------------------------------------------------------------------------
  27. ** Macros to handle big/little endian issues.
  28. */
  29. #define PVF1_MARKER (MAKE_MARKER ('P', 'V', 'F', '1'))
  30. /*------------------------------------------------------------------------------
  31. ** Private static functions.
  32. */
  33. static int pvf_close (SF_PRIVATE *psf) ;
  34. static int pvf_write_header (SF_PRIVATE *psf, int calc_length) ;
  35. static int pvf_read_header (SF_PRIVATE *psf) ;
  36. /*------------------------------------------------------------------------------
  37. ** Public function.
  38. */
  39. int
  40. pvf_open (SF_PRIVATE *psf)
  41. { int subformat ;
  42. int error = 0 ;
  43. if (psf->file.mode == SFM_READ || (psf->file.mode == SFM_RDWR && psf->filelength > 0))
  44. { if ((error = pvf_read_header (psf)))
  45. return error ;
  46. } ;
  47. subformat = SF_CODEC (psf->sf.format) ;
  48. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  49. { if ((SF_CONTAINER (psf->sf.format)) != SF_FORMAT_PVF)
  50. return SFE_BAD_OPEN_FORMAT ;
  51. psf->endian = SF_ENDIAN_BIG ;
  52. if (pvf_write_header (psf, SF_FALSE))
  53. return psf->error ;
  54. psf->write_header = pvf_write_header ;
  55. } ;
  56. psf->container_close = pvf_close ;
  57. psf->blockwidth = psf->bytewidth * psf->sf.channels ;
  58. switch (subformat)
  59. { case SF_FORMAT_PCM_S8 : /* 8-bit linear PCM. */
  60. case SF_FORMAT_PCM_16 : /* 16-bit linear PCM. */
  61. case SF_FORMAT_PCM_32 : /* 32-bit linear PCM. */
  62. error = pcm_init (psf) ;
  63. break ;
  64. default : break ;
  65. } ;
  66. return error ;
  67. } /* pvf_open */
  68. /*------------------------------------------------------------------------------
  69. */
  70. static int
  71. pvf_close (SF_PRIVATE * UNUSED (psf))
  72. {
  73. return 0 ;
  74. } /* pvf_close */
  75. static int
  76. pvf_write_header (SF_PRIVATE *psf, int UNUSED (calc_length))
  77. { sf_count_t current ;
  78. if (psf->pipeoffset > 0)
  79. return 0 ;
  80. current = psf_ftell (psf) ;
  81. /* Reset the current header length to zero. */
  82. psf->header [0] = 0 ;
  83. psf->headindex = 0 ;
  84. if (psf->is_pipe == SF_FALSE)
  85. psf_fseek (psf, 0, SEEK_SET) ;
  86. snprintf ((char*) psf->header, sizeof (psf->header), "PVF1n%d %d %dn",
  87. psf->sf.channels, psf->sf.samplerate, psf->bytewidth * 8) ;
  88. psf->headindex = strlen ((char*) psf->header) ;
  89. /* Header construction complete so write it out. */
  90. psf_fwrite (psf->header, psf->headindex, 1, psf) ;
  91. if (psf->error)
  92. return psf->error ;
  93. psf->dataoffset = psf->headindex ;
  94. if (current > 0)
  95. psf_fseek (psf, current, SEEK_SET) ;
  96. return psf->error ;
  97. } /* pvf_write_header */
  98. static int
  99. pvf_read_header (SF_PRIVATE *psf)
  100. { char buffer [32] ;
  101. int marker, channels, samplerate, bitwidth ;
  102. psf_binheader_readf (psf, "pmj", 0, &marker, 1) ;
  103. psf_log_printf (psf, "%Mn", marker) ;
  104. if (marker != PVF1_MARKER)
  105. return SFE_PVF_NO_PVF1 ;
  106. /* Grab characters up until a newline which is replaced by an EOS. */
  107. psf_binheader_readf (psf, "G", buffer, sizeof (buffer)) ;
  108. if (sscanf (buffer, "%d %d %d", &channels, &samplerate, &bitwidth) != 3)
  109. return SFE_PVF_BAD_HEADER ;
  110. psf_log_printf (psf, " Channels    : %dn Sample rate : %dn Bit width   : %dn",
  111. channels, samplerate, bitwidth) ;
  112. psf->sf.channels = channels ;
  113. psf->sf.samplerate = samplerate ;
  114. switch (bitwidth)
  115. { case 8 :
  116. psf->sf.format = SF_FORMAT_PVF | SF_FORMAT_PCM_S8 ;
  117. psf->bytewidth = 1 ;
  118. break ;
  119. case 16 :
  120. psf->sf.format = SF_FORMAT_PVF | SF_FORMAT_PCM_16 ;
  121. psf->bytewidth = 2 ;
  122. break ;
  123. case 32 :
  124. psf->sf.format = SF_FORMAT_PVF | SF_FORMAT_PCM_32 ;
  125. psf->bytewidth = 4 ;
  126. break ;
  127. default :
  128. return SFE_PVF_BAD_BITWIDTH ;
  129. } ;
  130. psf->dataoffset = psf_ftell (psf) ;
  131. psf_log_printf (psf, " Data Offset : %Dn", psf->dataoffset) ;
  132. psf->endian = SF_ENDIAN_BIG ;
  133. psf->datalength = psf->filelength - psf->dataoffset ;
  134. psf->blockwidth = psf->sf.channels * psf->bytewidth ;
  135. if (! psf->sf.frames && psf->blockwidth)
  136. psf->sf.frames = (psf->filelength - psf->dataoffset) / psf->blockwidth ;
  137. return 0 ;
  138. } /* pvf_read_header */