diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-02-18 23:55:29 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-02-19 16:59:40 +0100 |
commit | 175e5063320f585118a5461f15dbacf2ce17e97d (patch) | |
tree | 363b4a749750f3a6828d905d0d93da09bb83a90e /libavcodec/hevc_ps.c | |
parent | 93632a70f9ac2cb2ebf0e69d21fdfaae68ff02fd (diff) | |
download | ffmpeg-175e5063320f585118a5461f15dbacf2ce17e97d.tar.gz |
hevc: Mention the missing SPS in the error message
Diffstat (limited to 'libavcodec/hevc_ps.c')
-rw-r--r-- | libavcodec/hevc_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc_ps.c b/libavcodec/hevc_ps.c index 0c1550e09c..c3aabe7cc7 100644 --- a/libavcodec/hevc_ps.c +++ b/libavcodec/hevc_ps.c @@ -1029,7 +1029,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; } |