Commit 64e19ba4 authored by Justin Ruggles's avatar Justin Ruggles

cin audio: remove unneeded cast from void*

parent 03381c12
......@@ -327,7 +327,7 @@ static int cinaudio_decode_frame(AVCodecContext *avctx,
int buf_size = avpkt->size;
CinAudioContext *cin = avctx->priv_data;
const uint8_t *src = buf;
int16_t *samples = (int16_t *)data;
int16_t *samples = data;
buf_size = FFMIN(buf_size, *data_size/2);
......
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