Commit 818a3bde authored by Justin Ruggles's avatar Justin Ruggles

smackaud: use uint8_t* for 8-bit output buffer type

This matches the output sample format and the range of the output values.
parent 375ca0ac
......@@ -580,7 +580,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
HuffContext h[4];
VLC vlc[4];
int16_t *samples = data;
int8_t *samples8 = data;
uint8_t *samples8 = data;
int val;
int i, res;
int unp_size;
......
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