mirror of
https://github.com/mpv-player/mpv
synced 2025-03-11 08:37:59 +00:00
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
|
||||
{
|
||||
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 */
|
||||
|
Loading…
Reference in New Issue
Block a user