diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-02-19 22:10:00 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-19 22:10:27 +0100 |
commit | ef08d554e0cf37fd92a1413dd2d32ce517fedbed (patch) | |
tree | 228fba535a9ed3b31d7263ebd452487724b3cfe2 | |
parent | 4ba03e37fd169ca444bc7c5ca330363584afff1e (diff) | |
parent | 175e5063320f585118a5461f15dbacf2ce17e97d (diff) | |
download | ffmpeg-ef08d554e0cf37fd92a1413dd2d32ce517fedbed.tar.gz |
Merge commit '175e5063320f585118a5461f15dbacf2ce17e97d'
* commit '175e5063320f585118a5461f15dbacf2ce17e97d':
hevc: Mention the missing SPS in the error message
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-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 a4c74c9836..97bd87e4af 100644 --- a/libavcodec/hevc_ps.c +++ b/libavcodec/hevc_ps.c @@ -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; } |