2005-07-06 15:27:17 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2005 Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
2011-11-11 11:00:52 +00:00
|
|
|
* gstaudiobasesrc.h:
|
2005-07-06 15:27:17 +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
|
2012-11-03 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2005-07-06 15:27:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* a base class for audio sources.
|
|
|
|
*/
|
|
|
|
|
2011-11-11 10:52:47 +00:00
|
|
|
#ifndef __GST_AUDIO_BASE_SRC_H__
|
|
|
|
#define __GST_AUDIO_BASE_SRC_H__
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/base/gstpushsrc.h>
|
2011-11-11 10:33:15 +00:00
|
|
|
#include "gstaudioringbuffer.h"
|
2005-07-06 15:27:17 +00:00
|
|
|
#include "gstaudioclock.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-11-11 10:52:47 +00:00
|
|
|
#define GST_TYPE_AUDIO_BASE_SRC (gst_audio_base_src_get_type())
|
|
|
|
#define GST_AUDIO_BASE_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AUDIO_BASE_SRC,GstAudioBaseSrc))
|
|
|
|
#define GST_AUDIO_BASE_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AUDIO_BASE_SRC,GstAudioBaseSrcClass))
|
|
|
|
#define GST_AUDIO_BASE_SRC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_AUDIO_BASE_SRC, GstAudioBaseSrcClass))
|
|
|
|
#define GST_IS_AUDIO_BASE_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AUDIO_BASE_SRC))
|
|
|
|
#define GST_IS_AUDIO_BASE_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AUDIO_BASE_SRC))
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2006-09-27 11:05:08 +00:00
|
|
|
/**
|
2011-11-11 10:52:47 +00:00
|
|
|
* GST_AUDIO_BASE_SRC_CLOCK:
|
|
|
|
* @obj: a #GstAudioBaseSrc
|
2006-09-27 11:05:08 +00:00
|
|
|
*
|
|
|
|
* Get the #GstClock of @obj.
|
|
|
|
*/
|
2011-11-11 10:52:47 +00:00
|
|
|
#define GST_AUDIO_BASE_SRC_CLOCK(obj) (GST_AUDIO_BASE_SRC (obj)->clock)
|
2006-09-27 11:05:08 +00:00
|
|
|
/**
|
2011-11-11 10:52:47 +00:00
|
|
|
* GST_AUDIO_BASE_SRC_PAD:
|
|
|
|
* @obj: a #GstAudioBaseSrc
|
2006-09-27 11:05:08 +00:00
|
|
|
*
|
|
|
|
* Get the source #GstPad of @obj.
|
|
|
|
*/
|
2011-11-11 10:52:47 +00:00
|
|
|
#define GST_AUDIO_BASE_SRC_PAD(obj) (GST_BASE_SRC (obj)->srcpad)
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2011-11-11 10:52:47 +00:00
|
|
|
typedef struct _GstAudioBaseSrc GstAudioBaseSrc;
|
|
|
|
typedef struct _GstAudioBaseSrcClass GstAudioBaseSrcClass;
|
|
|
|
typedef struct _GstAudioBaseSrcPrivate GstAudioBaseSrcPrivate;
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2008-04-28 08:51:38 +00:00
|
|
|
/**
|
2011-11-11 10:52:47 +00:00
|
|
|
* GstAudioBaseSrcSlaveMethod:
|
2011-11-11 16:53:03 +00:00
|
|
|
* @GST_AUDIO_BASE_SRC_SLAVE_RESAMPLE: Resample to match the master clock.
|
2011-11-11 10:52:47 +00:00
|
|
|
* @GST_AUDIO_BASE_SRC_SLAVE_RETIMESTAMP: Retimestamp output buffers with master
|
2008-04-28 08:51:38 +00:00
|
|
|
* clock time.
|
2011-11-11 10:52:47 +00:00
|
|
|
* @GST_AUDIO_BASE_SRC_SLAVE_SKEW: Adjust capture pointer when master clock
|
2008-04-28 08:51:38 +00:00
|
|
|
* drifts too much.
|
2011-11-11 16:53:03 +00:00
|
|
|
* @GST_AUDIO_BASE_SRC_SLAVE_NONE: No adjustment is done.
|
2008-04-28 08:51:38 +00:00
|
|
|
*
|
|
|
|
* Different possible clock slaving algorithms when the internal audio clock was
|
|
|
|
* not selected as the pipeline clock.
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
2011-11-11 10:52:47 +00:00
|
|
|
GST_AUDIO_BASE_SRC_SLAVE_RESAMPLE,
|
|
|
|
GST_AUDIO_BASE_SRC_SLAVE_RETIMESTAMP,
|
|
|
|
GST_AUDIO_BASE_SRC_SLAVE_SKEW,
|
|
|
|
GST_AUDIO_BASE_SRC_SLAVE_NONE
|
|
|
|
} GstAudioBaseSrcSlaveMethod;
|
2008-04-28 08:51:38 +00:00
|
|
|
|
2011-11-11 10:52:47 +00:00
|
|
|
#define GST_TYPE_AUDIO_BASE_SRC_SLAVE_METHOD (gst_audio_base_src_slave_method_get_type ())
|
2008-12-13 06:57:09 +00:00
|
|
|
|
2006-09-27 11:05:08 +00:00
|
|
|
/**
|
2011-11-11 10:52:47 +00:00
|
|
|
* GstAudioBaseSrc:
|
2006-09-27 11:05:08 +00:00
|
|
|
*
|
2011-11-11 10:52:47 +00:00
|
|
|
* Opaque #GstAudioBaseSrc.
|
2006-09-27 11:05:08 +00:00
|
|
|
*/
|
2011-11-11 10:52:47 +00:00
|
|
|
struct _GstAudioBaseSrc {
|
2011-11-11 10:21:41 +00:00
|
|
|
GstPushSrc element;
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
/*< protected >*/ /* with LOCK */
|
|
|
|
/* our ringbuffer */
|
2011-11-11 10:21:41 +00:00
|
|
|
GstAudioRingBuffer *ringbuffer;
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
/* required buffer and latency */
|
2011-11-11 10:21:41 +00:00
|
|
|
GstClockTime buffer_time;
|
|
|
|
GstClockTime latency_time;
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2005-10-06 15:15:04 +00:00
|
|
|
/* the next sample to write */
|
2011-11-11 10:21:41 +00:00
|
|
|
guint64 next_sample;
|
2005-10-06 15:15:04 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
/* clock */
|
2011-11-11 10:21:41 +00:00
|
|
|
GstClock *clock;
|
2005-08-09 17:29:40 +00:00
|
|
|
|
|
|
|
/*< private >*/
|
2011-11-11 10:52:47 +00:00
|
|
|
GstAudioBaseSrcPrivate *priv;
|
2007-09-10 22:10:54 +00:00
|
|
|
|
2011-11-11 16:53:03 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2005-07-06 15:27:17 +00:00
|
|
|
};
|
|
|
|
|
2006-09-27 11:05:08 +00:00
|
|
|
/**
|
2011-11-11 10:52:47 +00:00
|
|
|
* GstAudioBaseSrcClass:
|
2006-09-27 11:05:08 +00:00
|
|
|
* @parent_class: the parent class.
|
2011-11-11 10:21:41 +00:00
|
|
|
* @create_ringbuffer: create and return a #GstAudioRingBuffer to read from.
|
2006-09-27 11:05:08 +00:00
|
|
|
*
|
2011-11-11 10:52:47 +00:00
|
|
|
* #GstAudioBaseSrc class. Override the vmethod to implement
|
2006-09-27 11:05:08 +00:00
|
|
|
* functionality.
|
|
|
|
*/
|
2011-11-11 10:52:47 +00:00
|
|
|
struct _GstAudioBaseSrcClass {
|
2011-11-11 10:21:41 +00:00
|
|
|
GstPushSrcClass parent_class;
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
/* subclass ringbuffer allocation */
|
2011-11-11 10:52:47 +00:00
|
|
|
GstAudioRingBuffer* (*create_ringbuffer) (GstAudioBaseSrc *src);
|
2005-08-09 17:29:40 +00:00
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2005-07-06 15:27:17 +00:00
|
|
|
};
|
|
|
|
|
2011-11-11 10:52:47 +00:00
|
|
|
GType gst_audio_base_src_get_type(void);
|
|
|
|
GType gst_audio_base_src_slave_method_get_type (void);
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2011-11-11 10:21:41 +00:00
|
|
|
GstAudioRingBuffer *
|
2011-11-11 10:52:47 +00:00
|
|
|
gst_audio_base_src_create_ringbuffer (GstAudioBaseSrc *src);
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2011-11-11 10:52:47 +00:00
|
|
|
void gst_audio_base_src_set_provide_clock (GstAudioBaseSrc *src, gboolean provide);
|
|
|
|
gboolean gst_audio_base_src_get_provide_clock (GstAudioBaseSrc *src);
|
Expose methods for some object properties so that subclasses can more easily configure them.
Original commit message from CVS:
* docs/libs/gst-plugins-base-libs-sections.txt:
* gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
(gst_base_audio_sink_set_provide_clock),
(gst_base_audio_sink_get_provide_clock),
(gst_base_audio_sink_set_slave_method),
(gst_base_audio_sink_get_slave_method),
(gst_base_audio_sink_set_property),
(gst_base_audio_sink_get_property), (gst_base_audio_sink_drain),
(gst_base_audio_sink_none_slaving),
(gst_base_audio_sink_handle_slaving):
* gst-libs/gst/audio/gstbaseaudiosink.h:
Expose methods for some object properties so that subclasses can more
easily configure them.
Added slave method none, that completely disables slaving to the
internal clock.
API: gst_base_audio_sink_set_provide_clock()
API: gst_base_audio_sink_get_provide_clock()
API: gst_base_audio_sink_set_slave_method()
API: gst_base_audio_sink_get_slave_method()
* gst-libs/gst/audio/gstbaseaudiosrc.c:
(gst_base_audio_src_set_provide_clock),
(gst_base_audio_src_get_provide_clock),
(gst_base_audio_src_set_property),
(gst_base_audio_src_get_property), (gst_base_audio_src_create):
* gst-libs/gst/audio/gstbaseaudiosrc.h:
Expose methods for some object properties so that subclasses can more
easily configure them.
API: gst_base_audio_src_set_provide_clock()
API: gst_base_audio_src_get_provide_clock()
2007-11-21 13:04:17 +00:00
|
|
|
|
2011-11-11 10:52:47 +00:00
|
|
|
void gst_audio_base_src_set_slave_method (GstAudioBaseSrc *src,
|
|
|
|
GstAudioBaseSrcSlaveMethod method);
|
|
|
|
GstAudioBaseSrcSlaveMethod
|
|
|
|
gst_audio_base_src_get_slave_method (GstAudioBaseSrc *src);
|
2008-04-28 08:51:38 +00:00
|
|
|
|
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2011-11-11 10:52:47 +00:00
|
|
|
#endif /* __GST_AUDIO_BASE_SRC_H__ */
|