gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2004 Benjamin Otte <otte@gnome.org>
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#ifndef __GST_ADAPTER_H__
|
|
|
|
#define __GST_ADAPTER_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
#define GST_TYPE_ADAPTER \
|
|
|
|
(gst_adapter_get_type())
|
|
|
|
#define GST_ADAPTER(obj) \
|
2005-09-11 12:57:36 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_ADAPTER, GstAdapter))
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
#define GST_ADAPTER_CLASS(klass) \
|
2005-09-11 12:57:36 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_ADAPTER, GstAdapterClass))
|
|
|
|
#define GST_ADAPTER_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_ADAPTER, GstAdapterClass))
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
#define GST_IS_ADAPTER(obj) \
|
2005-09-11 12:57:36 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_ADAPTER))
|
2006-04-08 18:05:16 +00:00
|
|
|
#define GST_IS_ADAPTER_CLASS(klass) \
|
2005-09-11 12:57:36 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_ADAPTER))
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* GstAdapter:
|
|
|
|
*
|
|
|
|
* The opaque #GstAdapter data structure.
|
|
|
|
*/
|
2012-05-01 07:25:25 +00:00
|
|
|
typedef struct _GstAdapter GstAdapter;
|
|
|
|
typedef struct _GstAdapterClass GstAdapterClass;
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
2009-09-03 17:06:28 +00:00
|
|
|
GType gst_adapter_get_type (void);
|
2009-05-13 14:20:26 +00:00
|
|
|
|
2011-11-26 18:58:38 +00:00
|
|
|
GstAdapter * gst_adapter_new (void) G_GNUC_MALLOC;
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
2009-09-03 17:06:28 +00:00
|
|
|
void gst_adapter_clear (GstAdapter *adapter);
|
|
|
|
void gst_adapter_push (GstAdapter *adapter, GstBuffer* buf);
|
2011-11-21 17:56:19 +00:00
|
|
|
gconstpointer gst_adapter_map (GstAdapter *adapter, gsize size);
|
2011-11-10 17:18:24 +00:00
|
|
|
void gst_adapter_unmap (GstAdapter *adapter);
|
2011-11-10 10:42:26 +00:00
|
|
|
void gst_adapter_copy (GstAdapter *adapter, gpointer dest,
|
2011-03-21 17:13:55 +00:00
|
|
|
gsize offset, gsize size);
|
2014-03-01 22:18:44 +00:00
|
|
|
GBytes * gst_adapter_copy_bytes (GstAdapter *adapter,
|
|
|
|
gsize offset, gsize size);
|
2011-03-21 17:13:55 +00:00
|
|
|
void gst_adapter_flush (GstAdapter *adapter, gsize flush);
|
2011-11-10 10:42:26 +00:00
|
|
|
gpointer gst_adapter_take (GstAdapter *adapter, gsize nbytes);
|
2011-03-21 17:13:55 +00:00
|
|
|
GstBuffer* gst_adapter_take_buffer (GstAdapter *adapter, gsize nbytes);
|
|
|
|
GList* gst_adapter_take_list (GstAdapter *adapter, gsize nbytes);
|
2013-07-15 19:41:44 +00:00
|
|
|
GstBuffer * gst_adapter_take_buffer_fast (GstAdapter *adapter, gsize nbytes);
|
2015-03-14 17:20:33 +00:00
|
|
|
GstBufferList * gst_adapter_take_buffer_list (GstAdapter *adapter, gsize nbytes);
|
2015-06-30 09:11:25 +00:00
|
|
|
GstBuffer* gst_adapter_get_buffer (GstAdapter *adapter, gsize nbytes);
|
|
|
|
GList* gst_adapter_get_list (GstAdapter *adapter, gsize nbytes);
|
|
|
|
GstBuffer * gst_adapter_get_buffer_fast (GstAdapter *adapter, gsize nbytes);
|
|
|
|
GstBufferList * gst_adapter_get_buffer_list (GstAdapter *adapter, gsize nbytes);
|
2011-03-21 17:13:55 +00:00
|
|
|
gsize gst_adapter_available (GstAdapter *adapter);
|
|
|
|
gsize gst_adapter_available_fast (GstAdapter *adapter);
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
2011-10-28 10:16:21 +00:00
|
|
|
GstClockTime gst_adapter_prev_pts (GstAdapter *adapter, guint64 *distance);
|
|
|
|
GstClockTime gst_adapter_prev_dts (GstAdapter *adapter, guint64 *distance);
|
2013-02-12 00:42:41 +00:00
|
|
|
GstClockTime gst_adapter_prev_pts_at_offset (GstAdapter * adapter, gsize offset, guint64 * distance);
|
|
|
|
GstClockTime gst_adapter_prev_dts_at_offset (GstAdapter * adapter, gsize offset, guint64 * distance);
|
2016-05-19 08:31:02 +00:00
|
|
|
guint64 gst_adapter_prev_offset (GstAdapter *adapter, guint64 *distance);
|
2016-06-07 08:32:47 +00:00
|
|
|
|
|
|
|
GstClockTime gst_adapter_pts_at_discont (GstAdapter *adapter);
|
|
|
|
GstClockTime gst_adapter_dts_at_discont (GstAdapter *adapter);
|
|
|
|
guint64 gst_adapter_offset_at_discont (GstAdapter *adapter);
|
|
|
|
|
|
|
|
guint64 gst_adapter_distance_from_discont (GstAdapter *adapter);
|
2009-05-13 14:09:20 +00:00
|
|
|
|
2012-12-30 22:35:48 +00:00
|
|
|
gssize gst_adapter_masked_scan_uint32 (GstAdapter * adapter, guint32 mask,
|
2011-03-21 17:13:55 +00:00
|
|
|
guint32 pattern, gsize offset, gsize size);
|
2009-05-19 22:37:53 +00:00
|
|
|
|
2012-12-30 22:35:48 +00:00
|
|
|
gssize gst_adapter_masked_scan_uint32_peek (GstAdapter * adapter, guint32 mask,
|
2011-03-21 17:13:55 +00:00
|
|
|
guint32 pattern, gsize offset, gsize size, guint32 * value);
|
2009-05-19 22:37:53 +00:00
|
|
|
|
2015-11-10 17:38:59 +00:00
|
|
|
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstAdapter, gst_object_unref)
|
|
|
|
#endif
|
|
|
|
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_ADAPTER_H__ */
|