shorten "get_playback_info" data shown with -d 1 debug option

This commit is contained in:
F. Duncanh
2025-11-15 13:27:46 -05:00
parent 7280bc4aab
commit c33b4e10f1
4 changed files with 14 additions and 9 deletions

View File

@@ -1047,8 +1047,8 @@ bool video_get_playback_info(double *duration, double *position, float *rate, bo
}
}
logger_log(logger, LOGGER_DEBUG, "********* video_get_playback_info: position %" GST_TIME_FORMAT " duration %" GST_TIME_FORMAT " %s *********",
GST_TIME_ARGS (pos), GST_TIME_ARGS (hls_duration), gst_element_state_get_name(state));
logger_log(logger, LOGGER_DEBUG, "******* video_get_playback_info: position %" GST_TIME_FORMAT " duration %" GST_TIME_FORMAT " %s rate %f *****",
GST_TIME_ARGS (pos), GST_TIME_ARGS (hls_duration), gst_element_state_get_name(state), *rate);
return true;
}