diff options
author | Max Kellermann <max@duempel.org> | 2008-09-29 15:49:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-29 15:49:29 +0200 |
commit | 226d52b36fe648215f367d352ad6e5eb38e116be (patch) | |
tree | a8dc789a0f3585b07da36f952a69ff554a1bf999 /src/inputPlugins/_flac_common.c | |
parent | 0352766dca3da5266e4714124fea119be82c4188 (diff) | |
download | mpd-226d52b36fe648215f367d352ad6e5eb38e116be.tar.gz mpd-226d52b36fe648215f367d352ad6e5eb38e116be.tar.xz mpd-226d52b36fe648215f367d352ad6e5eb38e116be.zip |
switch to C99 types, part II
Do full C99 integer type conversion in all modules which were not
touched by Eric's merged patch.
Diffstat (limited to 'src/inputPlugins/_flac_common.c')
-rw-r--r-- | src/inputPlugins/_flac_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/_flac_common.c b/src/inputPlugins/_flac_common.c index 550df77df..22d8774a3 100644 --- a/src/inputPlugins/_flac_common.c +++ b/src/inputPlugins/_flac_common.c @@ -161,9 +161,9 @@ void flac_metadata_common_cb(const FLAC__StreamMetadata * block, switch (block->type) { case FLAC__METADATA_TYPE_STREAMINFO: - data->audio_format.bits = (mpd_sint8)si->bits_per_sample; + data->audio_format.bits = (int8_t)si->bits_per_sample; data->audio_format.sampleRate = si->sample_rate; - data->audio_format.channels = (mpd_sint8)si->channels; + data->audio_format.channels = (int8_t)si->channels; data->total_time = ((float)si->total_samples) / (si->sample_rate); break; case FLAC__METADATA_TYPE_VORBIS_COMMENT: |