mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
bethsoftvideo: return meaningfull error codes
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
efb0e4e7af
commit
92b3d8bc53
@ -77,9 +77,9 @@ static int bethsoftvid_decode_frame(AVCodecContext *avctx,
|
||||
int code, ret;
|
||||
int yoffset;
|
||||
|
||||
if (avctx->reget_buffer(avctx, &vid->frame)) {
|
||||
if ((ret = avctx->reget_buffer(avctx, &vid->frame)) < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
|
||||
return -1;
|
||||
return ret;
|
||||
}
|
||||
wrap_to_next_line = vid->frame.linesize[0] - avctx->width;
|
||||
|
||||
@ -107,7 +107,7 @@ static int bethsoftvid_decode_frame(AVCodecContext *avctx,
|
||||
case VIDEO_YOFF_P_FRAME:
|
||||
yoffset = bytestream2_get_le16(&vid->g);
|
||||
if(yoffset >= avctx->height)
|
||||
return -1;
|
||||
return AVERROR_INVALIDDATA;
|
||||
dst += vid->frame.linesize[0] * yoffset;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user