Skip to content
Snippets Groups Projects
Commit 64e19ba4 authored by Justin Ruggles's avatar Justin Ruggles
Browse files

cin audio: remove unneeded cast from void*

parent 03381c12
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment