Browse Source

hevc: Mention the missing SPS in the error message

tags/n2.2-rc1
Luca Barbato 12 years ago
parent
commit
175e506332
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/hevc_ps.c

+ 1
- 1
libavcodec/hevc_ps.c View File

@@ -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;
}


Loading…
Cancel
Save