waylandsink: remove unused variables

This commit is contained in:
George Kiagiadakis 2014-02-12 14:15:52 +01:00
parent e600a323b7
commit 4208ae6203
4 changed files with 0 additions and 8 deletions

View file

@ -227,9 +227,6 @@ destroy_window (struct window *window)
if (window->callback)
wl_callback_destroy (window->callback);
if (window->buffer)
wl_buffer_destroy (window->buffer);
if (window->shell_surface)
wl_shell_surface_destroy (window->shell_surface);

View file

@ -64,7 +64,6 @@ struct window
int width, height;
struct wl_surface *surface;
struct wl_shell_surface *shell_surface;
struct wl_buffer *buffer;
struct wl_callback *callback;
guint redraw_pending :1;

View file

@ -102,8 +102,6 @@ wayland_buffer_pool_set_config (GstBufferPool * pool, GstStructure * config)
/*Fixme: Enable metadata checking handling based on the config of pool */
wpool->caps = gst_caps_ref (caps);
wpool->info = info;
wpool->width = info.width;
wpool->height = info.height;

View file

@ -62,8 +62,6 @@ struct _GstWaylandBufferPool
GstWaylandSink *sink;
/*Fixme: keep all these in GstWaylandBufferPoolPrivate*/
GstCaps *caps;
GstVideoInfo info;
guint width;
guint height;
};