Browse Source

avcodec/vmdvideo: fix log error message

Fixes #8339
tags/n4.3
Paul B Mahol 6 years ago
parent
commit
ebff4bbd82
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vmdvideo.c

+ 1
- 1
libavcodec/vmdvideo.c View File

@@ -226,7 +226,7 @@ static int vmd_decode(VmdVideoContext *s, AVFrame *frame)
frame_y + frame_height > s->avctx->height) {
av_log(s->avctx, AV_LOG_ERROR,
"Invalid vertical range %d-%d\n",
frame_x, frame_width);
frame_y, frame_height);
return AVERROR_INVALIDDATA;
}



Loading…
Cancel
Save