From fac9fb2174526c6d7233aad95fbe1e7428375098 Mon Sep 17 00:00:00 2001 From: He Junyan Date: Sat, 9 Dec 2023 20:05:31 +0800 Subject: [PATCH] codecs: correct the print log for h265 picture getting by poc Part-of: --- .../gst-plugins-bad/gst-libs/gst/codecs/gsth265picture.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth265picture.c b/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth265picture.c index c39d88264c..37f06ddb90 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth265picture.c +++ b/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth265picture.c @@ -280,7 +280,7 @@ gst_h265_dpb_get_ref_by_poc (GstH265Dpb * dpb, gint poc) return gst_h265_picture_ref (picture); } - GST_DEBUG ("No short term reference picture for %d", poc); + GST_DEBUG ("No reference picture for poc %d", poc); return NULL; } @@ -309,7 +309,7 @@ gst_h265_dpb_get_ref_by_poc_lsb (GstH265Dpb * dpb, gint poc_lsb) return gst_h265_picture_ref (picture); } - GST_DEBUG ("No short term reference picture for %d", poc_lsb); + GST_DEBUG ("No reference picture for poc lsb %d", poc_lsb); return NULL; } @@ -338,7 +338,7 @@ gst_h265_dpb_get_short_ref_by_poc (GstH265Dpb * dpb, gint poc) return gst_h265_picture_ref (picture); } - GST_DEBUG ("No short term reference picture for %d", poc); + GST_DEBUG ("No short term reference picture for poc %d", poc); return NULL; } @@ -367,7 +367,7 @@ gst_h265_dpb_get_long_ref_by_poc (GstH265Dpb * dpb, gint poc) return gst_h265_picture_ref (picture); } - GST_DEBUG ("No long term reference picture for %d", poc); + GST_DEBUG ("No long term reference picture for poc %d", poc); return NULL; }