From cc3194d3360ebcb095a457cad480aad358934f1e Mon Sep 17 00:00:00 2001 From: Hongjin Li Date: Wed, 23 Jul 2025 09:35:19 +0800 Subject: [PATCH] fix[h265d]: Fix log issue Reported-by: https://github.com/rockchip-linux/mpp/issues/874 Signed-off-by: Hongjin Li Change-Id: Ic2b60decee850f15db9e5145b62dbc5a05f4c03a --- mpp/codec/dec/h265/h265d_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpp/codec/dec/h265/h265d_parser.c b/mpp/codec/dec/h265/h265d_parser.c index a44c0106..671de7c7 100644 --- a/mpp/codec/dec/h265/h265d_parser.c +++ b/mpp/codec/dec/h265/h265d_parser.c @@ -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*/