Commit f962c103 authored by Avuton Olrich's avatar Avuton Olrich

- Fix incompatible type warnings

git-svn-id: https://svn.musicpd.org/mpd/trunk@3169 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent f814dd22
......@@ -206,7 +206,7 @@ float getAacFloatTotalTime(char * file) {
size_t fileread, tagsize;
faacDecHandle decoder;
faacDecConfigurationPtr config;
unsigned long sampleRate;
unsigned int sampleRate;
unsigned char channels;
InputStream inStream;
size_t bread;
......@@ -257,7 +257,7 @@ int aac_decode(OutputBuffer * cb, DecoderControl * dc, char * path) {
faacDecFrameInfo frameInfo;
faacDecConfigurationPtr config;
size_t bread;
unsigned long sampleRate;
unsigned int sampleRate;
unsigned char channels;
int eof = 0;
unsigned int sampleCount;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment