/* Generic video mixer plugin * Copyright (C) 2008 Wim Taymans * Copyright (C) 2010 Sebastian Dröge * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __GST_VIDEO_MIXER2_H__ #define __GST_VIDEO_MIXER2_H__ #include #include #include "blend.h" #include "gstcollectpads2.h" G_BEGIN_DECLS #define GST_TYPE_VIDEO_MIXER2 (gst_videomixer2_get_type()) #define GST_VIDEO_MIXER2(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEO_MIXER2, GstVideoMixer2)) #define GST_VIDEO_MIXER2_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEO_MIXER2, GstVideoMixer2Class)) #define GST_IS_VIDEO_MIXER2(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEO_MIXER2)) #define GST_IS_VIDEO_MIXER2_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEO_MIXER2)) typedef struct _GstVideoMixer2 GstVideoMixer2; typedef struct _GstVideoMixer2Class GstVideoMixer2Class; /** * GstVideoMixer2Background: * @VIDEO_MIXER2_BACKGROUND_CHECKER: checker pattern background * @VIDEO_MIXER2_BACKGROUND_BLACK: solid color black background * @VIDEO_MIXER2_BACKGROUND_WHITE: solid color white background * * The different backgrounds videomixer can blend over. */ typedef enum { VIDEO_MIXER2_BACKGROUND_CHECKER, VIDEO_MIXER2_BACKGROUND_BLACK, VIDEO_MIXER2_BACKGROUND_WHITE } GstVideoMixer2Background; /** * GstVideoMixer2: * * The opaque #GstVideoMixer2 structure. */ struct _GstVideoMixer2 { GstElement element; /* < private > */ /* pad */ GstPad *srcpad; /* Lock to prevent the state to change while blending */ GMutex *lock; /* Sink pads using Collect Pads 2*/ GstCollectPads2 *collect; /* sinkpads, a GSList of GstVideoMixer2Pads */ GSList *sinkpads; gint numpads; /* Next available sinkpad index */ gint next_sinkpad; /* Output caps */ GstVideoFormat format; gint width, height; gint fps_n; gint fps_d; gint par_n; gint par_d; gboolean newseg_pending; gboolean flush_stop_pending; GstVideoMixer2Background background; /* Current downstream segment */ GstSegment segment; GstClockTime ts_offset; guint64 nframes; /* QoS stuff */ gdouble proportion; GstClockTime earliest_time; guint64 qos_processed, qos_dropped; BlendFunction blend; FillCheckerFunction fill_checker; FillColorFunction fill_color; }; struct _GstVideoMixer2Class { GstElementClass parent_class; }; GType gst_videomixer2_get_type (void); gboolean gst_videomixer2_register (GstPlugin * plugin); G_END_DECLS #endif /* __GST_VIDEO_MIXER2_H__ */