summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/xoverlay/xoverlay.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2004-03-12 21:43:25 +0000
committerBenjamin Otte <otte@gnome.org>2004-03-12 21:43:25 +0000
commit10575d1a7e4abd08d6b7d628c742ce2cb6d3d213 (patch)
tree24894a2a310ac2ecdb8d463e47dbcf466ede4292 /gst-libs/gst/xoverlay/xoverlay.c
parentb8c127e159eee26c2ad61b03455ccaf3ce781ed2 (diff)
downloadgst-plugins-bad-10575d1a7e4abd08d6b7d628c742ce2cb6d3d213.tar.gz
gst-plugins-bad-10575d1a7e4abd08d6b7d628c742ce2cb6d3d213.tar.bz2
gst-plugins-bad-10575d1a7e4abd08d6b7d628c742ce2cb6d3d213.zip
gst-libs/gst/xoverlay/xoverlay.*: replace XID with unsigned long to get rid of the xlibs dependency in
Original commit message from CVS: * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id), (gst_x_overlay_got_xwindow_id): * gst-libs/gst/xoverlay/xoverlay.h: replace XID with unsigned long to get rid of the xlibs dependency in XOverlay (fixes #137004)
Diffstat (limited to 'gst-libs/gst/xoverlay/xoverlay.c')
-rw-r--r--gst-libs/gst/xoverlay/xoverlay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/xoverlay/xoverlay.c b/gst-libs/gst/xoverlay/xoverlay.c
index ed07c456..66af8d62 100644
--- a/gst-libs/gst/xoverlay/xoverlay.c
+++ b/gst-libs/gst/xoverlay/xoverlay.c
@@ -107,7 +107,7 @@ gst_x_overlay_base_init (gpointer g_class)
* stop using that window and create an internal one.
*/
void
-gst_x_overlay_set_xwindow_id (GstXOverlay *overlay, XID xwindow_id)
+gst_x_overlay_set_xwindow_id (GstXOverlay *overlay, gulong xwindow_id)
{
GstXOverlayClass *klass = GST_X_OVERLAY_GET_CLASS (overlay);
@@ -126,7 +126,7 @@ gst_x_overlay_set_xwindow_id (GstXOverlay *overlay, XID xwindow_id)
* This function should be used by video overlay developpers.
*/
void
-gst_x_overlay_got_xwindow_id (GstXOverlay *overlay, XID xwindow_id)
+gst_x_overlay_got_xwindow_id (GstXOverlay *overlay, gulong xwindow_id)
{
g_return_if_fail (overlay != NULL);
g_return_if_fail (GST_IS_X_OVERLAY (overlay));