This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
smackaud: use uint8_t* for 8-bit output buffer type
This matches the output sample format and the range of the output values.
tags/n0.9
Justin Ruggles
14 years ago
parent
375ca0aca8
commit
818a3bdedf
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/smacker.c
+ 1
- 1
libavcodec/smacker.c
View File
@@ -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;
u
int8_t *samples8 = data;
int val;
int i, res;
int unp_size;
Write
Preview
Loading…
Cancel
Save