fix[h265d]: Fix log issue

Reported-by: https://github.com/rockchip-linux/mpp/issues/874

Signed-off-by: Hongjin Li <vic.hong@rock-chips.com>
Change-Id: Ic2b60decee850f15db9e5145b62dbc5a05f4c03a
This commit is contained in:
Hongjin Li
2025-07-23 09:35:19 +08:00
committed by Herman Chen
parent 2f5e6399c3
commit cc3194d336

View File

@@ -1820,7 +1820,7 @@ static RK_S32 parser_nal_units(HEVCContext *s)
for (i = 0; i < s->nb_nals; i++) {
ret = parser_nal_unit(s, s->nals[i].data, s->nals[i].size);
if (ret < 0) {
mpp_err("Error parsing NAL unit #%d,error ret = 0xd.\n", i, ret);
mpp_err("Error parsing NAL unit #%d,error ret = %d.\n", i, ret);
goto fail;
}
/* update slice data if slice_header_extension_present_flag is 1*/