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
|
|
|
|
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>
|
|
|
|
|
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
|
|
|
|
2006-05-16 15:52:17 +00:00
|
|
|
GstCaps * gst_alsa_probe_supported_formats (GstObject * obj,
|
|
|
|
snd_pcm_t * handle,
|
|
|
|
const GstCaps * template_caps);
|
|
|
|
|
2003-11-16 00:40:01 +00:00
|
|
|
#endif /* __GST_ALSA_H__ */
|