diff options
Diffstat (limited to 'sys/osxvideo/osxvideosink.h')
-rw-r--r-- | sys/osxvideo/osxvideosink.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sys/osxvideo/osxvideosink.h b/sys/osxvideo/osxvideosink.h index b2577512..f03d1bde 100644 --- a/sys/osxvideo/osxvideosink.h +++ b/sys/osxvideo/osxvideosink.h @@ -52,24 +52,6 @@ typedef struct _GstOSXVideoSinkClass GstOSXVideoSinkClass; #define GST_TYPE_OSXVIDEOBUFFER (gst_osxvideobuffer_get_type()) -#define GST_IS_OSXVIDEOBUFFER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_OSXVIDEOBUFFER)) -#define GST_OSXVIDEOBUFFER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_OSXVIDEOBUFFER, GstOSXVideoBuffer)) - -typedef struct _GstOSXVideoBuffer GstOSXVideoBuffer; - -struct _GstOSXVideoBuffer { - GstBuffer buffer; /* We extend GstBuffer */ - - CVOpenGLTextureRef texture; - - gint width; - gint height; - - gboolean locked; - - GstOSXVideoSink *osxvideosink; -}; - /* OSXWindow stuff */ struct _GstOSXWindow { gint width, height; @@ -82,9 +64,6 @@ struct _GstOSXVideoSink { /* Our element stuff */ GstVideoSink videosink; - GMutex *pool_lock; - GSList *buffer_pool; - GstOSXWindow *osxwindow; gint fps_n; |