2005-07-06 15:27:17 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
2005-07-08 11:42:47 +00:00
|
|
|
* gstalsasrc.c:
|
2003-11-16 00:40:01 +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
|
2005-07-06 15:27:17 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2003-11-16 00:40:01 +00:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
2005-07-06 15:27:17 +00:00
|
|
|
* 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.
|
2003-11-16 00:40:01 +00:00
|
|
|
*/
|
|
|
|
|
2006-03-01 18:25:18 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-alsasrc
|
2017-01-23 19:36:11 +00:00
|
|
|
* @title: alsasrc
|
2012-04-13 09:01:03 +00:00
|
|
|
* @see_also: alsasink
|
2006-03-01 18:25:18 +00:00
|
|
|
*
|
|
|
|
* This element reads data from an audio card using the ALSA API.
|
2008-07-10 21:06:06 +00:00
|
|
|
*
|
2017-01-23 19:36:11 +00:00
|
|
|
* ## Example pipelines
|
2008-07-10 21:06:06 +00:00
|
|
|
* |[
|
2015-05-09 21:33:26 +00:00
|
|
|
* gst-launch-1.0 -v alsasrc ! queue ! audioconvert ! vorbisenc ! oggmux ! filesink location=alsasrc.ogg
|
2017-01-23 19:36:11 +00:00
|
|
|
* ]|
|
|
|
|
* Record from a sound card using ALSA and encode to Ogg/Vorbis.
|
|
|
|
*
|
2006-03-01 18:25:18 +00:00
|
|
|
*/
|
|
|
|
|
2003-11-16 00:40:01 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2005-07-06 15:27:17 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <alsa/asoundlib.h>
|
|
|
|
|
2020-10-16 12:35:04 +00:00
|
|
|
#include "gstalsaelements.h"
|
2003-11-16 00:40:01 +00:00
|
|
|
#include "gstalsasrc.h"
|
|
|
|
|
2022-03-25 13:59:23 +00:00
|
|
|
#include <glib/gi18n-lib.h>
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
|
2014-12-01 08:50:24 +00:00
|
|
|
#ifndef ESTRPIPE
|
|
|
|
#define ESTRPIPE EPIPE
|
|
|
|
#endif
|
|
|
|
|
2018-06-08 09:03:03 +00:00
|
|
|
#define DEFAULT_PROP_DEVICE "default"
|
|
|
|
#define DEFAULT_PROP_DEVICE_NAME ""
|
|
|
|
#define DEFAULT_PROP_CARD_NAME ""
|
|
|
|
#define DEFAULT_PROP_USE_DRIVER_TIMESTAMP TRUE
|
2006-03-01 18:25:18 +00:00
|
|
|
|
2005-07-08 11:42:47 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_DEVICE,
|
2005-08-22 16:50:59 +00:00
|
|
|
PROP_DEVICE_NAME,
|
2010-08-18 14:45:37 +00:00
|
|
|
PROP_CARD_NAME,
|
2018-06-08 09:03:03 +00:00
|
|
|
PROP_USE_DRIVER_TIMESTAMP,
|
2010-08-18 14:45:37 +00:00
|
|
|
PROP_LAST
|
2005-07-08 11:42:47 +00:00
|
|
|
};
|
|
|
|
|
2011-04-19 12:11:32 +00:00
|
|
|
#define gst_alsasrc_parent_class parent_class
|
2012-04-13 09:01:03 +00:00
|
|
|
G_DEFINE_TYPE (GstAlsaSrc, gst_alsasrc, GST_TYPE_AUDIO_SRC);
|
2020-10-16 12:35:04 +00:00
|
|
|
GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (alsasrc, "alsasrc", GST_RANK_PRIMARY,
|
2021-03-16 11:55:55 +00:00
|
|
|
GST_TYPE_ALSA_SRC, alsa_element_init (plugin));
|
2005-08-22 15:11:31 +00:00
|
|
|
|
2007-03-01 16:48:45 +00:00
|
|
|
static void gst_alsasrc_finalize (GObject * object);
|
2005-07-08 11:42:47 +00:00
|
|
|
static void gst_alsasrc_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_alsasrc_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
2012-09-10 09:26:38 +00:00
|
|
|
static GstStateChangeReturn gst_alsasrc_change_state (GstElement * element,
|
|
|
|
GstStateChange transition);
|
2011-05-16 10:17:49 +00:00
|
|
|
static GstCaps *gst_alsasrc_getcaps (GstBaseSrc * bsrc, GstCaps * filter);
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2005-08-22 15:11:31 +00:00
|
|
|
static gboolean gst_alsasrc_open (GstAudioSrc * asrc);
|
|
|
|
static gboolean gst_alsasrc_prepare (GstAudioSrc * asrc,
|
2011-11-11 10:21:41 +00:00
|
|
|
GstAudioRingBufferSpec * spec);
|
2005-08-22 15:11:31 +00:00
|
|
|
static gboolean gst_alsasrc_unprepare (GstAudioSrc * asrc);
|
2005-07-06 15:27:17 +00:00
|
|
|
static gboolean gst_alsasrc_close (GstAudioSrc * asrc);
|
2012-09-10 09:26:38 +00:00
|
|
|
static guint gst_alsasrc_read
|
|
|
|
(GstAudioSrc * asrc, gpointer data, guint length, GstClockTime * timestamp);
|
2005-07-06 15:27:17 +00:00
|
|
|
static guint gst_alsasrc_delay (GstAudioSrc * asrc);
|
|
|
|
static void gst_alsasrc_reset (GstAudioSrc * asrc);
|
|
|
|
|
|
|
|
/* AlsaSrc signals and args */
|
|
|
|
enum
|
2003-11-16 00:40:01 +00:00
|
|
|
{
|
2005-07-06 15:27:17 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2006-03-01 18:25:18 +00:00
|
|
|
#if (G_BYTE_ORDER == G_LITTLE_ENDIAN)
|
|
|
|
# define ALSA_SRC_FACTORY_ENDIANNESS "LITTLE_ENDIAN, BIG_ENDIAN"
|
|
|
|
#else
|
|
|
|
# define ALSA_SRC_FACTORY_ENDIANNESS "BIG_ENDIAN, LITTLE_ENDIAN"
|
|
|
|
#endif
|
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
static GstStaticPadTemplate alsasrc_src_factory =
|
2011-08-18 17:15:03 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
2005-07-06 15:27:17 +00:00
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-08-18 17:15:03 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw, "
|
|
|
|
"format = (string) " GST_AUDIO_FORMATS_ALL ", "
|
2011-12-31 13:25:09 +00:00
|
|
|
"layout = (string) interleaved, "
|
2006-07-02 11:08:58 +00:00
|
|
|
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, MAX ]")
|
2005-07-06 15:27:17 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static void
|
2007-03-01 16:48:45 +00:00
|
|
|
gst_alsasrc_finalize (GObject * object)
|
2005-07-06 15:27:17 +00:00
|
|
|
{
|
2006-05-18 17:19:39 +00:00
|
|
|
GstAlsaSrc *src = GST_ALSA_SRC (object);
|
|
|
|
|
|
|
|
g_free (src->device);
|
2012-09-10 00:06:51 +00:00
|
|
|
g_mutex_clear (&src->alsa_lock);
|
2006-05-18 17:19:39 +00:00
|
|
|
|
2007-03-01 16:48:45 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-07-06 15:27:17 +00:00
|
|
|
gst_alsasrc_class_init (GstAlsaSrcClass * klass)
|
2003-11-16 00:40:01 +00:00
|
|
|
{
|
2005-07-06 15:27:17 +00:00
|
|
|
GObjectClass *gobject_class;
|
2011-04-19 12:11:32 +00:00
|
|
|
GstElementClass *gstelement_class;
|
2005-07-06 15:27:17 +00:00
|
|
|
GstBaseSrcClass *gstbasesrc_class;
|
|
|
|
GstAudioSrcClass *gstaudiosrc_class;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2011-04-19 12:11:32 +00:00
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2005-07-06 15:27:17 +00:00
|
|
|
gstbasesrc_class = (GstBaseSrcClass *) klass;
|
|
|
|
gstaudiosrc_class = (GstAudioSrcClass *) klass;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2009-10-28 00:59:35 +00:00
|
|
|
gobject_class->finalize = gst_alsasrc_finalize;
|
|
|
|
gobject_class->get_property = gst_alsasrc_get_property;
|
|
|
|
gobject_class->set_property = gst_alsasrc_set_property;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2012-04-09 23:45:16 +00:00
|
|
|
gst_element_class_set_static_metadata (gstelement_class,
|
2011-04-19 12:11:32 +00:00
|
|
|
"Audio source (ALSA)", "Source/Audio",
|
|
|
|
"Read from a sound card via ALSA", "Wim Taymans <wim@fluendo.com>");
|
|
|
|
|
2016-03-03 07:46:24 +00:00
|
|
|
gst_element_class_add_static_pad_template (gstelement_class,
|
|
|
|
&alsasrc_src_factory);
|
2011-04-19 12:11:32 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
gstbasesrc_class->get_caps = GST_DEBUG_FUNCPTR (gst_alsasrc_getcaps);
|
|
|
|
|
|
|
|
gstaudiosrc_class->open = GST_DEBUG_FUNCPTR (gst_alsasrc_open);
|
2005-08-22 15:11:31 +00:00
|
|
|
gstaudiosrc_class->prepare = GST_DEBUG_FUNCPTR (gst_alsasrc_prepare);
|
|
|
|
gstaudiosrc_class->unprepare = GST_DEBUG_FUNCPTR (gst_alsasrc_unprepare);
|
2005-07-06 15:27:17 +00:00
|
|
|
gstaudiosrc_class->close = GST_DEBUG_FUNCPTR (gst_alsasrc_close);
|
|
|
|
gstaudiosrc_class->read = GST_DEBUG_FUNCPTR (gst_alsasrc_read);
|
|
|
|
gstaudiosrc_class->delay = GST_DEBUG_FUNCPTR (gst_alsasrc_delay);
|
|
|
|
gstaudiosrc_class->reset = GST_DEBUG_FUNCPTR (gst_alsasrc_reset);
|
2012-09-10 09:26:38 +00:00
|
|
|
gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_alsasrc_change_state);
|
2005-07-08 11:42:47 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_DEVICE,
|
|
|
|
g_param_spec_string ("device", "Device",
|
|
|
|
"ALSA device, as defined in an asound configuration file",
|
2008-03-22 15:00:53 +00:00
|
|
|
DEFAULT_PROP_DEVICE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2005-08-22 16:50:59 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_DEVICE_NAME,
|
|
|
|
g_param_spec_string ("device-name", "Device name",
|
2006-03-01 18:25:18 +00:00
|
|
|
"Human-readable name of the sound device",
|
2008-03-22 15:00:53 +00:00
|
|
|
DEFAULT_PROP_DEVICE_NAME, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
2010-08-18 14:45:37 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_CARD_NAME,
|
|
|
|
g_param_spec_string ("card-name", "Card name",
|
|
|
|
"Human-readable name of the sound card",
|
2018-11-11 22:03:33 +00:00
|
|
|
DEFAULT_PROP_CARD_NAME, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS
|
|
|
|
| GST_PARAM_DOC_SHOW_DEFAULT));
|
2018-06-08 09:03:03 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_USE_DRIVER_TIMESTAMP,
|
|
|
|
g_param_spec_boolean ("use-driver-timestamps", "Use driver timestamps",
|
|
|
|
"Use driver timestamps or the pipeline clock timestamps",
|
|
|
|
DEFAULT_PROP_USE_DRIVER_TIMESTAMP,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2005-07-08 11:42:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_alsasrc_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstAlsaSrc *src;
|
|
|
|
|
|
|
|
src = GST_ALSA_SRC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_DEVICE:
|
2006-05-18 17:19:39 +00:00
|
|
|
g_free (src->device);
|
|
|
|
src->device = g_value_dup_string (value);
|
2006-08-16 11:38:52 +00:00
|
|
|
if (src->device == NULL) {
|
|
|
|
src->device = g_strdup (DEFAULT_PROP_DEVICE);
|
|
|
|
}
|
2005-07-08 11:42:47 +00:00
|
|
|
break;
|
2018-06-08 09:03:03 +00:00
|
|
|
case PROP_USE_DRIVER_TIMESTAMP:
|
|
|
|
GST_OBJECT_LOCK (src);
|
|
|
|
src->use_driver_timestamps = g_value_get_boolean (value);
|
|
|
|
GST_OBJECT_UNLOCK (src);
|
|
|
|
break;
|
2005-07-08 11:42:47 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_alsasrc_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstAlsaSrc *src;
|
|
|
|
|
|
|
|
src = GST_ALSA_SRC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_DEVICE:
|
|
|
|
g_value_set_string (value, src->device);
|
|
|
|
break;
|
2005-08-22 16:50:59 +00:00
|
|
|
case PROP_DEVICE_NAME:
|
2007-02-08 15:43:26 +00:00
|
|
|
g_value_take_string (value,
|
|
|
|
gst_alsa_find_device_name (GST_OBJECT_CAST (src),
|
|
|
|
src->device, src->handle, SND_PCM_STREAM_CAPTURE));
|
2005-08-22 16:50:59 +00:00
|
|
|
break;
|
2010-08-18 14:45:37 +00:00
|
|
|
case PROP_CARD_NAME:
|
|
|
|
g_value_take_string (value,
|
|
|
|
gst_alsa_find_card_name (GST_OBJECT_CAST (src),
|
|
|
|
src->device, SND_PCM_STREAM_CAPTURE));
|
|
|
|
break;
|
2018-06-08 09:03:03 +00:00
|
|
|
case PROP_USE_DRIVER_TIMESTAMP:
|
|
|
|
GST_OBJECT_LOCK (src);
|
|
|
|
g_value_set_boolean (value, src->use_driver_timestamps);
|
|
|
|
GST_OBJECT_UNLOCK (src);
|
|
|
|
break;
|
2005-07-08 11:42:47 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
2004-06-17 14:10:21 +00:00
|
|
|
|
2012-09-10 09:26:38 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_alsasrc_change_state (GstElement * element, GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
|
|
|
|
GstAlsaSrc *alsa = GST_ALSA_SRC (element);
|
|
|
|
GstClock *clk;
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
/* show the compiler that we care */
|
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
2017-06-15 15:21:13 +00:00
|
|
|
case GST_STATE_CHANGE_NULL_TO_NULL:
|
|
|
|
case GST_STATE_CHANGE_READY_TO_READY:
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_PAUSED:
|
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PLAYING:
|
2012-09-10 09:26:38 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
|
|
|
|
alsa->driver_timestamps = FALSE;
|
2013-05-07 05:49:00 +00:00
|
|
|
|
|
|
|
clk = gst_element_get_clock (element);
|
|
|
|
if (clk != NULL) {
|
2019-04-29 09:25:02 +00:00
|
|
|
if (G_OBJECT_TYPE (clk) == GST_TYPE_SYSTEM_CLOCK) {
|
2013-05-07 05:49:00 +00:00
|
|
|
gint clocktype;
|
|
|
|
g_object_get (clk, "clock-type", &clocktype, NULL);
|
2018-06-08 09:03:03 +00:00
|
|
|
if (clocktype == GST_CLOCK_TYPE_MONOTONIC &&
|
|
|
|
alsa->use_driver_timestamps) {
|
2013-05-07 05:49:00 +00:00
|
|
|
GST_INFO ("Using driver timestamps !");
|
2015-12-14 18:59:02 +00:00
|
|
|
alsa->driver_timestamps = TRUE;
|
2018-06-08 09:03:03 +00:00
|
|
|
} else {
|
|
|
|
GST_INFO ("Not using driver timestamps !");
|
|
|
|
alsa->driver_timestamps = FALSE;
|
2013-05-29 14:41:14 +00:00
|
|
|
}
|
2012-09-10 09:26:38 +00:00
|
|
|
}
|
2013-05-07 05:49:00 +00:00
|
|
|
|
|
|
|
gst_object_unref (clk);
|
2012-09-10 09:26:38 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-11-16 00:40:01 +00:00
|
|
|
static void
|
2011-04-19 12:11:32 +00:00
|
|
|
gst_alsasrc_init (GstAlsaSrc * alsasrc)
|
2003-11-16 00:40:01 +00:00
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_DEBUG_OBJECT (alsasrc, "initializing");
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2006-03-01 18:25:18 +00:00
|
|
|
alsasrc->device = g_strdup (DEFAULT_PROP_DEVICE);
|
2006-05-16 15:52:17 +00:00
|
|
|
alsasrc->cached_caps = NULL;
|
2012-09-10 09:26:38 +00:00
|
|
|
alsasrc->driver_timestamps = FALSE;
|
2018-06-08 09:03:03 +00:00
|
|
|
alsasrc->use_driver_timestamps = DEFAULT_PROP_USE_DRIVER_TIMESTAMP;
|
2007-03-01 16:48:45 +00:00
|
|
|
|
2012-09-10 00:06:51 +00:00
|
|
|
g_mutex_init (&alsasrc->alsa_lock);
|
2005-07-06 15:27:17 +00:00
|
|
|
}
|
2004-06-25 17:11:32 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
#define CHECK(call, error) \
|
2005-12-06 19:42:02 +00:00
|
|
|
G_STMT_START { \
|
|
|
|
if ((err = call) < 0) \
|
|
|
|
goto error; \
|
2005-07-06 15:27:17 +00:00
|
|
|
} G_STMT_END;
|
2004-06-25 17:11:32 +00:00
|
|
|
|
2006-05-16 15:52:17 +00:00
|
|
|
|
|
|
|
static GstCaps *
|
2011-05-16 10:17:49 +00:00
|
|
|
gst_alsasrc_getcaps (GstBaseSrc * bsrc, GstCaps * filter)
|
2006-05-16 15:52:17 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class;
|
|
|
|
GstPadTemplate *pad_template;
|
|
|
|
GstAlsaSrc *src;
|
2011-05-17 11:01:39 +00:00
|
|
|
GstCaps *caps, *templ_caps;
|
2006-05-16 15:52:17 +00:00
|
|
|
|
|
|
|
src = GST_ALSA_SRC (bsrc);
|
|
|
|
|
|
|
|
if (src->handle == NULL) {
|
|
|
|
GST_DEBUG_OBJECT (src, "device not open, using template caps");
|
2011-11-10 15:02:01 +00:00
|
|
|
return GST_BASE_SRC_CLASS (parent_class)->get_caps (bsrc, filter);
|
2006-05-16 15:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (src->cached_caps) {
|
|
|
|
GST_LOG_OBJECT (src, "Returning cached caps");
|
2011-05-16 10:17:49 +00:00
|
|
|
if (filter)
|
|
|
|
return gst_caps_intersect_full (filter, src->cached_caps,
|
|
|
|
GST_CAPS_INTERSECT_FIRST);
|
|
|
|
else
|
|
|
|
return gst_caps_ref (src->cached_caps);
|
2006-05-16 15:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
element_class = GST_ELEMENT_GET_CLASS (src);
|
|
|
|
pad_template = gst_element_class_get_pad_template (element_class, "src");
|
|
|
|
g_return_val_if_fail (pad_template != NULL, NULL);
|
|
|
|
|
2011-05-17 11:01:39 +00:00
|
|
|
templ_caps = gst_pad_template_get_caps (pad_template);
|
2011-11-10 15:02:01 +00:00
|
|
|
GST_INFO_OBJECT (src, "template caps %" GST_PTR_FORMAT, templ_caps);
|
|
|
|
|
2012-05-15 17:21:15 +00:00
|
|
|
caps = gst_alsa_probe_supported_formats (GST_OBJECT (src),
|
|
|
|
src->device, src->handle, templ_caps);
|
2011-05-17 11:01:39 +00:00
|
|
|
gst_caps_unref (templ_caps);
|
2006-05-16 15:52:17 +00:00
|
|
|
|
|
|
|
if (caps) {
|
|
|
|
src->cached_caps = gst_caps_ref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_INFO_OBJECT (src, "returning caps %" GST_PTR_FORMAT, caps);
|
|
|
|
|
2011-05-16 10:17:49 +00:00
|
|
|
if (filter) {
|
|
|
|
GstCaps *intersection;
|
|
|
|
|
|
|
|
intersection =
|
|
|
|
gst_caps_intersect_full (filter, caps, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
return intersection;
|
|
|
|
} else {
|
|
|
|
return caps;
|
|
|
|
}
|
2006-05-16 15:52:17 +00:00
|
|
|
}
|
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
static int
|
|
|
|
set_hwparams (GstAlsaSrc * alsa)
|
|
|
|
{
|
|
|
|
guint rrate;
|
2021-06-10 07:55:23 +00:00
|
|
|
gint err = 0;
|
|
|
|
snd_pcm_hw_params_t *params, *params_copy;
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_hw_params_malloc (¶ms);
|
2021-06-10 07:55:23 +00:00
|
|
|
snd_pcm_hw_params_malloc (¶ms_copy);
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
/* choose all parameters */
|
|
|
|
CHECK (snd_pcm_hw_params_any (alsa->handle, params), no_config);
|
|
|
|
/* set the interleaved read/write format */
|
|
|
|
CHECK (snd_pcm_hw_params_set_access (alsa->handle, params, alsa->access),
|
|
|
|
wrong_access);
|
|
|
|
/* set the sample format */
|
|
|
|
CHECK (snd_pcm_hw_params_set_format (alsa->handle, params, alsa->format),
|
|
|
|
no_sample_format);
|
|
|
|
/* set the count of channels */
|
|
|
|
CHECK (snd_pcm_hw_params_set_channels (alsa->handle, params, alsa->channels),
|
|
|
|
no_channels);
|
|
|
|
/* set the stream rate */
|
|
|
|
rrate = alsa->rate;
|
Correct all relevant warnings found by the sparse semantic code analyzer. This include marking several symbols static...
Original commit message from CVS:
* ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_get_type):
* ext/alsa/gstalsasink.c: (set_hwparams):
* ext/alsa/gstalsasrc.c: (set_hwparams):
* ext/gio/gstgio.c: (gst_gio_uri_handler_get_uri):
* ext/ogg/gstoggmux.h:
* ext/ogg/gstogmparse.c:
* gst-libs/gst/audio/audio.c:
* gst-libs/gst/fft/kiss_fft_f64.c: (kiss_fft_f64_alloc):
* gst-libs/gst/pbutils/missing-plugins.c:
(gst_missing_uri_sink_message_new),
(gst_missing_element_message_new),
(gst_missing_decoder_message_new),
(gst_missing_encoder_message_new):
* gst-libs/gst/rtp/gstbasertppayload.c:
* gst-libs/gst/rtp/gstrtcpbuffer.c:
(gst_rtcp_packet_bye_get_reason):
* gst/audioconvert/gstaudioconvert.c:
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/imgconvert.c:
* gst/playback/test.c: (gen_video_element), (gen_audio_element):
* gst/typefind/gsttypefindfunctions.c:
* gst/videoscale/vs_4tap.c:
* gst/videoscale/vs_4tap.h:
* sys/v4l/gstv4lelement.c:
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_any_caps):
* sys/v4l/v4l_calls.c:
* sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
(gst_v4lsrc_try_capture):
* sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
(gst_ximagesink_ximage_new):
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
(gst_xvimagesink_xvimage_new):
* tests/check/elements/audioconvert.c:
* tests/check/elements/audioresample.c:
(fail_unless_perfect_stream):
* tests/check/elements/audiotestsrc.c: (setup_audiotestsrc):
* tests/check/elements/decodebin.c:
* tests/check/elements/gdpdepay.c: (setup_gdpdepay),
(setup_gdpdepay_streamheader):
* tests/check/elements/gdppay.c: (setup_gdppay), (GST_START_TEST),
(setup_gdppay_streamheader):
* tests/check/elements/gnomevfssink.c: (setup_gnomevfssink):
* tests/check/elements/multifdsink.c: (setup_multifdsink):
* tests/check/elements/textoverlay.c:
* tests/check/elements/videorate.c: (setup_videorate):
* tests/check/elements/videotestsrc.c: (setup_videotestsrc):
* tests/check/elements/volume.c: (setup_volume):
* tests/check/elements/vorbisdec.c: (setup_vorbisdec):
* tests/check/elements/vorbistag.c:
* tests/check/generic/clock-selection.c:
* tests/check/generic/states.c: (setup), (teardown):
* tests/check/libs/cddabasesrc.c:
* tests/check/libs/video.c:
* tests/check/pipelines/gio.c:
* tests/check/pipelines/oggmux.c:
* tests/check/pipelines/simple-launch-lines.c:
(simple_launch_lines_suite):
* tests/check/pipelines/streamheader.c:
* tests/check/pipelines/theoraenc.c:
* tests/check/pipelines/vorbisdec.c:
* tests/check/pipelines/vorbisenc.c:
* tests/examples/seek/scrubby.c:
* tests/examples/seek/seek.c: (query_positions_elems),
(query_positions_pads):
* tests/icles/stress-xoverlay.c: (myclock):
Correct all relevant warnings found by the sparse semantic code
analyzer. This include marking several symbols static, using
NULL instead of 0 for pointers and using "foo (void)" instead
of "foo ()" for declarations.
* win32/common/libgstrtp.def:
Add gst_rtp_buffer_set_extension_data to the symbol definition file.
2008-03-03 06:04:31 +00:00
|
|
|
CHECK (snd_pcm_hw_params_set_rate_near (alsa->handle, params, &rrate, NULL),
|
2005-07-06 15:27:17 +00:00
|
|
|
no_rate);
|
|
|
|
if (rrate != alsa->rate)
|
|
|
|
goto rate_match;
|
|
|
|
|
2013-05-20 09:23:06 +00:00
|
|
|
#ifndef GST_DISABLE_GST_DEBUG
|
|
|
|
/* get and dump some limits */
|
|
|
|
{
|
|
|
|
guint min, max;
|
|
|
|
|
|
|
|
snd_pcm_hw_params_get_buffer_time_min (params, &min, NULL);
|
|
|
|
snd_pcm_hw_params_get_buffer_time_max (params, &max, NULL);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (alsa, "buffer time %u, min %u, max %u",
|
|
|
|
alsa->buffer_time, min, max);
|
|
|
|
|
|
|
|
snd_pcm_hw_params_get_period_time_min (params, &min, NULL);
|
|
|
|
snd_pcm_hw_params_get_period_time_max (params, &max, NULL);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (alsa, "period time %u, min %u, max %u",
|
|
|
|
alsa->period_time, min, max);
|
|
|
|
|
|
|
|
snd_pcm_hw_params_get_periods_min (params, &min, NULL);
|
|
|
|
snd_pcm_hw_params_get_periods_max (params, &max, NULL);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (alsa, "periods min %u, max %u", min, max);
|
|
|
|
}
|
|
|
|
#endif
|
2021-06-10 07:55:23 +00:00
|
|
|
/* Keep a copy of initial params struct that can be used later */
|
|
|
|
snd_pcm_hw_params_copy (params_copy, params);
|
2021-02-09 13:16:34 +00:00
|
|
|
/* Following pulseaudio's approach in
|
|
|
|
* https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/557c4295107dc7374c850b0bd5331dd35e8fdd0f
|
|
|
|
* we'll try various configuration to set the buffer time and period time as some
|
|
|
|
* driver can be picky on the order of the calls.
|
|
|
|
*/
|
|
|
|
if (alsa->period_time != -1 && alsa->buffer_time != -1) {
|
2021-06-10 07:55:23 +00:00
|
|
|
if ((snd_pcm_hw_params_set_period_time_near (alsa->handle, params,
|
|
|
|
&alsa->period_time, NULL) >= 0)
|
|
|
|
&& (snd_pcm_hw_params_set_buffer_time_near (alsa->handle, params,
|
|
|
|
&alsa->buffer_time, NULL) >= 0)) {
|
|
|
|
GST_DEBUG_OBJECT (alsa, "period time %u buffer time %u set correctly",
|
|
|
|
alsa->period_time, alsa->buffer_time);
|
|
|
|
goto success;
|
|
|
|
}
|
|
|
|
/* Try the new order with previous params struct as current one might
|
|
|
|
have partial settings from the order that was tried unsuccessfully */
|
|
|
|
snd_pcm_hw_params_copy (params, params_copy);
|
2021-02-09 13:16:34 +00:00
|
|
|
if ((snd_pcm_hw_params_set_buffer_time_near (alsa->handle, params,
|
|
|
|
&alsa->buffer_time, NULL) >= 0)
|
|
|
|
&& (snd_pcm_hw_params_set_period_time_near (alsa->handle, params,
|
|
|
|
&alsa->period_time, NULL) >= 0)) {
|
|
|
|
GST_DEBUG_OBJECT (alsa, "buffer time %u period time %u set correctly",
|
|
|
|
alsa->buffer_time, alsa->period_time);
|
2021-06-10 07:55:23 +00:00
|
|
|
goto success;
|
2021-02-09 13:16:34 +00:00
|
|
|
}
|
2021-06-10 07:55:23 +00:00
|
|
|
}
|
|
|
|
if (alsa->period_time != -1) {
|
|
|
|
snd_pcm_hw_params_copy (params, params_copy);
|
|
|
|
/* set the period time only */
|
2021-02-09 13:16:34 +00:00
|
|
|
if ((snd_pcm_hw_params_set_period_time_near (alsa->handle, params,
|
2021-06-10 07:55:23 +00:00
|
|
|
&alsa->period_time, NULL) >= 0)) {
|
|
|
|
GST_DEBUG_OBJECT (alsa, "period time %u set correctly",
|
|
|
|
alsa->period_time);
|
|
|
|
goto success;
|
2021-02-09 13:16:34 +00:00
|
|
|
}
|
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
if (alsa->buffer_time != -1) {
|
2021-06-10 07:55:23 +00:00
|
|
|
snd_pcm_hw_params_copy (params, params_copy);
|
|
|
|
/* set the buffer time only */
|
|
|
|
if ((snd_pcm_hw_params_set_buffer_time_near (alsa->handle, params,
|
|
|
|
&alsa->buffer_time, NULL) >= 0)) {
|
|
|
|
GST_DEBUG_OBJECT (alsa, "buffer time %u set correctly",
|
|
|
|
alsa->buffer_time);
|
|
|
|
goto success;
|
|
|
|
}
|
2004-06-25 17:11:32 +00:00
|
|
|
}
|
2021-06-10 07:55:23 +00:00
|
|
|
/* Set nothing if all above failed */
|
|
|
|
snd_pcm_hw_params_copy (params, params_copy);
|
|
|
|
GST_DEBUG_OBJECT (alsa, "Not setting period time and buffer time");
|
2004-06-25 17:11:32 +00:00
|
|
|
|
2021-06-10 07:55:23 +00:00
|
|
|
success:
|
2005-07-06 15:27:17 +00:00
|
|
|
/* write the parameters to device */
|
|
|
|
CHECK (snd_pcm_hw_params (alsa->handle, params), set_hw_params);
|
|
|
|
CHECK (snd_pcm_hw_params_get_buffer_size (params, &alsa->buffer_size),
|
|
|
|
buffer_size);
|
2021-06-10 07:55:23 +00:00
|
|
|
GST_DEBUG_OBJECT (alsa, "buffer size : %lu", alsa->buffer_size);
|
|
|
|
CHECK (snd_pcm_hw_params_get_period_size (params, &alsa->period_size,
|
|
|
|
NULL), period_size);
|
|
|
|
GST_DEBUG_OBJECT (alsa, "period size : %lu", alsa->period_size);
|
2004-06-25 17:11:32 +00:00
|
|
|
|
2021-06-10 07:55:23 +00:00
|
|
|
goto exit;
|
2005-07-06 15:27:17 +00:00
|
|
|
/* ERRORS */
|
|
|
|
no_config:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
2005-07-06 15:27:17 +00:00
|
|
|
("Broken configuration for recording: no configurations available: %s",
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
snd_strerror (err)));
|
2021-06-10 07:55:23 +00:00
|
|
|
goto exit;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
wrong_access:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Access type not available for recording: %s", snd_strerror (err)));
|
2021-06-10 07:55:23 +00:00
|
|
|
goto exit;
|
2005-07-06 15:27:17 +00:00
|
|
|
}
|
|
|
|
no_sample_format:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Sample format not available for recording: %s", snd_strerror (err)));
|
2021-06-10 07:55:23 +00:00
|
|
|
goto exit;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
no_channels:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
gchar *msg = NULL;
|
|
|
|
|
|
|
|
if ((alsa->channels) == 1)
|
|
|
|
msg = g_strdup (_("Could not open device for recording in mono mode."));
|
|
|
|
if ((alsa->channels) == 2)
|
|
|
|
msg = g_strdup (_("Could not open device for recording in stereo mode."));
|
|
|
|
if ((alsa->channels) > 2)
|
|
|
|
msg =
|
|
|
|
g_strdup_printf (_
|
|
|
|
("Could not open device for recording in %d-channel mode"),
|
|
|
|
alsa->channels);
|
2010-04-08 00:26:09 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, ("%s", msg),
|
|
|
|
("%s", snd_strerror (err)));
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
g_free (msg);
|
2021-06-10 07:55:23 +00:00
|
|
|
goto exit;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
no_rate:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
2005-07-06 15:27:17 +00:00
|
|
|
("Rate %iHz not available for recording: %s",
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
alsa->rate, snd_strerror (err)));
|
2021-06-10 07:55:23 +00:00
|
|
|
goto exit;
|
2005-07-06 15:27:17 +00:00
|
|
|
}
|
|
|
|
rate_match:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Rate doesn't match (requested %iHz, get %iHz)", alsa->rate, err));
|
2021-06-10 07:55:23 +00:00
|
|
|
err = -EINVAL;
|
|
|
|
goto exit;
|
2005-07-06 15:27:17 +00:00
|
|
|
}
|
|
|
|
buffer_size:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to get buffer size for recording: %s", snd_strerror (err)));
|
2021-06-10 07:55:23 +00:00
|
|
|
goto exit;
|
2005-07-06 15:27:17 +00:00
|
|
|
}
|
|
|
|
period_size:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to get period size for recording: %s", snd_strerror (err)));
|
2021-06-10 07:55:23 +00:00
|
|
|
goto exit;
|
2005-07-06 15:27:17 +00:00
|
|
|
}
|
|
|
|
set_hw_params:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to set hw params for recording: %s", snd_strerror (err)));
|
2021-06-10 07:55:23 +00:00
|
|
|
}
|
|
|
|
exit:
|
|
|
|
{
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_hw_params_free (params);
|
2021-06-10 07:55:23 +00:00
|
|
|
snd_pcm_hw_params_free (params_copy);
|
2005-07-06 15:27:17 +00:00
|
|
|
return err;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2003-11-16 00:40:01 +00:00
|
|
|
static int
|
2005-07-06 15:27:17 +00:00
|
|
|
set_swparams (GstAlsaSrc * alsa)
|
2003-11-16 00:40:01 +00:00
|
|
|
{
|
2005-07-06 15:27:17 +00:00
|
|
|
int err;
|
|
|
|
snd_pcm_sw_params_t *params;
|
|
|
|
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_sw_params_malloc (¶ms);
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
/* get the current swparams */
|
|
|
|
CHECK (snd_pcm_sw_params_current (alsa->handle, params), no_config);
|
|
|
|
/* allow the transfer when at least period_size samples can be processed */
|
|
|
|
CHECK (snd_pcm_sw_params_set_avail_min (alsa->handle, params,
|
|
|
|
alsa->period_size), set_avail);
|
2007-03-01 16:48:45 +00:00
|
|
|
/* start the transfer on first read */
|
|
|
|
CHECK (snd_pcm_sw_params_set_start_threshold (alsa->handle, params,
|
|
|
|
0), start_threshold);
|
2012-09-10 09:26:38 +00:00
|
|
|
/* use monotonic timestamping */
|
|
|
|
CHECK (snd_pcm_sw_params_set_tstamp_mode (alsa->handle, params,
|
|
|
|
SND_PCM_TSTAMP_MMAP), tstamp_mode);
|
2008-02-11 20:23:44 +00:00
|
|
|
|
|
|
|
#if GST_CHECK_ALSA_VERSION(1,0,16)
|
|
|
|
/* snd_pcm_sw_params_set_xfer_align() is deprecated, alignment is always 1 */
|
|
|
|
#else
|
2005-07-06 15:27:17 +00:00
|
|
|
/* align all transfers to 1 sample */
|
|
|
|
CHECK (snd_pcm_sw_params_set_xfer_align (alsa->handle, params, 1), set_align);
|
2008-02-11 20:23:44 +00:00
|
|
|
#endif
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
/* write the parameters to the recording device */
|
|
|
|
CHECK (snd_pcm_sw_params (alsa->handle, params), set_sw_params);
|
|
|
|
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_sw_params_free (params);
|
2005-07-06 15:27:17 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_config:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to determine current swparams for playback: %s",
|
|
|
|
snd_strerror (err)));
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_sw_params_free (params);
|
2005-07-06 15:27:17 +00:00
|
|
|
return err;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
start_threshold:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to set start threshold mode for playback: %s",
|
|
|
|
snd_strerror (err)));
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_sw_params_free (params);
|
2005-07-06 15:27:17 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
set_avail:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to set avail min for playback: %s", snd_strerror (err)));
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_sw_params_free (params);
|
2005-07-06 15:27:17 +00:00
|
|
|
return err;
|
|
|
|
}
|
2012-09-10 09:26:38 +00:00
|
|
|
tstamp_mode:
|
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to set tstamp mode for playback: %s", snd_strerror (err)));
|
|
|
|
snd_pcm_sw_params_free (params);
|
|
|
|
return err;
|
|
|
|
}
|
2008-02-11 20:23:44 +00:00
|
|
|
#if !GST_CHECK_ALSA_VERSION(1,0,16)
|
2005-07-06 15:27:17 +00:00
|
|
|
set_align:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to set transfer align for playback: %s", snd_strerror (err)));
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_sw_params_free (params);
|
2005-07-06 15:27:17 +00:00
|
|
|
return err;
|
|
|
|
}
|
2008-02-11 20:23:44 +00:00
|
|
|
#endif
|
2005-07-06 15:27:17 +00:00
|
|
|
set_sw_params:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to set sw params for playback: %s", snd_strerror (err)));
|
2007-09-16 01:56:21 +00:00
|
|
|
snd_pcm_sw_params_free (params);
|
2005-07-06 15:27:17 +00:00
|
|
|
return err;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
static gboolean
|
2011-11-11 10:21:41 +00:00
|
|
|
alsasrc_parse_spec (GstAlsaSrc * alsa, GstAudioRingBufferSpec * spec)
|
2005-07-06 15:27:17 +00:00
|
|
|
{
|
|
|
|
switch (spec->type) {
|
2011-12-25 21:38:21 +00:00
|
|
|
case GST_AUDIO_RING_BUFFER_FORMAT_TYPE_RAW:
|
2011-08-18 17:15:03 +00:00
|
|
|
switch (GST_AUDIO_INFO_FORMAT (&spec->info)) {
|
|
|
|
case GST_AUDIO_FORMAT_U8:
|
|
|
|
alsa->format = SND_PCM_FORMAT_U8;
|
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_S8:
|
|
|
|
alsa->format = SND_PCM_FORMAT_S8;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S16LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S16_LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S16BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S16_BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U16LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U16_LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U16BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U16_BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S24_32LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S24_LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S24_32BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S24_BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U24_32LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U24_LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U24_32BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U24_BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S32LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S32_LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S32BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S32_BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U32LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U32_LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U32BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U32_BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S24LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S24_3LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S24BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S24_3BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U24LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U24_3LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U24BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U24_3BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S20LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S20_3LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S20BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S20_3BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U20LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U20_3LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U20BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U20_3BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S18LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S18_3LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_S18BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_S18_3BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U18LE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U18_3LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_U18BE:
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_U18_3BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_F32LE:
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_FLOAT_LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_F32BE:
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_FLOAT_BE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_F64LE:
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_FLOAT64_LE;
|
|
|
|
break;
|
2011-09-06 10:06:39 +00:00
|
|
|
case GST_AUDIO_FORMAT_F64BE:
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_FLOAT64_BE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
break;
|
2011-12-25 21:38:21 +00:00
|
|
|
case GST_AUDIO_RING_BUFFER_FORMAT_TYPE_A_LAW:
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_A_LAW;
|
|
|
|
break;
|
2011-12-25 21:38:21 +00:00
|
|
|
case GST_AUDIO_RING_BUFFER_FORMAT_TYPE_MU_LAW:
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa->format = SND_PCM_FORMAT_MU_LAW;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto error;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
|
|
|
}
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->rate = GST_AUDIO_INFO_RATE (&spec->info);
|
|
|
|
alsa->channels = GST_AUDIO_INFO_CHANNELS (&spec->info);
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa->buffer_time = spec->buffer_time;
|
|
|
|
alsa->period_time = spec->latency_time;
|
|
|
|
alsa->access = SND_PCM_ACCESS_RW_INTERLEAVED;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2011-12-20 10:44:27 +00:00
|
|
|
if (spec->type == GST_AUDIO_RING_BUFFER_FORMAT_TYPE_RAW && alsa->channels < 9)
|
|
|
|
gst_audio_ring_buffer_set_channel_positions (GST_AUDIO_BASE_SRC
|
|
|
|
(alsa)->ringbuffer, alsa_position[alsa->channels - 1]);
|
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
error:
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-16 00:40:01 +00:00
|
|
|
static gboolean
|
2005-08-22 15:11:31 +00:00
|
|
|
gst_alsasrc_open (GstAudioSrc * asrc)
|
2003-11-16 00:40:01 +00:00
|
|
|
{
|
2005-07-06 15:27:17 +00:00
|
|
|
GstAlsaSrc *alsa;
|
|
|
|
gint err;
|
|
|
|
|
|
|
|
alsa = GST_ALSA_SRC (asrc);
|
|
|
|
|
|
|
|
CHECK (snd_pcm_open (&alsa->handle, alsa->device, SND_PCM_STREAM_CAPTURE,
|
2014-11-28 13:28:06 +00:00
|
|
|
(alsa->driver_timestamps) ? 0 : SND_PCM_NONBLOCK), open_error);
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2005-08-22 15:11:31 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
open_error:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
if (err == -EBUSY) {
|
2007-11-03 10:39:21 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, BUSY,
|
|
|
|
(_("Could not open audio device for recording. "
|
|
|
|
"Device is being used by another application.")),
|
|
|
|
("Device '%s' is busy", alsa->device));
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
} else {
|
2007-11-03 10:39:21 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, OPEN_READ,
|
|
|
|
(_("Could not open audio device for recording.")),
|
|
|
|
("Recording open error on device '%s': %s", alsa->device,
|
2006-08-16 11:38:52 +00:00
|
|
|
snd_strerror (err)));
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
}
|
2005-08-22 15:11:31 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-11-11 10:21:41 +00:00
|
|
|
gst_alsasrc_prepare (GstAudioSrc * asrc, GstAudioRingBufferSpec * spec)
|
2005-08-22 15:11:31 +00:00
|
|
|
{
|
|
|
|
GstAlsaSrc *alsa;
|
|
|
|
gint err;
|
|
|
|
|
|
|
|
alsa = GST_ALSA_SRC (asrc);
|
|
|
|
|
|
|
|
if (!alsasrc_parse_spec (alsa, spec))
|
|
|
|
goto spec_parse;
|
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
CHECK (snd_pcm_nonblock (alsa->handle, 0), non_block);
|
|
|
|
|
|
|
|
CHECK (set_hwparams (alsa), hw_params_failed);
|
|
|
|
CHECK (set_swparams (alsa), sw_params_failed);
|
|
|
|
CHECK (snd_pcm_prepare (alsa->handle), prepare_failed);
|
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
alsa->bpf = GST_AUDIO_INFO_BPF (&spec->info);
|
|
|
|
spec->segsize = alsa->period_size * alsa->bpf;
|
2005-07-06 15:27:17 +00:00
|
|
|
spec->segtotal = alsa->buffer_size / alsa->period_size;
|
|
|
|
|
2013-05-29 14:41:14 +00:00
|
|
|
{
|
|
|
|
snd_output_t *out_buf = NULL;
|
|
|
|
char *msg = NULL;
|
|
|
|
|
|
|
|
snd_output_buffer_open (&out_buf);
|
|
|
|
snd_pcm_dump_hw_setup (alsa->handle, out_buf);
|
|
|
|
snd_output_buffer_string (out_buf, &msg);
|
|
|
|
GST_DEBUG_OBJECT (alsa, "Hardware setup: \n%s", msg);
|
|
|
|
snd_output_close (out_buf);
|
|
|
|
snd_output_buffer_open (&out_buf);
|
|
|
|
snd_pcm_dump_sw_setup (alsa->handle, out_buf);
|
|
|
|
snd_output_buffer_string (out_buf, &msg);
|
|
|
|
GST_DEBUG_OBJECT (alsa, "Software setup: \n%s", msg);
|
|
|
|
snd_output_close (out_buf);
|
|
|
|
}
|
|
|
|
|
2013-10-08 15:07:02 +00:00
|
|
|
#ifdef SND_CHMAP_API_VERSION
|
2016-03-21 09:09:10 +00:00
|
|
|
alsa_detect_channels_mapping (GST_OBJECT (alsa), alsa->handle, spec,
|
|
|
|
alsa->channels, GST_AUDIO_BASE_SRC (alsa)->ringbuffer);
|
2013-10-08 15:07:02 +00:00
|
|
|
#endif /* SND_CHMAP_API_VERSION */
|
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
spec_parse:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Error parsing spec"));
|
2005-07-06 15:27:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
non_block:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Could not set device to blocking: %s", snd_strerror (err)));
|
2005-07-06 15:27:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
hw_params_failed:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Setting of hwparams failed: %s", snd_strerror (err)));
|
2005-07-06 15:27:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
sw_params_failed:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Setting of swparams failed: %s", snd_strerror (err)));
|
2005-07-06 15:27:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
prepare_failed:
|
|
|
|
{
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Prepare failed: %s", snd_strerror (err)));
|
2005-07-06 15:27:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
static gboolean
|
2005-08-22 15:11:31 +00:00
|
|
|
gst_alsasrc_unprepare (GstAudioSrc * asrc)
|
2005-07-06 15:27:17 +00:00
|
|
|
{
|
|
|
|
GstAlsaSrc *alsa;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa = GST_ALSA_SRC (asrc);
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2010-04-04 19:18:04 +00:00
|
|
|
snd_pcm_drop (alsa->handle);
|
|
|
|
snd_pcm_hw_free (alsa->handle);
|
|
|
|
snd_pcm_nonblock (alsa->handle, 1);
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
return TRUE;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2005-08-22 15:11:31 +00:00
|
|
|
static gboolean
|
|
|
|
gst_alsasrc_close (GstAudioSrc * asrc)
|
|
|
|
{
|
|
|
|
GstAlsaSrc *alsa = GST_ALSA_SRC (asrc);
|
|
|
|
|
|
|
|
snd_pcm_close (alsa->handle);
|
2009-07-27 09:29:27 +00:00
|
|
|
alsa->handle = NULL;
|
2005-08-22 15:11:31 +00:00
|
|
|
|
2006-05-16 15:52:17 +00:00
|
|
|
gst_caps_replace (&alsa->cached_caps, NULL);
|
|
|
|
|
2005-08-22 15:11:31 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Underrun and suspend recovery
|
|
|
|
*/
|
|
|
|
static gint
|
2006-09-15 09:09:00 +00:00
|
|
|
xrun_recovery (GstAlsaSrc * alsa, snd_pcm_t * handle, gint err)
|
2004-06-23 18:08:26 +00:00
|
|
|
{
|
2014-11-25 22:01:08 +00:00
|
|
|
GST_WARNING_OBJECT (alsa, "xrun recovery %d: %s", err, g_strerror (-err));
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
if (err == -EPIPE) { /* under-run */
|
|
|
|
err = snd_pcm_prepare (handle);
|
|
|
|
if (err < 0)
|
2006-09-15 09:09:00 +00:00
|
|
|
GST_WARNING_OBJECT (alsa,
|
2014-11-25 22:01:08 +00:00
|
|
|
"Can't recover from underrun, prepare failed: %s",
|
2005-07-06 15:27:17 +00:00
|
|
|
snd_strerror (err));
|
|
|
|
return 0;
|
|
|
|
} else if (err == -ESTRPIPE) {
|
|
|
|
while ((err = snd_pcm_resume (handle)) == -EAGAIN)
|
|
|
|
g_usleep (100); /* wait until the suspend flag is released */
|
|
|
|
|
|
|
|
if (err < 0) {
|
|
|
|
err = snd_pcm_prepare (handle);
|
|
|
|
if (err < 0)
|
2006-09-15 09:09:00 +00:00
|
|
|
GST_WARNING_OBJECT (alsa,
|
2014-11-25 22:01:08 +00:00
|
|
|
"Can't recover from suspend, prepare failed: %s",
|
2005-07-06 15:27:17 +00:00
|
|
|
snd_strerror (err));
|
2004-06-23 18:08:26 +00:00
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
return 0;
|
2004-06-23 18:08:26 +00:00
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
return err;
|
2004-06-23 18:08:26 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 09:26:38 +00:00
|
|
|
static GstClockTime
|
|
|
|
gst_alsasrc_get_timestamp (GstAlsaSrc * asrc)
|
|
|
|
{
|
|
|
|
snd_pcm_status_t *status;
|
|
|
|
snd_htimestamp_t tstamp;
|
|
|
|
GstClockTime timestamp;
|
|
|
|
snd_pcm_uframes_t avail;
|
|
|
|
gint err = -EPIPE;
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!asrc)) {
|
|
|
|
GST_ERROR_OBJECT (asrc, "No alsa handle created yet !");
|
|
|
|
return GST_CLOCK_TIME_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (snd_pcm_status_malloc (&status) != 0)) {
|
|
|
|
GST_ERROR_OBJECT (asrc, "snd_pcm_status_malloc failed");
|
|
|
|
return GST_CLOCK_TIME_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (snd_pcm_status (asrc->handle, status) != 0)) {
|
|
|
|
GST_ERROR_OBJECT (asrc, "snd_pcm_status failed");
|
|
|
|
return GST_CLOCK_TIME_NONE;
|
|
|
|
}
|
|
|
|
|
2019-08-29 17:42:39 +00:00
|
|
|
/* in case an xrun condition has occurred we need to handle this */
|
2012-09-10 09:26:38 +00:00
|
|
|
if (snd_pcm_status_get_state (status) != SND_PCM_STATE_RUNNING) {
|
|
|
|
if (xrun_recovery (asrc, asrc->handle, err) < 0) {
|
|
|
|
GST_WARNING_OBJECT (asrc, "Could not recover from xrun condition !");
|
|
|
|
}
|
|
|
|
/* reload the status alsa status object, since recovery made it invalid */
|
|
|
|
if (G_UNLIKELY (snd_pcm_status (asrc->handle, status) != 0)) {
|
|
|
|
GST_ERROR_OBJECT (asrc, "snd_pcm_status failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get high resolution time stamp from driver */
|
|
|
|
snd_pcm_status_get_htstamp (status, &tstamp);
|
2018-02-26 13:25:40 +00:00
|
|
|
|
|
|
|
if (tstamp.tv_sec == 0 && tstamp.tv_nsec == 0)
|
|
|
|
return GST_CLOCK_TIME_NONE;
|
|
|
|
|
2012-09-10 09:26:38 +00:00
|
|
|
timestamp = GST_TIMESPEC_TO_TIME (tstamp);
|
|
|
|
|
|
|
|
/* max available frames sets the depth of the buffer */
|
|
|
|
avail = snd_pcm_status_get_avail (status);
|
|
|
|
|
|
|
|
/* calculate the timestamp of the next sample to be read */
|
|
|
|
timestamp -= gst_util_uint64_scale_int (avail, GST_SECOND, asrc->rate);
|
|
|
|
|
|
|
|
/* compensate for the fact that we really need the timestamp of the
|
|
|
|
* previously read data segment */
|
|
|
|
timestamp -= asrc->period_time * 1000;
|
|
|
|
|
|
|
|
snd_pcm_status_free (status);
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (asrc, "ALSA timestamp : %" GST_TIME_FORMAT
|
|
|
|
", delay %lu", GST_TIME_ARGS (timestamp), avail);
|
|
|
|
|
|
|
|
return timestamp;
|
|
|
|
}
|
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
static guint
|
2012-09-10 09:26:38 +00:00
|
|
|
gst_alsasrc_read (GstAudioSrc * asrc, gpointer data, guint length,
|
|
|
|
GstClockTime * timestamp)
|
2003-11-16 00:40:01 +00:00
|
|
|
{
|
2005-07-06 15:27:17 +00:00
|
|
|
GstAlsaSrc *alsa;
|
|
|
|
gint err;
|
|
|
|
gint cptr;
|
2015-10-13 21:32:11 +00:00
|
|
|
guint8 *ptr = data;
|
2005-07-06 15:27:17 +00:00
|
|
|
|
|
|
|
alsa = GST_ALSA_SRC (asrc);
|
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
cptr = length / alsa->bpf;
|
2005-07-06 15:27:17 +00:00
|
|
|
|
2007-03-01 16:48:45 +00:00
|
|
|
GST_ALSA_SRC_LOCK (asrc);
|
2005-07-06 15:27:17 +00:00
|
|
|
while (cptr > 0) {
|
2018-03-07 18:50:05 +00:00
|
|
|
if ((err = snd_pcm_readi (alsa->handle, ptr, cptr)) < 0) {
|
2005-07-06 15:27:17 +00:00
|
|
|
if (err == -EAGAIN) {
|
ext/alsa/: Update all error messages. All of them should either use the default translated message, or actually prov...
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
(set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
(gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
* ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
(set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
(gst_alsasrc_unprepare), (gst_alsasrc_read):
Update all error messages. All of them should either use
the default translated message, or actually provide a
translatable string.
Make the string for channel count problems meaningful.
2006-01-28 18:22:06 +00:00
|
|
|
GST_DEBUG_OBJECT (asrc, "Read error: %s", snd_strerror (err));
|
2005-07-06 15:27:17 +00:00
|
|
|
continue;
|
2012-12-15 19:36:56 +00:00
|
|
|
} else if (err == -ENODEV) {
|
|
|
|
goto device_disappeared;
|
2006-09-15 09:09:00 +00:00
|
|
|
} else if (xrun_recovery (alsa, alsa->handle, err) < 0) {
|
2005-07-06 15:27:17 +00:00
|
|
|
goto read_error;
|
|
|
|
}
|
|
|
|
continue;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
|
|
|
|
2015-10-13 21:32:11 +00:00
|
|
|
ptr += snd_pcm_frames_to_bytes (alsa->handle, err);
|
2005-07-06 15:27:17 +00:00
|
|
|
cptr -= err;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
2007-03-01 16:48:45 +00:00
|
|
|
GST_ALSA_SRC_UNLOCK (asrc);
|
|
|
|
|
2012-09-10 09:26:38 +00:00
|
|
|
/* if driver timestamps are enabled we need to return this here */
|
|
|
|
if (alsa->driver_timestamps && timestamp)
|
|
|
|
*timestamp = gst_alsasrc_get_timestamp (alsa);
|
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
return length - (cptr * alsa->bpf);
|
2004-05-09 17:25:16 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
read_error:
|
2004-06-17 14:10:21 +00:00
|
|
|
{
|
2007-03-01 16:48:45 +00:00
|
|
|
GST_ALSA_SRC_UNLOCK (asrc);
|
2005-07-06 15:27:17 +00:00
|
|
|
return length; /* skip one period */
|
|
|
|
}
|
2012-12-15 19:36:56 +00:00
|
|
|
device_disappeared:
|
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (asrc, RESOURCE, READ,
|
|
|
|
(_("Error recording from audio device. "
|
|
|
|
"The device has been disconnected.")), (NULL));
|
2012-12-17 20:32:52 +00:00
|
|
|
GST_ALSA_SRC_UNLOCK (asrc);
|
|
|
|
return (guint) - 1;
|
2012-12-15 19:36:56 +00:00
|
|
|
}
|
2005-07-06 15:27:17 +00:00
|
|
|
}
|
2004-06-17 14:10:21 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
static guint
|
|
|
|
gst_alsasrc_delay (GstAudioSrc * asrc)
|
|
|
|
{
|
|
|
|
GstAlsaSrc *alsa;
|
|
|
|
snd_pcm_sframes_t delay;
|
2007-08-24 15:28:33 +00:00
|
|
|
int res;
|
2004-06-17 14:10:21 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa = GST_ALSA_SRC (asrc);
|
2004-06-17 14:10:21 +00:00
|
|
|
|
2007-08-24 15:28:33 +00:00
|
|
|
res = snd_pcm_delay (alsa->handle, &delay);
|
|
|
|
if (G_UNLIKELY (res < 0)) {
|
|
|
|
GST_DEBUG_OBJECT (alsa, "snd_pcm_delay returned %d", res);
|
|
|
|
delay = 0;
|
|
|
|
}
|
2004-06-17 14:10:21 +00:00
|
|
|
|
2006-02-09 11:36:18 +00:00
|
|
|
return CLAMP (delay, 0, alsa->buffer_size);
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-07-06 15:27:17 +00:00
|
|
|
gst_alsasrc_reset (GstAudioSrc * asrc)
|
2003-11-16 00:40:01 +00:00
|
|
|
{
|
2005-07-06 15:27:17 +00:00
|
|
|
GstAlsaSrc *alsa;
|
|
|
|
gint err;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
alsa = GST_ALSA_SRC (asrc);
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2007-03-01 16:48:45 +00:00
|
|
|
GST_ALSA_SRC_LOCK (asrc);
|
|
|
|
GST_DEBUG_OBJECT (alsa, "drop");
|
2005-07-06 15:27:17 +00:00
|
|
|
CHECK (snd_pcm_drop (alsa->handle), drop_error);
|
2007-03-01 16:48:45 +00:00
|
|
|
GST_DEBUG_OBJECT (alsa, "prepare");
|
2005-07-06 15:27:17 +00:00
|
|
|
CHECK (snd_pcm_prepare (alsa->handle), prepare_error);
|
2007-03-01 16:48:45 +00:00
|
|
|
GST_DEBUG_OBJECT (alsa, "reset done");
|
|
|
|
GST_ALSA_SRC_UNLOCK (asrc);
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
return;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2005-07-06 15:27:17 +00:00
|
|
|
/* ERRORS */
|
|
|
|
drop_error:
|
|
|
|
{
|
2007-03-01 16:48:45 +00:00
|
|
|
GST_ERROR_OBJECT (alsa, "alsa-reset: pcm drop error: %s",
|
|
|
|
snd_strerror (err));
|
|
|
|
GST_ALSA_SRC_UNLOCK (asrc);
|
2005-07-06 15:27:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
prepare_error:
|
|
|
|
{
|
2007-03-01 16:48:45 +00:00
|
|
|
GST_ERROR_OBJECT (alsa, "alsa-reset: pcm prepare error: %s",
|
|
|
|
snd_strerror (err));
|
|
|
|
GST_ALSA_SRC_UNLOCK (asrc);
|
2005-07-06 15:27:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|