[xiph-commits] r10082 - trunk/speex/src

jm at svn.xiph.org jm at svn.xiph.org
Tue Sep 27 19:17:30 PDT 2005


Author: jm
Date: 2005-09-27 19:17:27 -0700 (Tue, 27 Sep 2005)
New Revision: 10082

Modified:
   trunk/speex/src/wav_io.h
Log:
Stupid error in prototype leading to corrupted wav header.


Modified: trunk/speex/src/wav_io.h
===================================================================
--- trunk/speex/src/wav_io.h	2005-09-27 20:26:16 UTC (rev 10081)
+++ trunk/speex/src/wav_io.h	2005-09-28 02:17:27 UTC (rev 10082)
@@ -33,10 +33,11 @@
 #define WAV_IO_H
 
 #include <stdio.h>
+#include "speex/speex_types.h"
 
 unsigned short be_short(unsigned short s);
 unsigned short le_short(unsigned short s);
-unsigned short le_int(unsigned int s);
+spx_uint32_t le_int(spx_uint32_t i);
 
 int read_wav_header(FILE *file, int *rate, int *channels, int *format, int *size);
 



More information about the commits mailing list