codecs: correct the print log for h265 picture getting by poc

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5789>
This commit is contained in:
He Junyan 2023-12-09 20:05:31 +08:00 committed by GStreamer Marge Bot
parent 30c968f0ee
commit fac9fb2174

View file

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