2005-03-28 14:54:33 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
2005-06-28 12:01:49 +00:00
|
|
|
* gstbasesink.h:
|
2005-03-28 14:54:33 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2005-07-10 12:03:13 +00:00
|
|
|
#ifndef __GST_BASE_SINK_H__
|
|
|
|
#define __GST_BASE_SINK_H__
|
2005-03-28 14:54:33 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2005-07-10 12:03:13 +00:00
|
|
|
#define GST_TYPE_BASE_SINK (gst_base_sink_get_type())
|
|
|
|
#define GST_BASE_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BASE_SINK,GstBaseSink))
|
|
|
|
#define GST_BASE_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_BASE_SINK,GstBaseSinkClass))
|
2005-08-15 16:57:34 +00:00
|
|
|
#define GST_BASE_SINK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_BASE_SINK, GstBaseSinkClass))
|
2005-07-10 12:03:13 +00:00
|
|
|
#define GST_IS_BASE_SINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_SINK))
|
|
|
|
#define GST_IS_BASE_SINK_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_SINK))
|
2005-03-28 14:54:33 +00:00
|
|
|
|
2005-08-15 16:57:34 +00:00
|
|
|
/**
|
|
|
|
* GST_BASE_SINK_CLOCK:
|
|
|
|
* @obj: base sink instance
|
|
|
|
*
|
2005-09-11 12:57:36 +00:00
|
|
|
* Gives the pointer to the #GstClock object of the element.
|
2005-08-15 16:57:34 +00:00
|
|
|
*/
|
|
|
|
#define GST_BASE_SINK_CLOCK(obj) (GST_BASE_SINK (obj)->clock)
|
|
|
|
/**
|
|
|
|
* GST_BASE_SINK_PAD:
|
|
|
|
* @obj: base sink instance
|
|
|
|
*
|
2005-09-11 12:57:36 +00:00
|
|
|
* Gives the pointer to the #GstPad object of the element.
|
2005-08-15 16:57:34 +00:00
|
|
|
*/
|
2005-07-10 12:03:13 +00:00
|
|
|
#define GST_BASE_SINK_PAD(obj) (GST_BASE_SINK (obj)->sinkpad)
|
2005-03-28 14:54:33 +00:00
|
|
|
|
|
|
|
typedef struct _GstBaseSink GstBaseSink;
|
|
|
|
typedef struct _GstBaseSinkClass GstBaseSinkClass;
|
|
|
|
|
|
|
|
struct _GstBaseSink {
|
2005-06-28 12:01:49 +00:00
|
|
|
GstElement element;
|
2005-03-28 14:54:33 +00:00
|
|
|
|
2005-08-26 14:21:43 +00:00
|
|
|
/*< protected >*/
|
2005-06-28 12:01:49 +00:00
|
|
|
GstPad *sinkpad;
|
2005-03-28 14:54:33 +00:00
|
|
|
GstActivateMode pad_mode;
|
|
|
|
|
2005-08-26 14:21:43 +00:00
|
|
|
/*< protected >*/ /* with LOCK */
|
|
|
|
guint64 offset;
|
|
|
|
gboolean can_activate_pull;
|
|
|
|
gboolean can_activate_push;
|
|
|
|
|
2005-05-06 08:25:19 +00:00
|
|
|
/*< protected >*/ /* with PREROLL_LOCK */
|
|
|
|
GQueue *preroll_queue;
|
|
|
|
gint preroll_queue_max_len;
|
2005-06-30 12:14:47 +00:00
|
|
|
gint preroll_queued;
|
|
|
|
gint buffers_queued;
|
|
|
|
gint events_queued;
|
2005-08-26 14:21:43 +00:00
|
|
|
gboolean eos;
|
2005-10-08 09:58:30 +00:00
|
|
|
gboolean eos_queued;
|
2005-08-26 14:21:43 +00:00
|
|
|
gboolean need_preroll;
|
|
|
|
gboolean have_preroll;
|
|
|
|
gboolean playing_async;
|
2005-03-28 14:54:33 +00:00
|
|
|
|
2005-08-26 14:21:43 +00:00
|
|
|
/*< protected >*/ /* with STREAM_LOCK */
|
2005-08-24 17:57:36 +00:00
|
|
|
gboolean have_newsegment;
|
|
|
|
gdouble segment_rate;
|
|
|
|
gint64 segment_start;
|
|
|
|
gint64 segment_stop;
|
2005-10-11 17:33:25 +00:00
|
|
|
gint64 segment_time;
|
2005-09-01 18:12:18 +00:00
|
|
|
gint64 segment_accum;
|
|
|
|
|
|
|
|
gint64 current_start;
|
|
|
|
gint64 current_duration;
|
|
|
|
gint64 current_end;
|
gst/base/gstbasesink.*: Store and use discont values when syncing buffers as described in design docs.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_get_times),
(gst_base_sink_do_sync), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
Store and use discont values when syncing buffers as described
in design docs.
* gst/base/gstbasesrc.c: (gst_base_src_send_discont),
(gst_base_src_do_seek), (gst_base_src_loop), (gst_base_src_start),
(gst_base_src_activate_push):
Push discont event when starting.
* gst/elements/gstidentity.c: (gst_identity_transform):
Small cleanups.
* gst/gstbin.c: (gst_bin_change_state):
Small cleanups in base_time distribution.
* gst/gstelement.c: (gst_element_set_base_time),
(gst_element_get_base_time), (gst_element_change_state):
* gst/gstelement.h:
Added methods for the base_time of the element.
Some MT fixes.
* gst/gstpipeline.c: (gst_pipeline_send_event),
(gst_pipeline_change_state), (gst_pipeline_set_new_stream_time),
(gst_pipeline_get_last_stream_time):
* gst/gstpipeline.h:
MT fixes.
Handle seeking as described in design doc, remove stream_time
hack.
Cleanups clock and stream_time selection code. Added accessors
for the stream_time.
2005-07-16 14:41:25 +00:00
|
|
|
|
2005-08-26 14:21:43 +00:00
|
|
|
/*< private >*/ /* with LOCK */
|
|
|
|
GstClock *clock;
|
|
|
|
GstClockID clock_id;
|
|
|
|
GstClockTime end_time;
|
2005-09-20 12:05:47 +00:00
|
|
|
gboolean sync;
|
2005-10-08 09:58:30 +00:00
|
|
|
gboolean flushing;
|
2005-08-08 13:31:09 +00:00
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2005-03-28 14:54:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstBaseSinkClass {
|
|
|
|
GstElementClass parent_class;
|
|
|
|
|
2005-05-06 08:25:19 +00:00
|
|
|
/* get caps from subclass */
|
2005-03-28 14:54:33 +00:00
|
|
|
GstCaps* (*get_caps) (GstBaseSink *sink);
|
2005-05-06 08:25:19 +00:00
|
|
|
/* notify subclass of new caps */
|
2005-03-28 14:54:33 +00:00
|
|
|
gboolean (*set_caps) (GstBaseSink *sink, GstCaps *caps);
|
|
|
|
|
2005-05-06 08:25:19 +00:00
|
|
|
/* allocate a new buffer with given caps */
|
gst/: Bufferalloc: return GstFlowReturn to more accuratly report why allocation failed.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_basesink_pad_buffer_alloc),
(gst_base_sink_buffer_alloc), (gst_basesink_preroll_queue_push),
(gst_basesink_activate):
* gst/base/gstbasesink.h:
* gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
(gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
(gst_pad_query), (gst_pad_start_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_bufferalloc),
(gst_queue_handle_sink_event), (gst_queue_chain):
Bufferalloc: return GstFlowReturn to more accuratly report
why allocation failed.
2005-06-02 09:42:02 +00:00
|
|
|
GstFlowReturn (*buffer_alloc) (GstBaseSink *sink, guint64 offset, guint size,
|
|
|
|
GstCaps *caps, GstBuffer **buf);
|
2005-03-28 14:54:33 +00:00
|
|
|
|
2005-05-06 08:25:19 +00:00
|
|
|
/* get the start and end times for syncing on this buffer */
|
2005-06-28 12:01:49 +00:00
|
|
|
void (*get_times) (GstBaseSink *sink, GstBuffer *buffer,
|
2005-03-28 14:54:33 +00:00
|
|
|
GstClockTime *start, GstClockTime *end);
|
|
|
|
|
gst/base/: Make basesrc negotiate.
Original commit message from CVS:
* gst/base/README:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_handle_object), (gst_base_sink_loop),
(gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_base_src_class_init),
(gst_base_src_init), (gst_base_src_setcaps),
(gst_base_src_getcaps), (gst_base_src_loop),
(gst_base_src_default_negotiate), (gst_base_src_negotiate),
(gst_base_src_start), (gst_base_src_change_state):
* gst/base/gstbasesrc.h:
Make basesrc negotiate.
Handle the case where preroll fails in basesink.
Update README.
2005-07-06 13:25:26 +00:00
|
|
|
/* start and stop processing, ideal for opening/closing the resource */
|
|
|
|
gboolean (*start) (GstBaseSink *sink);
|
|
|
|
gboolean (*stop) (GstBaseSink *sink);
|
|
|
|
|
2005-05-06 08:25:19 +00:00
|
|
|
/* unlock any pending access to the resource. subclasses should unlock
|
|
|
|
* any function ASAP. */
|
|
|
|
gboolean (*unlock) (GstBaseSink *sink);
|
|
|
|
|
|
|
|
/* notify subclass of event, preroll buffer or real buffer */
|
gst/: Added object to help in making collect pad based elements.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_basesrc_init),
(gst_basesrc_set_dataflow_funcs), (gst_basesrc_query):
* gst/base/gstcollectpads.c: (gst_collectpads_get_type),
(gst_collectpads_class_init), (gst_collectpads_init),
(gst_collectpads_finalize), (gst_collectpads_new),
(gst_collectpads_set_function), (gst_collectpads_add_pad),
(find_pad), (gst_collectpads_remove_pad),
(gst_collectpads_is_active), (gst_collectpads_collect),
(gst_collectpads_collect_range), (gst_collectpads_start),
(gst_collectpads_stop), (gst_collectpads_peek),
(gst_collectpads_pop), (gst_collectpads_available),
(gst_collectpads_read), (gst_collectpads_flush),
(gst_collectpads_chain):
* gst/base/gstcollectpads.h:
* gst/elements/Makefile.am:
* gst/elements/gstelements.c:
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_get_times), (gst_fakesink_event),
(gst_fakesink_preroll), (gst_fakesink_render):
* gst/elements/gstfilesink.c: (gst_filesink_class_init),
(gst_filesink_init), (gst_filesink_set_location),
(gst_filesink_open_file), (gst_filesink_close_file),
(gst_filesink_pad_query), (gst_filesink_event),
(gst_filesink_render), (gst_filesink_change_state):
* gst/elements/gstfilesink.h:
Added object to help in making collect pad based elements.
Ported filesink.
Make event function in sink baseclass return gboolean.
2005-05-05 09:31:59 +00:00
|
|
|
gboolean (*event) (GstBaseSink *sink, GstEvent *event);
|
2005-03-28 14:54:33 +00:00
|
|
|
GstFlowReturn (*preroll) (GstBaseSink *sink, GstBuffer *buffer);
|
|
|
|
GstFlowReturn (*render) (GstBaseSink *sink, GstBuffer *buffer);
|
2005-08-08 13:31:09 +00:00
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2005-03-28 14:54:33 +00:00
|
|
|
};
|
|
|
|
|
2005-06-28 12:01:49 +00:00
|
|
|
GType gst_base_sink_get_type(void);
|
2005-03-28 14:54:33 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2005-07-10 12:03:13 +00:00
|
|
|
#endif /* __GST_BASE_SINK_H__ */
|