mirror of https://github.com/mpv-player/mpv
64bit types fix by a unkown mandrake 64bit expert
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11271 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
af4cf651f1
commit
ffb529e4eb
|
@ -32,19 +32,19 @@ int ao_pcm_waveheader = 1;
|
||||||
|
|
||||||
struct WaveHeader
|
struct WaveHeader
|
||||||
{
|
{
|
||||||
unsigned long riff;
|
uint32_t riff;
|
||||||
unsigned long file_length;
|
uint32_t file_length;
|
||||||
unsigned long wave;
|
uint32_t wave;
|
||||||
unsigned long fmt;
|
uint32_t fmt;
|
||||||
unsigned long fmt_length;
|
uint32_t fmt_length;
|
||||||
short fmt_tag;
|
uint16_t fmt_tag;
|
||||||
short channels;
|
uint16_t channels;
|
||||||
unsigned long sample_rate;
|
uint32_t sample_rate;
|
||||||
unsigned long bytes_per_second;
|
uint32_t bytes_per_second;
|
||||||
short block_align;
|
uint16_t block_align;
|
||||||
short bits;
|
uint16_t bits;
|
||||||
unsigned long data;
|
uint32_t data;
|
||||||
unsigned long data_length;
|
uint32_t data_length;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* init with default values */
|
/* init with default values */
|
||||||
|
|
Loading…
Reference in New Issue