Commit ef08d554 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '175e5063'

* commit '175e5063':
  hevc: Mention the missing SPS in the error message
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 4ba03e37 175e5063
......@@ -1034,7 +1034,7 @@ int ff_hevc_decode_nal_pps(HEVCContext *s)
goto err;
}
if (!s->sps_list[pps->sps_id]) {
av_log(s->avctx, AV_LOG_ERROR, "SPS does not exist \n");
av_log(s->avctx, AV_LOG_ERROR, "SPS %u does not exist.\n", pps->sps_id);
ret = AVERROR_INVALIDDATA;
goto err;
}
......
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