X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Felements%2Fgstfakesink.h;h=72b3671b6d7de17294bc4c13a172abb3aecaa102;hb=cf7cfb0a0e52289c67b25e16541cccf68a3ecf47;hp=53c2229b0d8c2e11b3505e0da0f288fba42e8edb;hpb=a9f7f7b7b625c6edad365fa2dfa73a9d1960d286;p=platform%2Fupstream%2Fgstreamer.git diff --git a/plugins/elements/gstfakesink.h b/plugins/elements/gstfakesink.h index 53c2229..72b3671 100644 --- a/plugins/elements/gstfakesink.h +++ b/plugins/elements/gstfakesink.h @@ -16,8 +16,8 @@ * * 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. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301, USA. */ @@ -38,8 +38,9 @@ G_BEGIN_DECLS (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FAKE_SINK,GstFakeSinkClass)) #define GST_IS_FAKE_SINK(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FAKE_SINK)) -#define GST_IS_FAKE_SINK_CLASS(obj) \ +#define GST_IS_FAKE_SINK_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FAKE_SINK)) +#define GST_FAKE_SINK_CAST(obj) ((GstFakeSink *)obj) /** * GstFakeSinkStateError: @@ -79,6 +80,8 @@ struct _GstFakeSink { gboolean signal_handoffs; GstFakeSinkStateError state_error; gchar *last_message; + gint num_buffers; + gint num_buffers_left; }; struct _GstFakeSinkClass { @@ -86,9 +89,10 @@ struct _GstFakeSinkClass { /* signals */ void (*handoff) (GstElement *element, GstBuffer *buf, GstPad *pad); + void (*preroll_handoff) (GstElement *element, GstBuffer *buf, GstPad *pad); }; -GType gst_fake_sink_get_type (void); +G_GNUC_INTERNAL GType gst_fake_sink_get_type (void); G_END_DECLS