~ubuntu-branches/ubuntu/dapper/speex/dapper-security

« back to all changes in this revision

Viewing changes to src/wav_io.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2005-12-07 23:22:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051207232221-nme7vf9m182p7dpe
Tags: 1.1.11.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
*/
31
31
 
32
32
#ifndef WAV_IO_H
 
33
#define WAV_IO_H
33
34
 
34
35
#include <stdio.h>
 
36
#include "speex/speex_types.h"
 
37
 
 
38
unsigned short be_short(unsigned short s);
 
39
unsigned short le_short(unsigned short s);
 
40
spx_uint32_t le_int(spx_uint32_t i);
35
41
 
36
42
int read_wav_header(FILE *file, int *rate, int *channels, int *format, int *size);
37
43