mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-27 09:43:34 +00:00
smackaud: use uint8_t* for 8-bit output buffer type
This matches the output sample format and the range of the output values.
This commit is contained in:
parent
375ca0aca8
commit
818a3bdedf
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user