gstreamer/gst/elements/gstfakesink.h

80 lines
2.2 KiB
C
Raw Permalink Normal View History

/* GStreamer
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
* 2000 Wim Taymans <wtay@chello.be>
*
* gstfakesink.h:
*
* 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_FAKESINK_H__
#define __GST_FAKESINK_H__
#include <gst/gst.h>
Add sink base class to abstract locking and preroll. Original commit message from CVS: * configure.ac: * docs/design/part-states.txt: * gst/Makefile.am: * gst/base/Makefile.am: * gst/base/gstbasesink.c: (gst_basesink_get_template), (gst_basesink_base_init), (gst_basesink_class_init), (gst_basesink_init), (gst_basesink_set_pad_functions), (gst_basesink_set_all_pad_functions), (gst_basesink_set_clock), (gst_basesink_set_property), (gst_basesink_get_property), (gst_base_sink_get_template), (gst_base_sink_get_caps), (gst_base_sink_set_caps), (gst_base_sink_alloc_buffer), (gst_basesink_finish_preroll), (gst_basesink_event), (gst_basesink_chain_unlocked), (gst_basesink_chain), (gst_basesink_loop), (gst_basesink_activate), (gst_basesink_change_state): * gst/base/gstbasesink.h: * gst/elements/Makefile.am: * gst/elements/gstfakesink.c: (gst_fakesink_base_init), (gst_fakesink_class_init), (gst_fakesink_init), (gst_fakesink_set_property), (gst_fakesink_get_property), (gst_fakesink_event), (gst_fakesink_preroll), (gst_fakesink_render), (gst_fakesink_change_state): * gst/elements/gstfakesink.h: * gst/gstelement.c: (gst_element_get_random_pad): * gst/gstevent.h: * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new), (gst_list_iterator_next), (gst_list_iterator_free), (gst_iterator_new_list), (gst_iterator_pop), (gst_iterator_next), (gst_iterator_push), (filter_next): * gst/gstmessage.h: * gst/gsttrashstack.h: Add sink base class to abstract locking and preroll. Make fakesink use the base class. Some doc fixes. Fix missing breaks.
2005-02-23 11:22:43 +00:00
#include <gst/base/gstbasesink.h>
G_BEGIN_DECLS
#define GST_TYPE_FAKESINK \
(gst_fakesink_get_type())
#define GST_FAKESINK(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FAKESINK,GstFakeSink))
#define GST_FAKESINK_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FAKESINK,GstFakeSinkClass))
#define GST_IS_FAKESINK(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FAKESINK))
#define GST_IS_FAKESINK_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FAKESINK))
typedef enum {
FAKESINK_STATE_ERROR_NONE = 0,
FAKESINK_STATE_ERROR_NULL_READY,
FAKESINK_STATE_ERROR_READY_PAUSED,
FAKESINK_STATE_ERROR_PAUSED_PLAYING,
FAKESINK_STATE_ERROR_PLAYING_PAUSED,
FAKESINK_STATE_ERROR_PAUSED_READY,
FAKESINK_STATE_ERROR_READY_NULL
} GstFakeSinkStateError;
typedef struct _GstFakeSink GstFakeSink;
typedef struct _GstFakeSinkClass GstFakeSinkClass;
struct _GstFakeSink {
Add sink base class to abstract locking and preroll. Original commit message from CVS: * configure.ac: * docs/design/part-states.txt: * gst/Makefile.am: * gst/base/Makefile.am: * gst/base/gstbasesink.c: (gst_basesink_get_template), (gst_basesink_base_init), (gst_basesink_class_init), (gst_basesink_init), (gst_basesink_set_pad_functions), (gst_basesink_set_all_pad_functions), (gst_basesink_set_clock), (gst_basesink_set_property), (gst_basesink_get_property), (gst_base_sink_get_template), (gst_base_sink_get_caps), (gst_base_sink_set_caps), (gst_base_sink_alloc_buffer), (gst_basesink_finish_preroll), (gst_basesink_event), (gst_basesink_chain_unlocked), (gst_basesink_chain), (gst_basesink_loop), (gst_basesink_activate), (gst_basesink_change_state): * gst/base/gstbasesink.h: * gst/elements/Makefile.am: * gst/elements/gstfakesink.c: (gst_fakesink_base_init), (gst_fakesink_class_init), (gst_fakesink_init), (gst_fakesink_set_property), (gst_fakesink_get_property), (gst_fakesink_event), (gst_fakesink_preroll), (gst_fakesink_render), (gst_fakesink_change_state): * gst/elements/gstfakesink.h: * gst/gstelement.c: (gst_element_get_random_pad): * gst/gstevent.h: * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new), (gst_list_iterator_next), (gst_list_iterator_free), (gst_iterator_new_list), (gst_iterator_pop), (gst_iterator_next), (gst_iterator_push), (filter_next): * gst/gstmessage.h: * gst/gsttrashstack.h: Add sink base class to abstract locking and preroll. Make fakesink use the base class. Some doc fixes. Fix missing breaks.
2005-02-23 11:22:43 +00:00
GstBaseSink element;
gboolean silent;
gboolean dump;
gboolean sync;
gboolean signal_handoffs;
GstFakeSinkStateError state_error;
gchar *last_message;
};
struct _GstFakeSinkClass {
Add sink base class to abstract locking and preroll. Original commit message from CVS: * configure.ac: * docs/design/part-states.txt: * gst/Makefile.am: * gst/base/Makefile.am: * gst/base/gstbasesink.c: (gst_basesink_get_template), (gst_basesink_base_init), (gst_basesink_class_init), (gst_basesink_init), (gst_basesink_set_pad_functions), (gst_basesink_set_all_pad_functions), (gst_basesink_set_clock), (gst_basesink_set_property), (gst_basesink_get_property), (gst_base_sink_get_template), (gst_base_sink_get_caps), (gst_base_sink_set_caps), (gst_base_sink_alloc_buffer), (gst_basesink_finish_preroll), (gst_basesink_event), (gst_basesink_chain_unlocked), (gst_basesink_chain), (gst_basesink_loop), (gst_basesink_activate), (gst_basesink_change_state): * gst/base/gstbasesink.h: * gst/elements/Makefile.am: * gst/elements/gstfakesink.c: (gst_fakesink_base_init), (gst_fakesink_class_init), (gst_fakesink_init), (gst_fakesink_set_property), (gst_fakesink_get_property), (gst_fakesink_event), (gst_fakesink_preroll), (gst_fakesink_render), (gst_fakesink_change_state): * gst/elements/gstfakesink.h: * gst/gstelement.c: (gst_element_get_random_pad): * gst/gstevent.h: * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new), (gst_list_iterator_next), (gst_list_iterator_free), (gst_iterator_new_list), (gst_iterator_pop), (gst_iterator_next), (gst_iterator_push), (filter_next): * gst/gstmessage.h: * gst/gsttrashstack.h: Add sink base class to abstract locking and preroll. Make fakesink use the base class. Some doc fixes. Fix missing breaks.
2005-02-23 11:22:43 +00:00
GstBaseSinkClass parent_class;
/* signals */
void (*handoff) (GstElement *element, GstBuffer *buf, GstPad *pad);
};
GType gst_fakesink_get_type(void);
G_END_DECLS
#endif /* __GST_FAKESINK_H__ */