mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
0ec8bf9972
Original commit message from CVS: 2005-12-18 Julien MOUTTE <julien@moutte.net> * docs/plugins/gst-plugins-bad-plugins-decl.txt: * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create), (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_devices), (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup), (gst_dfbvideosink_can_blit_from_format), (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps), (gst_dfbvideosink_show_frame), (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize), (gst_dfbvideosink_navigation_send_event), (gst_dfbvideosink_update_colorbalance), (gst_dfbvideosink_set_property), (gst_dfbvideosink_init): Some more refactoring, handle exotic DirectFB row stride.
136 lines
3 KiB
Text
136 lines
3 KiB
Text
<MACRO>
|
|
<NAME>GST_TYPE_DFBVIDEOSINK</NAME>
|
|
#define GST_TYPE_DFBVIDEOSINK (gst_dfbvideosink_get_type())
|
|
</MACRO>
|
|
<MACRO>
|
|
<NAME>GST_DFBVIDEOSINK</NAME>
|
|
#define GST_DFBVIDEOSINK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_DFBVIDEOSINK, GstDfbVideoSink))
|
|
</MACRO>
|
|
<MACRO>
|
|
<NAME>GST_DFBVIDEOSINK_CLASS</NAME>
|
|
#define GST_DFBVIDEOSINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_DFBVIDEOSINK, GstDfbVideoSink))
|
|
</MACRO>
|
|
<MACRO>
|
|
<NAME>GST_IS_DFBVIDEOSINK</NAME>
|
|
#define GST_IS_DFBVIDEOSINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_DFBVIDEOSINK))
|
|
</MACRO>
|
|
<MACRO>
|
|
<NAME>GST_IS_DFBVIDEOSINK_CLASS</NAME>
|
|
#define GST_IS_DFBVIDEOSINK_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_DFBVIDEOSINK))
|
|
</MACRO>
|
|
<STRUCT>
|
|
<NAME>GstDfbVideoSink</NAME>
|
|
</STRUCT>
|
|
<STRUCT>
|
|
<NAME>GstDfbVideoSinkClass</NAME>
|
|
</STRUCT>
|
|
<MACRO>
|
|
<NAME>GST_TYPE_DFBSURFACE</NAME>
|
|
#define GST_TYPE_DFBSURFACE (gst_dfbsurface_get_type())
|
|
</MACRO>
|
|
<MACRO>
|
|
<NAME>GST_IS_DFBSURFACE</NAME>
|
|
#define GST_IS_DFBSURFACE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_DFBSURFACE))
|
|
</MACRO>
|
|
<MACRO>
|
|
<NAME>GST_DFBSURFACE</NAME>
|
|
#define GST_DFBSURFACE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_DFBSURFACE, GstDfbSurface))
|
|
</MACRO>
|
|
<STRUCT>
|
|
<NAME>GstDfbSurface</NAME>
|
|
</STRUCT>
|
|
<STRUCT>
|
|
<NAME>GstDfbSurface</NAME>
|
|
struct _GstDfbSurface {
|
|
GstBuffer buffer; /* We extend GstBuffer */
|
|
|
|
IDirectFBSurface *surface;
|
|
|
|
gint width;
|
|
gint height;
|
|
gint pitch;
|
|
|
|
gboolean locked;
|
|
|
|
DFBSurfacePixelFormat pixel_format;
|
|
|
|
GstDfbVideoSink *dfbvideosink;
|
|
};
|
|
</STRUCT>
|
|
<STRUCT>
|
|
<NAME>GstDfbVMode</NAME>
|
|
</STRUCT>
|
|
<STRUCT>
|
|
<NAME>GstDfbVMode</NAME>
|
|
struct _GstDfbVMode {
|
|
gint width;
|
|
gint height;
|
|
gint bpp;
|
|
};
|
|
</STRUCT>
|
|
<STRUCT>
|
|
<NAME>GstDfbVideoSink</NAME>
|
|
struct _GstDfbVideoSink {
|
|
/* Our element stuff */
|
|
GstVideoSink videosink;
|
|
|
|
GMutex *pool_lock;
|
|
GSList *buffer_pool;
|
|
|
|
/* Framerate numerator and denominator */
|
|
gint fps_n;
|
|
gint fps_d;
|
|
|
|
gint video_width, video_height; /* size of incoming video */
|
|
gint out_width, out_height;
|
|
|
|
/* Standalone */
|
|
IDirectFB *dfb;
|
|
|
|
GSList *vmodes; /* Video modes */
|
|
|
|
gint layer_id;
|
|
IDirectFBDisplayLayer *layer;
|
|
IDirectFBSurface *primary;
|
|
IDirectFBEventBuffer *event_buffer;
|
|
GThread *event_thread;
|
|
|
|
/* Embedded */
|
|
IDirectFBSurface *ext_surface;
|
|
|
|
DFBSurfacePixelFormat pixel_format;
|
|
|
|
gboolean hw_scaling;
|
|
gboolean backbuffer;
|
|
gboolean vsync;
|
|
gboolean setup;
|
|
gboolean running;
|
|
|
|
/* Color balance */
|
|
GList *cb_channels;
|
|
gint brightness;
|
|
gint contrast;
|
|
gint hue;
|
|
gint saturation;
|
|
gboolean cb_changed;
|
|
|
|
/* object-set pixel aspect ratio */
|
|
GValue *par;
|
|
};
|
|
</STRUCT>
|
|
<STRUCT>
|
|
<NAME>GstDfbVideoSinkClass</NAME>
|
|
struct _GstDfbVideoSinkClass {
|
|
GstVideoSinkClass parent_class;
|
|
};
|
|
</STRUCT>
|
|
<FUNCTION>
|
|
<NAME>gst_dfbvideosink_get_type</NAME>
|
|
<RETURNS>GType </RETURNS>
|
|
void
|
|
</FUNCTION>
|
|
<FUNCTION>
|
|
<NAME>gst_dfbsurface_get_type</NAME>
|
|
<RETURNS>GType </RETURNS>
|
|
void
|
|
</FUNCTION>
|