From 227456d24086e7d6abe86dc9e025246606fe420d Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Fri, 13 Nov 2020 23:18:20 +0900 Subject: [PATCH] codecs: h264decoder: Remove DPB size related spammy debug message It's not informative at all if SPS wasn't updated. Also we are printing DPB size related debug message in another place already. Part-of: --- gst-libs/gst/codecs/gsth264decoder.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst-libs/gst/codecs/gsth264decoder.c b/gst-libs/gst/codecs/gsth264decoder.c index d4ad5cbb2d..3a9588dc15 100644 --- a/gst-libs/gst/codecs/gsth264decoder.c +++ b/gst-libs/gst/codecs/gsth264decoder.c @@ -1806,8 +1806,6 @@ gst_h264_decoder_process_sps (GstH264Decoder * self, GstH264SPS * sps) gst_h264_dpb_set_max_num_pics (priv->dpb, max_dpb_size); } - GST_DEBUG_OBJECT (self, "Set DPB max size %d", max_dpb_size); - return gst_h264_decoder_update_max_num_reorder_frames (self, sps); }