mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
xoverlay: G_GUINTPTR_FORMAT is since 2.22
Don't rely on too new symbols, we only depend on 2.20.
This commit is contained in:
parent
b0ad8467dd
commit
cc49e8d715
1 changed files with 1 additions and 1 deletions
|
@ -438,7 +438,7 @@ gst_x_overlay_got_window_handle (GstXOverlay * overlay, guintptr handle)
|
||||||
g_return_if_fail (overlay != NULL);
|
g_return_if_fail (overlay != NULL);
|
||||||
g_return_if_fail (GST_IS_X_OVERLAY (overlay));
|
g_return_if_fail (GST_IS_X_OVERLAY (overlay));
|
||||||
|
|
||||||
GST_LOG_OBJECT (GST_OBJECT (overlay), "xwindow_id = %" G_GUINTPTR_FORMAT,
|
GST_LOG_OBJECT (GST_OBJECT (overlay), "xwindow_id = %p", (gpointer)
|
||||||
handle);
|
handle);
|
||||||
s = gst_structure_new ("have-xwindow-id",
|
s = gst_structure_new ("have-xwindow-id",
|
||||||
"xwindow-id", G_TYPE_ULONG, (unsigned long) handle,
|
"xwindow-id", G_TYPE_ULONG, (unsigned long) handle,
|
||||||
|
|
Loading…
Reference in a new issue