[Mplayer-cvslog] CVS: main/libao2 ao_pcm.c,1.18,1.19
Attila Kinali CVS
attila at mplayerhq.hu
Sun Oct 26 14:44:00 CET 2003
Update of /cvsroot/mplayer/main/libao2
In directory mail:/var/tmp.root/cvs-serv11517
Modified Files:
ao_pcm.c
Log Message:
64bit types fix by a unkown mandrake 64bit expert
Index: ao_pcm.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/ao_pcm.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ao_pcm.c 5 May 2003 23:43:30 -0000 1.18
+++ ao_pcm.c 26 Oct 2003 13:43:30 -0000 1.19
@@ -32,19 +32,19 @@
struct WaveHeader
{
- unsigned long riff;
- unsigned long file_length;
- unsigned long wave;
- unsigned long fmt;
- unsigned long fmt_length;
- short fmt_tag;
- short channels;
- unsigned long sample_rate;
- unsigned long bytes_per_second;
- short block_align;
- short bits;
- unsigned long data;
- unsigned long data_length;
+ uint32_t riff;
+ uint32_t file_length;
+ uint32_t wave;
+ uint32_t fmt;
+ uint32_t fmt_length;
+ uint16_t fmt_tag;
+ uint16_t channels;
+ uint32_t sample_rate;
+ uint32_t bytes_per_second;
+ uint16_t block_align;
+ uint16_t bits;
+ uint32_t data;
+ uint32_t data_length;
};
/* init with default values */
More information about the MPlayer-cvslog
mailing list