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
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue