diff options
author | Edward Hervey <bilboed@bilboed.com> | 2008-10-08 09:29:00 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2008-10-08 09:29:00 +0000 |
commit | d0777d87fb887eb988db0c992eebbf6bde0be94d (patch) | |
tree | 434d522b7cf1aefee676c055f98116df05f08562 /sys | |
parent | a3dd91a4ae8c8bed8726179501331576d4c217c4 (diff) |
sys/ximage/gstximagesrc.c: Fix build for systems that don't have XDamage.
Original commit message from CVS:
* sys/ximage/gstximagesrc.c: (gst_ximage_src_stop):
Fix build for systems that don't have XDamage.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/ximage/gstximagesrc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/ximage/gstximagesrc.c b/sys/ximage/gstximagesrc.c index f6782b6b..5f02b958 100644 --- a/sys/ximage/gstximagesrc.c +++ b/sys/ximage/gstximagesrc.c @@ -222,15 +222,19 @@ gst_ximage_src_stop (GstBaseSrc * basesrc) { GstXImageSrc *src = GST_XIMAGE_SRC (basesrc); +#ifdef HAVE_XDAMAGE if (src->last_ximage) gst_buffer_unref (GST_BUFFER_CAST (src->last_ximage)); src->last_ximage = NULL; +#endif gst_ximage_src_clear_bufpool (src); +#ifdef HAVE_XFIXES if (src->cursor_image) XFree (src->cursor_image); src->cursor_image = NULL; +#endif if (src->xcontext) { g_mutex_lock (src->x_lock); |