mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 23:22:54 +00:00
rtsp-media: Replace g_print() log line
https://bugzilla.gnome.org/show_bug.cgi?id=793838
This commit is contained in:
parent
ddb0d83844
commit
5f29712243
1 changed files with 2 additions and 1 deletions
|
@ -1921,7 +1921,8 @@ appsink_pad_probe (GstPad * pad, GstPadProbeInfo * info, gpointer user_data)
|
|||
if (gst_base_sink_query_latency (GST_BASE_SINK (data->appsink), NULL, NULL,
|
||||
&min, &max)) {
|
||||
g_object_set (data->appsrc, "min-latency", min, "max-latency", max, NULL);
|
||||
g_print ("setting latency to %lu %lu\n", min, max);
|
||||
GST_DEBUG ("setting latency to min %" GST_TIME_FORMAT " max %"
|
||||
GST_TIME_FORMAT, GST_TIME_ARGS (min), GST_TIME_ARGS (max));
|
||||
}
|
||||
} else if (GST_IS_QUERY (info->data)) {
|
||||
GstPad *srcpad = gst_element_get_static_pad (data->appsrc, "src");
|
||||
|
|
Loading…
Reference in a new issue