Commit 360a3d89 authored by Michael Niedermayer's avatar Michael Niedermayer

h264_parser: print AU size on error.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d5c0e89e
......@@ -256,7 +256,7 @@ static inline int parse_nal_units(AVCodecParserContext *s,
buf += consumed;
}
/* didn't find a picture! */
av_log(h->s.avctx, AV_LOG_ERROR, "missing picture in access unit\n");
av_log(h->s.avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
return -1;
}
......
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