wav_io.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:6k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin 
  2.    File: wav_io.c
  3.    Routines to handle wav (RIFF) headers
  4.    Redistribution and use in source and binary forms, with or without
  5.    modification, are permitted provided that the following conditions
  6.    are met:
  7.    
  8.    - Redistributions of source code must retain the above copyright
  9.    notice, this list of conditions and the following disclaimer.
  10.    
  11.    - Redistributions in binary form must reproduce the above copyright
  12.    notice, this list of conditions and the following disclaimer in the
  13.    documentation and/or other materials provided with the distribution.
  14.    
  15.    - Neither the name of the Xiph.org Foundation nor the names of its
  16.    contributors may be used to endorse or promote products derived from
  17.    this software without specific prior written permission.
  18.    
  19.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  23.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  24.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  25.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  26.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  27.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  28.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifdef HAVE_CONFIG_H
  32. # include "config.h"
  33. #endif
  34. #include <stdio.h>
  35. #include <string.h>
  36. #include "speex/speex_types.h"
  37. static spx_uint32_t le_int(spx_uint32_t i)
  38. {
  39.    spx_uint32_t ret=i;
  40. #ifdef WORDS_BIGENDIAN
  41.    ret =  i>>24;
  42.    ret += (i>>8)&0x0000ff00;
  43.    ret += (i<<8)&0x00ff0000;
  44.    ret += (i<<24);
  45. #endif
  46.    return ret;
  47. }
  48. unsigned short be_short(unsigned short s)
  49. {
  50.    unsigned short ret=s;
  51. #ifndef WORDS_BIGENDIAN
  52.    ret =  s>>8;
  53.    ret += s<<8;
  54. #endif
  55.    return ret;
  56. }
  57. unsigned short le_short(unsigned short s)
  58. {
  59.    unsigned short ret=s;
  60. #ifdef WORDS_BIGENDIAN
  61.    ret =  s>>8;
  62.    ret += s<<8;
  63. #endif
  64.    return ret;
  65. }
  66. int read_wav_header(FILE *file, int *rate, int *channels, int *format, int *size)
  67. {
  68.    char ch[5];
  69.    int itmp;
  70.    short stmp;
  71.    int bpersec;
  72.    short balign;
  73.    int skip_bytes;
  74.    int i;
  75.    ch[4]=0;
  76. #if 0
  77.    fread(ch, 1, 4, file);
  78.    if (strcmp(ch, "RIFF")!=0)
  79.    {
  80.       fseek(file, 0, SEEK_SET);
  81.       return 0;
  82.    }
  83.    fread(&itmp, 4, 1, file);
  84.    *size = le_int(itmp-36);
  85.    fread(ch, 1, 4, file);
  86.    if (strcmp(ch, "WAVE")!=0)
  87.    {
  88.       fprintf (stderr, "RIFF file is not a WAVE filen");
  89.       return -1;
  90.    }
  91. #endif
  92.    fread(ch, 1, 4, file);
  93.    while (strcmp(ch, "fmt ")!=0)
  94.    {
  95.       fread(&itmp, 4, 1, file);
  96.       itmp = le_int(itmp);
  97.       /*fprintf (stderr, "skip=%dn", itmp);*/
  98.       /*strange way of seeking, but it works even for pipes*/
  99.       for (i=0;i<itmp;i++)
  100.          fgetc(file);
  101.       /*fseek(file, itmp, SEEK_CUR);*/
  102.       fread(ch, 1, 4, file);
  103.       if (feof(file))
  104.       {
  105.          fprintf (stderr, "Corrupted WAVE file: no "fmt "n");
  106.          return -1;
  107.       }
  108.    }
  109.    /*if (strcmp(ch, "fmt ")!=0)
  110.    {
  111.       fprintf (stderr, "Corrupted WAVE file: no "fmt "n");
  112.       return -1;
  113.       }*/
  114.    
  115.    fread(&itmp, 4, 1, file);
  116.    itmp = le_int(itmp);
  117.    skip_bytes=itmp-16;
  118.    /*fprintf (stderr, "skip=%dn", skip_bytes);*/
  119.    
  120.    fread(&stmp, 2, 1, file);
  121.    stmp = le_short(stmp);
  122.    if (stmp!=1)
  123.    {
  124.       fprintf (stderr, "Only PCM encoding is supportedn");
  125.       return -1;
  126.    }
  127.    fread(&stmp, 2, 1, file);
  128.    stmp = le_short(stmp);
  129.    *channels = stmp;
  130.    
  131.    if (stmp>2)
  132.    {
  133.       fprintf (stderr, "Only mono and (intensity) stereo supportedn");
  134.       return -1;
  135.    }
  136.    fread(&itmp, 4, 1, file);
  137.    itmp = le_int(itmp);
  138.    *rate = itmp;
  139.    if (*rate != 8000 && *rate != 16000 && *rate != 11025 && *rate != 22050 && *rate != 32000 && *rate != 44100 && *rate != 48000)
  140.    {
  141.       fprintf (stderr, "Only 8 kHz (narrowband) and 16 kHz (wideband) supported (plus 11.025 kHz and 22.05 kHz, but your mileage may vary)n");
  142.       return -1;
  143.    }
  144.    fread(&itmp, 4, 1, file);
  145.    bpersec = le_int(itmp);
  146.    fread(&stmp, 2, 1, file);
  147.    balign = le_short(stmp);
  148.    fread(&stmp, 2, 1, file);
  149.    stmp = le_short(stmp);
  150.    if (stmp!=16 && stmp!=8)
  151.    {
  152.       fprintf (stderr, "Only 8/16-bit linear supportedn");
  153.       return -1;
  154.    }
  155.    *format=stmp;
  156.    if (bpersec!=*rate**channels*stmp/8)
  157.    {
  158.       fprintf (stderr, "Corrupted header: ByteRate mismatchn");
  159.       return -1;
  160.    }
  161.    if (balign!=*channels*stmp/8)
  162.    {
  163.       fprintf (stderr, "Corrupted header: BlockAlign mismatchn");
  164.       return -1;
  165.    }
  166.    
  167.    /*strange way of seeking, but it works even for pipes*/
  168.    if (skip_bytes>0)
  169.       for (i=0;i<skip_bytes;i++)
  170.          fgetc(file);
  171.    /*fseek(file, skip_bytes, SEEK_CUR);*/
  172.    fread(ch, 1, 4, file);
  173.    while (strcmp(ch, "data")!=0)
  174.    {
  175.       fread(&itmp, 4, 1, file);
  176.       itmp = le_int(itmp);
  177.       /*strange way of seeking, but it works even for pipes*/
  178.       for (i=0;i<itmp;i++)
  179.          fgetc(file);
  180.       /*fseek(file, itmp, SEEK_CUR);*/
  181.       fread(ch, 1, 4, file);
  182.       if (feof(file))
  183.       {
  184.          fprintf (stderr, "Corrupted WAVE file: no "data"n");
  185.          return -1;
  186.       }
  187.    }
  188.    /*Ignore this for now*/
  189.    fread(&itmp, 4, 1, file);
  190.    itmp = le_int(itmp);
  191.    *size=itmp;
  192.    return 1;
  193. }
  194. void write_wav_header(FILE *file, int rate, int channels, int format, int size)
  195. {
  196.    char ch[5];
  197.    int itmp;
  198.    short stmp;
  199.    ch[4]=0;
  200.    fprintf (file, "RIFF");
  201.    itmp = 0x7fffffff;
  202.    fwrite(&itmp, 4, 1, file);
  203.    fprintf (file, "WAVEfmt ");
  204.    itmp = le_int(16);
  205.    fwrite(&itmp, 4, 1, file);
  206.    stmp = le_short(1);
  207.    fwrite(&stmp, 2, 1, file);
  208.    stmp = le_short(channels);
  209.    fwrite(&stmp, 2, 1, file);
  210.    itmp = le_int(rate);
  211.    fwrite(&itmp, 4, 1, file);
  212.    itmp = le_int(rate*channels*2);
  213.    fwrite(&itmp, 4, 1, file);
  214.    stmp = le_short(2*channels);
  215.    fwrite(&stmp, 2, 1, file);
  216.    stmp = le_short(16);
  217.    fwrite(&stmp, 2, 1, file);
  218.    fprintf (file, "data");
  219.    itmp = le_int(0x7fffffff);
  220.    fwrite(&itmp, 4, 1, file);
  221. }