diff options
author | Laszlo Ashin <kodest@gmail.com> | 2008-11-15 11:54:22 +0100 |
---|---|---|
committer | Laszlo Ashin <kodest@gmail.com> | 2008-11-15 11:54:22 +0100 |
commit | c368a2f91cd90083b4e4e1426182cf7b7a2a6d21 (patch) | |
tree | 88a01c4744929c2505337834c74c3ffd45ad83ac /src/decoder/aac_plugin.c | |
parent | 00da7db1e31f296596b64cbbdfacb32182653100 (diff) | |
download | mpd-c368a2f91cd90083b4e4e1426182cf7b7a2a6d21.tar.gz mpd-c368a2f91cd90083b4e4e1426182cf7b7a2a6d21.tar.xz mpd-c368a2f91cd90083b4e4e1426182cf7b7a2a6d21.zip |
aac: fix compiler warnings on amd64
Diffstat (limited to 'src/decoder/aac_plugin.c')
-rw-r--r-- | src/decoder/aac_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/aac_plugin.c b/src/decoder/aac_plugin.c index de044ae12..76f5480e7 100644 --- a/src/decoder/aac_plugin.c +++ b/src/decoder/aac_plugin.c @@ -251,7 +251,7 @@ static float getAacFloatTotalTime(const char *file) float length; faacDecHandle decoder; faacDecConfigurationPtr config; - uint32_t sample_rate; + unsigned long sample_rate; unsigned char channels; struct input_stream inStream; long bread; @@ -307,7 +307,7 @@ aac_stream_decode(struct decoder *mpd_decoder, struct input_stream *inStream) faacDecFrameInfo frameInfo; faacDecConfigurationPtr config; long bread; - uint32_t sample_rate; + unsigned long sample_rate; unsigned char channels; unsigned int sampleCount; char *sampleBuffer; |