videodecoder: Bump log level of marking a sync point
authorStian Selnes <stian@pexip.com>
Fri, 18 Aug 2017 15:01:02 +0000 (17:01 +0200)
committerMathieu Duponchelle <mathieu@centricular.com>
Thu, 10 Sep 2020 18:31:10 +0000 (20:31 +0200)
Sync points are often important when debugging and deserves DEBUG
level.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/730>

gst-libs/gst/video/gstvideodecoder.c

index 193a6b8..558fde3 100644 (file)
@@ -2327,7 +2327,7 @@ gst_video_decoder_chain_forward (GstVideoDecoder * decoder,
     gboolean was_keyframe = FALSE;
     if (!GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_FLAG_DELTA_UNIT)) {
       was_keyframe = TRUE;
-      GST_LOG_OBJECT (decoder, "Marking current_frame as sync point");
+      GST_DEBUG_OBJECT (decoder, "Marking current_frame as sync point");
       GST_VIDEO_CODEC_FRAME_SET_SYNC_POINT (priv->current_frame);
     }
 
@@ -3595,12 +3595,12 @@ gst_video_decoder_have_frame (GstVideoDecoder * decoder)
       GST_TIME_ARGS (duration));
 
   if (!GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DELTA_UNIT)) {
-    GST_LOG_OBJECT (decoder, "Marking as sync point");
+    GST_DEBUG_OBJECT (decoder, "Marking as sync point");
     GST_VIDEO_CODEC_FRAME_SET_SYNC_POINT (priv->current_frame);
   }
 
   if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_CORRUPTED)) {
-    GST_LOG_OBJECT (decoder, "Marking as corrupted");
+    GST_DEBUG_OBJECT (decoder, "Marking as corrupted");
     GST_VIDEO_CODEC_FRAME_FLAG_SET (priv->current_frame,
         GST_VIDEO_CODEC_FRAME_FLAG_CORRUPTED);
   }