2001-12-23 00:25:30 +00:00
|
|
|
/*
|
2003-01-27 12:59:24 +00:00
|
|
|
* Copyright (C) 2001 CodeFactory AB
|
|
|
|
* Copyright (C) 2001 Thomas Nyberg <thomas@codefactory.se>
|
|
|
|
* Copyright (C) 2001-2002 Andy Wingo <apwingo@eos.ncsu.edu>
|
2003-02-09 22:47:34 +00:00
|
|
|
* Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
2003-01-27 12:59:24 +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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
2001-12-23 00:25:30 +00:00
|
|
|
|
|
|
|
#ifndef __GST_ALSA_H__
|
|
|
|
#define __GST_ALSA_H__
|
|
|
|
|
2003-02-09 22:47:34 +00:00
|
|
|
#define ALSA_PCM_NEW_HW_PARAMS_API
|
|
|
|
#define ALSA_PCM_NEW_SW_PARAMS_API
|
|
|
|
|
2001-12-23 04:38:38 +00:00
|
|
|
#include <alsa/asoundlib.h>
|
2001-12-23 00:25:30 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2003-02-09 22:47:34 +00:00
|
|
|
#define GST_ALSA_MAX_CHANNELS 64 /* we don't support more than 64 channels */
|
2003-03-24 03:45:45 +00:00
|
|
|
#define GST_ALSA_MIN_RATE 8000
|
|
|
|
#define GST_ALSA_MAX_RATE 192000
|
2003-04-13 14:21:02 +00:00
|
|
|
/* max allowed discontinuity in time units between timestamp and playback pointer
|
|
|
|
before killing/inserting samples
|
|
|
|
should be big enough to allow smoothing errors on different video formats */
|
|
|
|
#define GST_ALSA_DEFAULT_DISCONT (GST_SECOND / 10)
|
2003-02-09 22:47:34 +00:00
|
|
|
|
2003-05-15 16:32:22 +00:00
|
|
|
#define GST_ALSA(obj) (G_TYPE_CHECK_INSTANCE_CAST(obj, GST_TYPE_ALSA, GstAlsa))
|
|
|
|
#define GST_ALSA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST(klass, GST_TYPE_ALSA, GstAlsaClass))
|
|
|
|
#define GST_ALSA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_ALSA, GstAlsaClass))
|
|
|
|
#define GST_IS_ALSA(obj) (G_TYPE_CHECK_INSTANCE_TYPE(obj, GST_TYPE_ALSA))
|
|
|
|
#define GST_IS_ALSA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE(klass, GST_TYPE_ALSA))
|
|
|
|
#define GST_TYPE_ALSA (gst_alsa_get_type())
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2003-05-15 16:32:22 +00:00
|
|
|
#define GST_ALSA_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST(obj, GST_TYPE_ALSA_SINK, GstAlsaSink))
|
|
|
|
#define GST_ALSA_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST(klass, GST_TYPE_ALSA_SINK, GstAlsaSinkClass))
|
|
|
|
#define GST_IS_ALSA_SINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE(obj, GST_TYPE_ALSA_SINK))
|
|
|
|
#define GST_IS_ALSA_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE(klass, GST_TYPE_ALSA_SINK))
|
|
|
|
#define GST_TYPE_ALSA_SINK (gst_alsa_sink_get_type())
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2003-05-15 16:32:22 +00:00
|
|
|
#define GST_ALSA_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST(obj, GST_TYPE_ALSA_SRC, GstAlsaSrc))
|
|
|
|
#define GST_ALSA_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST(klass, GST_TYPE_ALSA_SRC, GstAlsaSrcClass))
|
|
|
|
#define GST_IS_ALSA_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE(obj, GST_TYPE_ALSA_SRC))
|
|
|
|
#define GST_IS_ALSA_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE(klass, GST_TYPE_ALSA_SRC))
|
|
|
|
#define GST_TYPE_ALSA_SRC (gst_alsa_src_get_type())
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2003-05-15 16:32:22 +00:00
|
|
|
#define GST_ALSA_CLOCK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_ALSA_CLOCK,GstAlsaClock))
|
|
|
|
#define GST_ALSA_CLOCK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ALSA_CLOCK,GstAlsaClockClass))
|
|
|
|
#define GST_IS_ALSA_CLOCK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ALSA_CLOCK))
|
|
|
|
#define GST_IS_ALSA_CLOCK_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ALSA_CLOCK))
|
|
|
|
#define GST_TYPE_ALSA_CLOCK (gst_alsa_clock_get_type())
|
2003-04-13 04:13:12 +00:00
|
|
|
|
2001-12-23 00:25:30 +00:00
|
|
|
/* I would have preferred to avoid this variety of trickery, but without it i
|
|
|
|
* can't tell whether I'm a source or a sink upon creation. */
|
|
|
|
|
|
|
|
typedef struct _GstAlsa GstAlsa;
|
|
|
|
typedef struct _GstAlsaClass GstAlsaClass;
|
2003-04-24 00:03:06 +00:00
|
|
|
typedef struct _GstAlsaSink GstAlsaSink;
|
|
|
|
typedef struct _GstAlsaSinkClass GstAlsaSinkClass;
|
|
|
|
typedef struct _GstAlsaSrc GstAlsaSrc;
|
|
|
|
typedef struct _GstAlsaSrcClass GstAlsaSrcClass;
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2003-04-13 04:13:12 +00:00
|
|
|
typedef struct _GstAlsaClock GstAlsaClock;
|
|
|
|
typedef struct _GstAlsaClockClass GstAlsaClockClass;
|
|
|
|
|
|
|
|
typedef GstClockTime (*GstAlsaClockGetTimeFunc) (GstAlsa *owner);
|
|
|
|
|
2001-12-23 00:25:30 +00:00
|
|
|
enum {
|
2003-01-27 12:59:24 +00:00
|
|
|
GST_ALSA_OPEN = GST_ELEMENT_FLAG_LAST,
|
|
|
|
GST_ALSA_RUNNING,
|
2003-03-18 22:07:56 +00:00
|
|
|
GST_ALSA_CAPS_NEGO,
|
2003-01-27 12:59:24 +00:00
|
|
|
GST_ALSA_FLAG_LAST = GST_ELEMENT_FLAG_LAST + 3,
|
2001-12-23 00:25:30 +00:00
|
|
|
};
|
2003-03-18 22:07:56 +00:00
|
|
|
typedef enum {
|
|
|
|
GST_ALSA_CAPS_PAUSE = 0,
|
|
|
|
GST_ALSA_CAPS_RESUME,
|
|
|
|
GST_ALSA_CAPS_SYNC_START
|
|
|
|
/* add more */
|
|
|
|
} GstAlsaPcmCaps;
|
|
|
|
#define GST_ALSA_CAPS_IS_SET(obj, flag) (GST_ALSA (obj)->pcm_caps & (1<<(flag)))
|
|
|
|
#define GST_ALSA_CAPS_SET(obj, flag, set) G_STMT_START{ \
|
|
|
|
if (set) { \
|
|
|
|
(GST_ALSA (obj)->pcm_caps |= (1<<(flag))); \
|
|
|
|
} else { \
|
|
|
|
(GST_ALSA (obj)->pcm_caps &= ~(1<<(flag))); \
|
|
|
|
} \
|
|
|
|
}G_STMT_END
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2003-03-22 01:17:06 +00:00
|
|
|
typedef int (*GstAlsaTransmitFunction) (GstAlsa *this, snd_pcm_sframes_t *avail);
|
|
|
|
|
2003-03-18 22:07:56 +00:00
|
|
|
typedef struct {
|
2003-04-22 18:28:33 +00:00
|
|
|
snd_pcm_format_t format;
|
|
|
|
guint rate;
|
|
|
|
gint channels;
|
2003-03-18 22:07:56 +00:00
|
|
|
} GstAlsaFormat;
|
2003-04-22 18:28:33 +00:00
|
|
|
|
2001-12-23 00:25:30 +00:00
|
|
|
struct _GstAlsa {
|
2003-04-22 18:28:33 +00:00
|
|
|
GstElement parent;
|
2003-01-27 12:59:24 +00:00
|
|
|
|
2003-02-09 22:47:34 +00:00
|
|
|
/* array of GstAlsaPads */
|
2003-04-24 00:03:06 +00:00
|
|
|
GstPad * pad[GST_ALSA_MAX_CHANNELS];
|
2003-01-27 12:59:24 +00:00
|
|
|
|
2003-04-22 18:28:33 +00:00
|
|
|
gchar * device;
|
|
|
|
snd_pcm_t * handle;
|
|
|
|
guint pcm_caps; /* capabilities of the pcm device, see GstAlsaPcmCaps */
|
|
|
|
snd_output_t * out;
|
2003-01-27 12:59:24 +00:00
|
|
|
|
2003-04-22 18:28:33 +00:00
|
|
|
GstAlsaFormat * format; /* NULL if undefined */
|
|
|
|
gboolean mmap; /* use mmap transmit (fast) or read/write (sloooow) */
|
|
|
|
GstAlsaTransmitFunction transmit;
|
2003-01-27 12:59:24 +00:00
|
|
|
|
2003-02-09 22:47:34 +00:00
|
|
|
/* latency / performance parameters */
|
2003-04-22 18:28:33 +00:00
|
|
|
snd_pcm_uframes_t period_size;
|
|
|
|
unsigned int period_count;
|
2003-01-27 12:59:24 +00:00
|
|
|
|
2003-04-22 18:28:33 +00:00
|
|
|
gboolean autorecover;
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2003-04-13 04:13:12 +00:00
|
|
|
/* clocking */
|
2003-04-22 18:28:33 +00:00
|
|
|
GstAlsaClock * clock; /* our provided clock */
|
|
|
|
snd_pcm_uframes_t transmitted; /* samples transmitted since last sync
|
|
|
|
This thing actually is our master clock.
|
2003-04-13 04:13:12 +00:00
|
|
|
We will event insert silent samples or
|
|
|
|
drop some to sync to incoming timestamps.
|
2003-04-22 18:28:33 +00:00
|
|
|
*/
|
|
|
|
GstClockTime max_discont; /* max difference between current
|
2003-04-13 14:21:02 +00:00
|
|
|
playback timestamp and buffers timestamps
|
|
|
|
*/
|
2003-04-13 04:13:12 +00:00
|
|
|
};
|
2001-12-23 00:25:30 +00:00
|
|
|
struct _GstAlsaClass {
|
2003-04-24 00:03:06 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
|
|
|
|
snd_pcm_stream_t stream;
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2003-04-24 00:03:06 +00:00
|
|
|
/* different transmit functions */
|
|
|
|
GstAlsaTransmitFunction transmit_mmap;
|
|
|
|
GstAlsaTransmitFunction transmit_rw;
|
|
|
|
};
|
|
|
|
struct _GstAlsaSink {
|
|
|
|
GstAlsa parent;
|
|
|
|
/* array of the data on the channels */
|
|
|
|
guint8 * data[GST_ALSA_MAX_CHANNELS]; /* pointer into buffer */
|
|
|
|
guint size[GST_ALSA_MAX_CHANNELS]; /* sink: bytes left in buffer */
|
|
|
|
GstBuffer * buf[GST_ALSA_MAX_CHANNELS]; /* current buffer */
|
|
|
|
guint behaviour[GST_ALSA_MAX_CHANNELS]; /* 0 = data points into buffer (so unref when size == 0),
|
|
|
|
1 = data should be freed, use buffer after that */
|
|
|
|
};
|
|
|
|
struct _GstAlsaSinkClass {
|
|
|
|
GstAlsaClass parent_class;
|
|
|
|
};
|
|
|
|
struct _GstAlsaSrc {
|
|
|
|
GstAlsa parent;
|
2003-04-24 22:58:33 +00:00
|
|
|
|
|
|
|
GstBuffer * buf[GST_ALSA_MAX_CHANNELS];
|
|
|
|
GstBufferPool * pool;
|
2003-04-24 00:03:06 +00:00
|
|
|
};
|
|
|
|
struct _GstAlsaSrcClass {
|
|
|
|
GstAlsaClass parent_class;
|
|
|
|
};
|
2003-04-13 04:13:12 +00:00
|
|
|
|
|
|
|
struct _GstAlsaClock {
|
|
|
|
GstSystemClock parent;
|
|
|
|
|
|
|
|
GstAlsaClockGetTimeFunc get_time;
|
|
|
|
GstAlsa * owner;
|
|
|
|
|
2003-04-18 12:14:04 +00:00
|
|
|
GstClockTimeDiff adjust; /* adjustment to real clock (recalculated when stopping) */
|
|
|
|
GstClockTime start_time; /* time when the stream started (NONE when stopped) */
|
2003-04-13 04:13:12 +00:00
|
|
|
|
|
|
|
GstClockTime last_unlock; /* time of last unlock request */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstAlsaClockClass {
|
|
|
|
GstSystemClockClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_alsa_get_type (void);
|
|
|
|
GType gst_alsa_sink_get_type (void);
|
|
|
|
GType gst_alsa_src_get_type (void);
|
|
|
|
|
|
|
|
GType gst_alsa_clock_get_type (void);
|
2001-12-23 00:25:30 +00:00
|
|
|
|
|
|
|
#endif /* __ALSA_H__ */
|