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
|
2012-11-03 23:05:09 +00:00
|
|
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-01-27 12:59:24 +00:00
|
|
|
*/
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2005-08-19 16:13:54 +00:00
|
|
|
|
2001-12-23 00:25:30 +00:00
|
|
|
#ifndef __GST_ALSA_H__
|
|
|
|
#define __GST_ALSA_H__
|
|
|
|
|
2005-08-19 16:13:54 +00:00
|
|
|
|
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>
|
2004-04-30 01:20:54 +00:00
|
|
|
#include <alsa/control.h>
|
|
|
|
#include <alsa/error.h>
|
2001-12-23 00:25:30 +00:00
|
|
|
#include <gst/gst.h>
|
2011-12-20 10:44:27 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2001-12-23 00:25:30 +00:00
|
|
|
|
2008-02-11 20:23:44 +00:00
|
|
|
#define GST_CHECK_ALSA_VERSION(major,minor,micro) \
|
|
|
|
(SND_LIB_MAJOR > (major) || \
|
|
|
|
(SND_LIB_MAJOR == (major) && SND_LIB_MINOR > (minor)) || \
|
|
|
|
(SND_LIB_MAJOR == (major) && SND_LIB_MINOR == (minor) && \
|
|
|
|
SND_LIB_SUBMINOR >= (micro)))
|
|
|
|
|
2012-04-27 08:19:15 +00:00
|
|
|
#define PASSTHROUGH_CAPS \
|
|
|
|
"audio/x-ac3, framed = (boolean) true;" \
|
|
|
|
"audio/x-eac3, framed = (boolean) true; " \
|
|
|
|
"audio/x-dts, framed = (boolean) true, " \
|
|
|
|
"block-size = (int) { 512, 1024, 2048 }; " \
|
|
|
|
"audio/mpeg, mpegversion = (int) 1, " \
|
|
|
|
"mpegaudioversion = (int) [ 1, 2 ], parsed = (boolean) true;"
|
|
|
|
|
|
|
|
|
2005-11-07 19:42:38 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (alsa_debug);
|
|
|
|
#define GST_CAT_DEFAULT alsa_debug
|
2003-02-09 22:47:34 +00:00
|
|
|
|
2012-05-15 17:21:15 +00:00
|
|
|
snd_pcm_t * gst_alsa_open_iec958_pcm (GstObject * obj, gchar *device);
|
2008-02-29 18:44:36 +00:00
|
|
|
|
2006-05-16 15:52:17 +00:00
|
|
|
GstCaps * gst_alsa_probe_supported_formats (GstObject * obj,
|
2012-05-15 17:21:15 +00:00
|
|
|
gchar * device,
|
2006-05-16 15:52:17 +00:00
|
|
|
snd_pcm_t * handle,
|
|
|
|
const GstCaps * template_caps);
|
|
|
|
|
2007-02-08 15:43:26 +00:00
|
|
|
gchar * gst_alsa_find_device_name (GstObject * obj,
|
|
|
|
const gchar * device,
|
|
|
|
snd_pcm_t * handle,
|
|
|
|
snd_pcm_stream_t stream);
|
|
|
|
|
2010-08-18 14:42:13 +00:00
|
|
|
gchar * gst_alsa_find_card_name (GstObject * obj,
|
|
|
|
const gchar * devcard,
|
|
|
|
snd_pcm_stream_t stream);
|
|
|
|
|
2011-12-20 10:44:27 +00:00
|
|
|
void gst_alsa_add_channel_reorder_map (GstObject * obj,
|
|
|
|
GstCaps * caps);
|
|
|
|
|
|
|
|
extern const GstAudioChannelPosition alsa_position[][8];
|
2013-10-08 15:07:02 +00:00
|
|
|
#ifdef SND_CHMAP_API_VERSION
|
|
|
|
gboolean alsa_chmap_to_channel_positions (const snd_pcm_chmap_t *chmap,
|
|
|
|
GstAudioChannelPosition *pos);
|
|
|
|
#endif
|
2010-08-18 14:42:13 +00:00
|
|
|
|
2003-11-16 00:40:01 +00:00
|
|
|
#endif /* __GST_ALSA_H__ */
|