summaryrefslogtreecommitdiff
path: root/libavcodec/hevc_ps.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-02-18 23:55:29 +0100
committerLuca Barbato <lu_zero@gentoo.org>2014-02-19 16:59:40 +0100
commit175e5063320f585118a5461f15dbacf2ce17e97d (patch)
tree363b4a749750f3a6828d905d0d93da09bb83a90e /libavcodec/hevc_ps.c
parent93632a70f9ac2cb2ebf0e69d21fdfaae68ff02fd (diff)
hevc: Mention the missing SPS in the error message
Diffstat (limited to 'libavcodec/hevc_ps.c')
-rw-r--r--libavcodec/hevc_ps.c2
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;
}