From 28fe3f7888bcbad7da159e5c3a2fbc2ac7e39151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 16 Oct 2012 16:23:02 +0200 Subject: [PATCH] eglglessink: Also commit missing changes to the header file --- ext/eglgles/gsteglglessink.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/ext/eglgles/gsteglglessink.h b/ext/eglgles/gsteglglessink.h index acc6e26110..231a57c92b 100644 --- a/ext/eglgles/gsteglglessink.h +++ b/ext/eglgles/gsteglglessink.h @@ -46,6 +46,8 @@ #define __GST_EGLGLESSINK_H__ #include +#include +#include #include #include @@ -228,13 +230,12 @@ struct _GstEglGlesSink GstVideoFormat format; GstVideoRectangle display_region; GstCaps *sinkcaps; - GstCaps *current_caps; + GstCaps *current_caps, *configured_caps; GstEglGlesImageFmt *selected_fmt; GstEglGlesSinkRenderingPath rendering_path; - GstEglGlesRenderContext *eglglesctx; + GstEglGlesRenderContext eglglesctx; - GMutex *flow_lock; GList *supported_fmts; /* Runtime flags */ @@ -245,6 +246,13 @@ struct _GstEglGlesSink gboolean have_texture; gboolean egl_started; + GThread *thread; + gboolean thread_running; + GstDataQueue *queue; + GCond *render_cond; + GMutex *render_lock; + GstFlowReturn last_flow; + /* Properties */ gboolean create_window; gboolean force_rendering_slow;