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: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1806>
This commit is contained in:
Seungha Yang 2020-11-13 23:18:20 +09:00 committed by GStreamer Merge Bot
parent c969239c7c
commit 227456d240

View file

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