1 /* GStreamer GdkPixbuf sink 2 * Copyright (C) 2006-2008 Tim-Philipp Müller <tim centricular net> 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Library General Public 6 * License as published by the Free Software Foundation; either 7 * version 2 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Library General Public License for more details. 13 * 14 * You should have received a copy of the GNU Library General Public 15 * License along with this library; if not, write to the 16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 17 * Boston, MA 02110-1301, USA. 18 */ 19 20 #ifndef GST_GDK_PIXBUF_SINK_H 21 #define GST_GDK_PIXBUF_SINK_H 22 23 #include <gst/gst.h> 24 #include <gst/video/video.h> 25 #include <gst/video/gstvideosink.h> 26 27 #include <gdk-pixbuf/gdk-pixbuf.h> 28 29 #define GST_TYPE_GDK_PIXBUF_SINK (gst_gdk_pixbuf_sink_get_type()) 30 G_DECLARE_FINAL_TYPE (GstGdkPixbufSink, gst_gdk_pixbuf_sink, 31 GST, GDK_PIXBUF_SINK, GstVideoSink) 32 33 /** 34 * GstGdkPixbufSink: 35 * 36 * Opaque element structure. 37 */ 38 struct _GstGdkPixbufSink 39 { 40 GstVideoSink basesink; 41 42 /*< private >*/ 43 44 /* current caps */ 45 GstVideoInfo info; 46 gint width; 47 gint height; 48 gint par_n; 49 gint par_d; 50 gboolean has_alpha; 51 52 /* properties */ 53 gboolean post_messages; 54 GdkPixbuf * last_pixbuf; 55 }; 56 57 #endif /* GST_GDK_PIXBUF_SINK_H */ 58 59