mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/h264_sei: make SEI type truncated message more informative
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
fcd19d6c8d
commit
6565b1ad97
|
@ -285,8 +285,8 @@ int ff_h264_decode_sei(H264Context *h)
|
|||
av_log(h->avctx, AV_LOG_DEBUG, "SEI %d len:%d\n", type, size);
|
||||
|
||||
if (size > get_bits_left(&h->gb) / 8) {
|
||||
av_log(h->avctx, AV_LOG_ERROR, "SEI type %d truncated at %d\n",
|
||||
type, get_bits_left(&h->gb));
|
||||
av_log(h->avctx, AV_LOG_ERROR, "SEI type %d size %d truncated at %d\n",
|
||||
type, 8*size, get_bits_left(&h->gb));
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
next = get_bits_count(&h->gb) + 8 * size;
|
||||
|
|
Loading…
Reference in New Issue