Commit 7b95bc58 authored by Michael Niedermayer's avatar Michael Niedermayer

print more correct error messges

Originally committed as revision 6194 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3c573748
...@@ -2622,9 +2622,11 @@ retry: ...@@ -2622,9 +2622,11 @@ retry:
break; break;
} }
if(s->frame_size<=0 || s->frame_size < buf_size){ if(s->frame_size<=0 || s->frame_size > buf_size){
av_log(avctx, AV_LOG_ERROR, "incomplete frame\n"); av_log(avctx, AV_LOG_ERROR, "incomplete frame\n");
return -1; return -1;
}else if(s->frame_size < buf_size){
av_log(avctx, AV_LOG_ERROR, "incorrect frame size\n");
} }
out_size = mp_decode_frame(s, out_samples, buf, buf_size); out_size = mp_decode_frame(s, out_samples, buf, buf_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