mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-26 21:10:34 +00:00
lavc/utils: print error message on get_buffer related errors
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f91b7d8030
commit
f339ebc1ff
@ -440,8 +440,10 @@ static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(av_image_check_size(w, h, 0, s) || s->pix_fmt<0)
|
||||
if(av_image_check_size(w, h, 0, s) || s->pix_fmt<0) {
|
||||
av_log(s, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (!avci->buffer) {
|
||||
avci->buffer = av_mallocz((INTERNAL_BUFFER_SIZE+1) *
|
||||
|
Loading…
Reference in New Issue
Block a user