improve error logging message

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28449 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
David McPaul 2008-11-01 22:58:43 +00:00
parent 7670d4094c
commit dfa31d6f48

View File

@ -2425,7 +2425,7 @@ retry:
av_log(avctx, AV_LOG_ERROR, "incomplete frame\n");
return -1;
}else if(s->frame_size < buf_size){
av_log(avctx, AV_LOG_ERROR, "incorrect frame size\n");
av_log(avctx, AV_LOG_ERROR, "incorrect frame size expected %d found %d\n",s->frame_size,buf_size);
buf_size= s->frame_size;
}