mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 21:45:10 +00:00
handle 0-length buffers
Originally committed as revision 2732 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c89c1d2542
commit
df72754d03
@ -444,6 +444,9 @@ static int adpcm_decode_frame(AVCodecContext *avctx,
|
||||
int decode_top_nibble_next = 0;
|
||||
int diff_channel;
|
||||
|
||||
if (!buf_size)
|
||||
return 0;
|
||||
|
||||
samples = data;
|
||||
src = buf;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user