From 1414a3de4c67a1295a2149554c1759bc213d901e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 12 Nov 2008 07:02:06 +0100 Subject: mpc: declare buffer as int32_t[] The buffer is always casted to int32_t* anyway; declare it as int32_t array, and remove the cast. --- src/decoder/mpc_plugin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/decoder') diff --git a/src/decoder/mpc_plugin.c b/src/decoder/mpc_plugin.c index 2496f51a9..c4142555b 100644 --- a/src/decoder/mpc_plugin.c +++ b/src/decoder/mpc_plugin.c @@ -110,10 +110,10 @@ mpc_decode(struct decoder *mpd_decoder, struct input_stream *inStream) long ret; #define MPC_CHUNK_SIZE 4096 - char chunk[MPC_CHUNK_SIZE]; + int32_t chunk[MPC_CHUNK_SIZE / sizeof(int32_t)]; int chunkpos = 0; long bitRate = 0; - int32_t *dest = (int32_t *) chunk; + int32_t *dest = chunk; unsigned long samplePos = 0; mpc_uint32_t vbrUpdateAcc; mpc_uint32_t vbrUpdateBits; @@ -166,7 +166,7 @@ mpc_decode(struct decoder *mpd_decoder, struct input_stream *inStream) samplePos = decoder_seek_where(mpd_decoder) * audio_format.sample_rate; if (mpc_decoder_seek_sample(&decoder, samplePos)) { - dest = (int32_t *)chunk; + dest = chunk; chunkpos = 0; decoder_command_finished(mpd_decoder); } else @@ -203,7 +203,7 @@ mpc_decode(struct decoder *mpd_decoder, struct input_stream *inStream) bitRate, replayGainInfo); chunkpos = 0; - dest = (int32_t *)chunk; + dest = chunk; if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_STOP) break; } -- cgit v1.2.3