mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 13:55:41 +00:00
camerabin: don't log NULL caps, also downgrade to DEBUG as it is very verbose
This debug log entry was also not ment to be used in the failure case.
This commit is contained in:
parent
2cc409861c
commit
b0533bfdff
1 changed files with 2 additions and 1 deletions
|
@ -1162,8 +1162,8 @@ done:
|
|||
if (camera->allowed_caps) {
|
||||
caps = gst_caps_copy (camera->allowed_caps);
|
||||
}
|
||||
GST_DEBUG_OBJECT (camera, "allowed caps:%" GST_PTR_FORMAT, caps);
|
||||
failed:
|
||||
GST_INFO_OBJECT (camera, "allowed caps:%" GST_PTR_FORMAT, caps);
|
||||
return caps;
|
||||
}
|
||||
|
||||
|
@ -1412,6 +1412,7 @@ gst_camerabin_set_capsfilter_caps (GstCameraBin * camera, GstCaps * new_caps)
|
|||
if (camera->src_zoom_filter)
|
||||
g_object_set (G_OBJECT (camera->src_zoom_filter), "caps", new_caps, NULL);
|
||||
gst_camerabin_update_aspect_filter (camera, new_caps);
|
||||
GST_INFO_OBJECT (camera, "udpated");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue