Commit 9c3c8d2c authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit 'b2417ee6'

* commit 'b2417ee6':
  dxv: Improve error message
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents b4ea8a73 b2417ee6
......@@ -412,7 +412,8 @@ static int dxv_decode(AVCodecContext *avctx, void *data,
msgcomp, msgtext, version_major, version_minor);
if (size != bytestream2_get_bytes_left(gbc)) {
av_log(avctx, AV_LOG_ERROR, "Incomplete or invalid file (%u > %u)\n.",
av_log(avctx, AV_LOG_ERROR,
"Incomplete or invalid file (header %d, left %d).\n",
size, bytestream2_get_bytes_left(gbc));
return AVERROR_INVALIDDATA;
}
......
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