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))
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
#define GST_BASE_SINK_CAST(obj) ((GstBaseSink *) (obj))
|
2005-03-28 14:54:33 +00:00
|
|
|
|
2005-08-15 16:57:34 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
*/
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
#define GST_BASE_SINK_PAD(obj) (GST_BASE_SINK_CAST (obj)->sinkpad)
|
2005-03-28 14:54:33 +00:00
|
|
|
|
|
|
|
typedef struct _GstBaseSink GstBaseSink;
|
|
|
|
typedef struct _GstBaseSinkClass GstBaseSinkClass;
|
|
|
|
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* GstBaseSink:
|
libs/gst/: Documentation updates.
Original commit message from CVS:
* libs/gst/base/gstadapter.c:
* libs/gst/base/gstadapter.h:
* libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_get_position):
* libs/gst/base/gstbasesink.h:
* libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
(gst_base_src_default_query), (gst_base_src_default_do_seek),
(gst_base_src_do_seek), (gst_base_src_perform_seek),
(gst_base_src_send_event), (gst_base_src_update_length),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_start):
* libs/gst/base/gstbasesrc.h:
* libs/gst/base/gstbasetransform.h:
* libs/gst/base/gstcollectpads.h:
* libs/gst/base/gstpushsrc.c:
* libs/gst/base/gstpushsrc.h:
* libs/gst/dataprotocol/dataprotocol.c:
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/net/gstnetclientclock.h:
* libs/gst/net/gstnettimeprovider.h:
Documentation updates.
2005-12-18 16:04:41 +00:00
|
|
|
* @element: the parent element.
|
2005-11-24 09:44:07 +00:00
|
|
|
*
|
|
|
|
* The opaque #GstBaseSink data structure.
|
|
|
|
*/
|
2005-03-28 14:54:33 +00:00
|
|
|
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;
|
More segment updates, replace code in plugins with segment helper functions.
Original commit message from CVS:
* check/gst/gstsegment.c: (GST_START_TEST):
* docs/design/part-TODO.txt:
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_pull), (gst_base_sink_get_position),
(gst_base_sink_query), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
(gst_base_src_default_newsegment),
(gst_base_src_configure_segment), (gst_base_src_do_seek),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_change_state):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c:
(gst_base_transform_prepare_output_buf),
(gst_base_transform_event), (gst_base_transform_change_state):
* gst/base/gstbasetransform.h:
* gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
(gst_collect_pads_event):
* gst/base/gstcollectpads.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_init),
(gst_fake_src_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_transform_ip):
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
(gst_segment_set_last_stop), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_to_stream_time),
(gst_segment_to_running_time), (gst_segment_clip):
* gst/gstsegment.h:
More segment updates, replace code in plugins with segment
helper functions.
2005-11-21 17:09:45 +00:00
|
|
|
GstSegment segment;
|
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 */
|
|
|
|
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 >*/
|
docs/design/part-element-sink.txt: Updated document.
Original commit message from CVS:
* docs/design/part-element-sink.txt:
Updated document.
* libs/gst/base/gstbasesink.c: (gst_base_sink_init),
(gst_base_sink_finalize), (gst_base_sink_preroll_queue_flush),
(gst_base_sink_configure_segment), (gst_base_sink_commit_state),
(gst_base_sink_get_sync_times), (gst_base_sink_wait_clock),
(gst_base_sink_do_sync), (gst_base_sink_render_object),
(gst_base_sink_preroll_object),
(gst_base_sink_queue_object_unlocked),
(gst_base_sink_queue_object), (gst_base_sink_event),
(gst_base_sink_chain_unlocked), (gst_base_sink_chain),
(gst_base_sink_loop), (gst_base_sink_activate_pull),
(gst_base_sink_get_position), (gst_base_sink_change_state):
* libs/gst/base/gstbasesink.h:
Totally refactored matching the design doc.
Use two segments, one to clip incomming buffers and another to
perform sync.
Handle queueing correctly, bypass the queue when playing.
Make EOS cancelable.
Handle errors correctly when operating in pull based mode.
* tests/check/elements/fakesink.c: (GST_START_TEST),
(fakesink_suite):
Added new check for sinks.
2006-02-02 12:07:48 +00:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
/* segment used for clipping incomming buffers */
|
|
|
|
GstSegment *clip_segment;
|
|
|
|
} ABI;
|
|
|
|
/* adding + 0 to mark ABI change to be undone later */
|
|
|
|
gpointer _gst_reserved[GST_PADDING_LARGE + 0];
|
|
|
|
} abidata;
|
|
|
|
|
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 >*/
|
2005-11-29 19:37:49 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING_LARGE];
|
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__ */
|