2001-12-17 19:03:13 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
2005-07-08 11:19:19 +00:00
|
|
|
* 2000,2005 Wim Taymans <wim@fluendo.com>
|
2001-12-17 19:03:13 +00:00
|
|
|
*
|
|
|
|
* gstosssink.c:
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2006-08-16 10:22:32 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-osssink
|
|
|
|
*
|
|
|
|
* This element lets you output sound using the Open Sound System (OSS).
|
2009-01-29 08:10:08 +00:00
|
|
|
*
|
2006-08-16 10:22:32 +00:00
|
|
|
* Note that you should almost always use generic audio conversion elements
|
|
|
|
* like audioconvert and audioresample in front of an audiosink to make sure
|
|
|
|
* your pipeline works under all circumstances (those conversion elements will
|
|
|
|
* act in passthrough-mode if no conversion is necessary).
|
2009-01-29 08:10:08 +00:00
|
|
|
*
|
|
|
|
* <refsect2>
|
2006-08-16 10:22:32 +00:00
|
|
|
* <title>Example pipelines</title>
|
2009-01-29 08:10:08 +00:00
|
|
|
* |[
|
2006-08-16 10:22:32 +00:00
|
|
|
* gst-launch -v audiotestsrc ! audioconvert ! volume volume=0.1 ! osssink
|
2009-01-29 08:10:08 +00:00
|
|
|
* ]| will output a sine wave (continuous beep sound) to your sound card (with
|
2006-08-16 10:22:32 +00:00
|
|
|
* a very low volume as precaution).
|
2009-01-29 08:10:08 +00:00
|
|
|
* |[
|
2006-08-16 10:22:32 +00:00
|
|
|
* gst-launch -v filesrc location=music.ogg ! decodebin ! audioconvert ! audioresample ! osssink
|
2009-01-29 08:10:08 +00:00
|
|
|
* ]| will play an Ogg/Vorbis audio file and output it using the Open Sound System.
|
2006-08-16 10:22:32 +00:00
|
|
|
* </refsect2>
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2001-12-17 19:03:13 +00:00
|
|
|
#include <sys/ioctl.h>
|
2005-07-08 11:19:19 +00:00
|
|
|
#include <fcntl.h>
|
2003-05-31 14:14:21 +00:00
|
|
|
#include <errno.h>
|
2003-06-29 19:46:12 +00:00
|
|
|
#include <unistd.h>
|
2004-03-11 04:08:44 +00:00
|
|
|
#include <string.h>
|
2004-06-07 13:40:08 +00:00
|
|
|
|
2005-12-10 14:57:48 +00:00
|
|
|
#ifdef HAVE_OSS_INCLUDE_IN_SYS
|
|
|
|
# include <sys/soundcard.h>
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_OSS_INCLUDE_IN_ROOT
|
|
|
|
# include <soundcard.h>
|
|
|
|
# else
|
|
|
|
# ifdef HAVE_OSS_INCLUDE_IN_MACHINE
|
|
|
|
# include <machine/soundcard.h>
|
|
|
|
# else
|
|
|
|
# error "What to include?"
|
|
|
|
# endif /* HAVE_OSS_INCLUDE_IN_MACHINE */
|
|
|
|
# endif /* HAVE_OSS_INCLUDE_IN_ROOT */
|
|
|
|
#endif /* HAVE_OSS_INCLUDE_IN_SYS */
|
2004-06-07 13:40:08 +00:00
|
|
|
|
2006-04-10 19:55:31 +00:00
|
|
|
#include "common.h"
|
2003-06-29 19:46:12 +00:00
|
|
|
#include "gstosssink.h"
|
2001-12-17 19:03:13 +00:00
|
|
|
|
2007-12-07 20:07:49 +00:00
|
|
|
#include <gst/gst-i18n-plugin.h>
|
|
|
|
|
2005-10-26 11:12:34 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (oss_debug);
|
|
|
|
#define GST_CAT_DEFAULT oss_debug
|
|
|
|
|
2005-07-10 12:52:20 +00:00
|
|
|
static void gst_oss_sink_base_init (gpointer g_class);
|
|
|
|
static void gst_oss_sink_class_init (GstOssSinkClass * klass);
|
|
|
|
static void gst_oss_sink_init (GstOssSink * osssink);
|
2006-01-27 01:43:07 +00:00
|
|
|
|
2005-07-10 12:52:20 +00:00
|
|
|
static void gst_oss_sink_dispose (GObject * object);
|
2006-01-27 01:43:07 +00:00
|
|
|
static void gst_oss_sink_finalise (GObject * object);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
static void gst_oss_sink_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_oss_sink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
|
2005-07-10 12:52:20 +00:00
|
|
|
static GstCaps *gst_oss_sink_getcaps (GstBaseSink * bsink);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2005-08-08 16:43:47 +00:00
|
|
|
static gboolean gst_oss_sink_open (GstAudioSink * asink);
|
2005-07-10 12:52:20 +00:00
|
|
|
static gboolean gst_oss_sink_close (GstAudioSink * asink);
|
2005-08-08 16:43:47 +00:00
|
|
|
static gboolean gst_oss_sink_prepare (GstAudioSink * asink,
|
|
|
|
GstRingBufferSpec * spec);
|
|
|
|
static gboolean gst_oss_sink_unprepare (GstAudioSink * asink);
|
2005-07-10 12:52:20 +00:00
|
|
|
static guint gst_oss_sink_write (GstAudioSink * asink, gpointer data,
|
2005-07-08 11:19:19 +00:00
|
|
|
guint length);
|
2005-07-10 12:52:20 +00:00
|
|
|
static guint gst_oss_sink_delay (GstAudioSink * asink);
|
|
|
|
static void gst_oss_sink_reset (GstAudioSink * asink);
|
2001-12-17 19:03:13 +00:00
|
|
|
|
|
|
|
/* OssSink signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-17 19:03:13 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
#define DEFAULT_DEVICE "/dev/dsp"
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_DEVICE,
|
|
|
|
};
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate osssink_sink_factory =
|
2004-06-29 11:20:25 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/x-raw-int, "
|
2005-08-23 09:46:29 +00:00
|
|
|
"endianness = (int) { " G_STRINGIFY (G_BYTE_ORDER) " }, "
|
|
|
|
"signed = (boolean) { TRUE, FALSE }, "
|
2004-06-29 11:20:25 +00:00
|
|
|
"width = (int) 16, "
|
2005-07-08 11:19:19 +00:00
|
|
|
"depth = (int) 16, "
|
2004-06-29 11:20:25 +00:00
|
|
|
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]; "
|
|
|
|
"audio/x-raw-int, "
|
|
|
|
"signed = (boolean) { TRUE, FALSE }, "
|
|
|
|
"width = (int) 8, "
|
|
|
|
"depth = (int) 8, "
|
sys/oss/gstosselement.c: Add code to handle rate probing (bug #120883)
Original commit message from CVS:
* sys/oss/gstosselement.c: (gst_osselement_sync_parms),
(gst_osselement_close_audio), (gst_osselement_probe_caps),
(gst_osselement_get_format_structure),
(gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
(gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
(gst_osselement_rate_int_compare): Add code to handle rate probing
(bug #120883)
* sys/oss/gstosselement.h: same
* sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
Use rate probing provided by osselement.
* sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
2004-03-25 02:43:48 +00:00
|
|
|
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2001-12-17 19:03:13 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2005-07-08 11:19:19 +00:00
|
|
|
|
2005-07-10 12:52:20 +00:00
|
|
|
/* static guint gst_oss_sink_signals[LAST_SIGNAL] = { 0 }; */
|
2001-12-17 19:03:13 +00:00
|
|
|
|
|
|
|
GType
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_get_type (void)
|
2001-12-17 19:03:13 +00:00
|
|
|
{
|
|
|
|
static GType osssink_type = 0;
|
|
|
|
|
|
|
|
if (!osssink_type) {
|
|
|
|
static const GTypeInfo osssink_info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstOssSinkClass),
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_base_init,
|
2001-12-17 19:03:13 +00:00
|
|
|
NULL,
|
2005-07-10 12:52:20 +00:00
|
|
|
(GClassInitFunc) gst_oss_sink_class_init,
|
2001-12-17 19:03:13 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstOssSink),
|
2001-12-17 19:03:13 +00:00
|
|
|
0,
|
2005-07-10 12:52:20 +00:00
|
|
|
(GInstanceInitFunc) gst_oss_sink_init,
|
2001-12-17 19:03:13 +00:00
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
osssink_type =
|
2005-07-10 12:52:20 +00:00
|
|
|
g_type_register_static (GST_TYPE_AUDIO_SINK, "GstOssSink",
|
2004-03-15 19:32:27 +00:00
|
|
|
&osssink_info, 0);
|
2001-12-17 19:03:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return osssink_type;
|
|
|
|
}
|
|
|
|
|
2003-05-10 11:35:59 +00:00
|
|
|
static void
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_dispose (GObject * object)
|
2003-05-10 11:35:59 +00:00
|
|
|
{
|
2005-11-07 17:35:20 +00:00
|
|
|
GstOssSink *osssink = GST_OSSSINK (object);
|
|
|
|
|
|
|
|
if (osssink->probed_caps) {
|
|
|
|
gst_caps_unref (osssink->probed_caps);
|
|
|
|
osssink->probed_caps = NULL;
|
|
|
|
}
|
|
|
|
|
2003-05-10 11:35:59 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
2003-10-31 20:03:30 +00:00
|
|
|
static void
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_base_init (gpointer g_class)
|
2003-10-31 20:03:30 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2010-03-18 13:31:35 +00:00
|
|
|
gst_element_class_set_details_simple (element_class, "Audio Sink (OSS)",
|
|
|
|
"Sink/Audio",
|
|
|
|
"Output to a sound card via OSS",
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
|
|
|
"Wim Taymans <wim.taymans@chello.be>");
|
2005-07-08 11:19:19 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&osssink_sink_factory));
|
2003-10-31 20:03:30 +00:00
|
|
|
}
|
2009-01-29 08:10:08 +00:00
|
|
|
|
2001-12-17 19:03:13 +00:00
|
|
|
static void
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_class_init (GstOssSinkClass * klass)
|
2001-12-17 19:03:13 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2005-07-08 11:19:19 +00:00
|
|
|
GstBaseSinkClass *gstbasesink_class;
|
|
|
|
GstAudioSinkClass *gstaudiosink_class;
|
2001-12-17 19:03:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2005-07-08 11:19:19 +00:00
|
|
|
gstbasesink_class = (GstBaseSinkClass *) klass;
|
|
|
|
gstaudiosink_class = (GstAudioSinkClass *) klass;
|
|
|
|
|
2006-04-08 21:21:45 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-12-17 19:03:13 +00:00
|
|
|
|
2005-12-11 17:50:50 +00:00
|
|
|
gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_oss_sink_dispose);
|
2006-01-27 01:43:07 +00:00
|
|
|
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_oss_sink_finalise);
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_oss_sink_get_property);
|
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_oss_sink_set_property);
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_DEVICE,
|
|
|
|
g_param_spec_string ("device", "Device",
|
|
|
|
"OSS device (usually /dev/dspN)", DEFAULT_DEVICE, G_PARAM_READWRITE));
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2005-07-10 12:52:20 +00:00
|
|
|
gstbasesink_class->get_caps = GST_DEBUG_FUNCPTR (gst_oss_sink_getcaps);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2005-07-10 12:52:20 +00:00
|
|
|
gstaudiosink_class->open = GST_DEBUG_FUNCPTR (gst_oss_sink_open);
|
|
|
|
gstaudiosink_class->close = GST_DEBUG_FUNCPTR (gst_oss_sink_close);
|
2005-08-08 16:43:47 +00:00
|
|
|
gstaudiosink_class->prepare = GST_DEBUG_FUNCPTR (gst_oss_sink_prepare);
|
|
|
|
gstaudiosink_class->unprepare = GST_DEBUG_FUNCPTR (gst_oss_sink_unprepare);
|
2005-07-10 12:52:20 +00:00
|
|
|
gstaudiosink_class->write = GST_DEBUG_FUNCPTR (gst_oss_sink_write);
|
|
|
|
gstaudiosink_class->delay = GST_DEBUG_FUNCPTR (gst_oss_sink_delay);
|
|
|
|
gstaudiosink_class->reset = GST_DEBUG_FUNCPTR (gst_oss_sink_reset);
|
2002-03-30 17:06:26 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_init (GstOssSink * osssink)
|
2001-12-17 19:03:13 +00:00
|
|
|
{
|
2007-12-07 19:29:39 +00:00
|
|
|
const gchar *device;
|
|
|
|
|
2006-04-10 19:55:31 +00:00
|
|
|
GST_DEBUG_OBJECT (osssink, "initializing osssink");
|
2003-12-24 03:31:06 +00:00
|
|
|
|
2007-12-07 19:29:39 +00:00
|
|
|
device = g_getenv ("AUDIODEV");
|
|
|
|
if (device == NULL)
|
|
|
|
device = DEFAULT_DEVICE;
|
|
|
|
osssink->device = g_strdup (device);
|
2005-08-23 13:26:21 +00:00
|
|
|
osssink->fd = -1;
|
2003-12-24 03:31:06 +00:00
|
|
|
}
|
2002-05-28 22:52:52 +00:00
|
|
|
|
2006-01-27 01:43:07 +00:00
|
|
|
static void
|
|
|
|
gst_oss_sink_finalise (GObject * object)
|
|
|
|
{
|
|
|
|
GstOssSink *osssink = GST_OSSSINK (object);
|
|
|
|
|
|
|
|
g_free (osssink->device);
|
Fix a bunch of leaks shown by the newly-added states test.
Original commit message from CVS:
* ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
(gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
* ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
(gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
(gst_gconf_audio_src_finalize), (do_toggle_element):
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
(gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
(do_toggle_element):
* ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
(gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
(gst_gconf_video_src_finalize), (do_toggle_element):
* ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
(gst_switch_sink_reset), (gst_switch_sink_set_child):
* ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
* ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
* ext/shout2/gstshout2.c: (gst_shout2send_class_init),
(gst_shout2send_init), (gst_shout2send_finalize):
* gst/debug/testplugin.c: (gst_test_class_init),
(gst_test_finalize):
* gst/flx/gstflxdec.c: (gst_flxdec_class_init),
(gst_flxdec_dispose):
* gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
* gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
(gst_rtspsrc_finalize):
* gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
* gst/rtsp/rtspextwms.h:
* gst/smpte/gstsmpte.c: (gst_smpte_class_init),
(gst_smpte_finalize):
* gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
* gst/udp/gstudpsink.c: (gst_udpsink_class_init),
(gst_udpsink_finalize):
* gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
(gst_wavparse_sink_activate):
* sys/oss/gstosssink.c: (gst_oss_sink_finalise):
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_finalize):
* sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_finalize):
* sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
Fix a bunch of leaks shown by the newly-added states test.
2007-03-04 13:52:03 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize ((GObject *) (object));
|
2006-01-27 01:43:07 +00:00
|
|
|
}
|
|
|
|
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
static void
|
|
|
|
gst_oss_sink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstOssSink *sink;
|
|
|
|
|
|
|
|
sink = GST_OSSSINK (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_DEVICE:
|
|
|
|
g_free (sink->device);
|
|
|
|
sink->device = g_value_dup_string (value);
|
2005-11-07 17:35:20 +00:00
|
|
|
if (sink->probed_caps) {
|
|
|
|
gst_caps_unref (sink->probed_caps);
|
|
|
|
sink->probed_caps = NULL;
|
|
|
|
}
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_oss_sink_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstOssSink *sink;
|
|
|
|
|
|
|
|
sink = GST_OSSSINK (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_DEVICE:
|
|
|
|
g_value_set_string (value, sink->device);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
sys/oss/gstosselement.c: Add code to handle rate probing (bug #120883)
Original commit message from CVS:
* sys/oss/gstosselement.c: (gst_osselement_sync_parms),
(gst_osselement_close_audio), (gst_osselement_probe_caps),
(gst_osselement_get_format_structure),
(gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
(gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
(gst_osselement_rate_int_compare): Add code to handle rate probing
(bug #120883)
* sys/oss/gstosselement.h: same
* sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
Use rate probing provided by osselement.
* sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
2004-03-25 02:43:48 +00:00
|
|
|
static GstCaps *
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_getcaps (GstBaseSink * bsink)
|
sys/oss/gstosselement.c: Add code to handle rate probing (bug #120883)
Original commit message from CVS:
* sys/oss/gstosselement.c: (gst_osselement_sync_parms),
(gst_osselement_close_audio), (gst_osselement_probe_caps),
(gst_osselement_get_format_structure),
(gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
(gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
(gst_osselement_rate_int_compare): Add code to handle rate probing
(bug #120883)
* sys/oss/gstosselement.h: same
* sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
Use rate probing provided by osselement.
* sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
2004-03-25 02:43:48 +00:00
|
|
|
{
|
2005-07-08 11:19:19 +00:00
|
|
|
GstOssSink *osssink;
|
sys/oss/gstosselement.c: Add code to handle rate probing (bug #120883)
Original commit message from CVS:
* sys/oss/gstosselement.c: (gst_osselement_sync_parms),
(gst_osselement_close_audio), (gst_osselement_probe_caps),
(gst_osselement_get_format_structure),
(gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
(gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
(gst_osselement_rate_int_compare): Add code to handle rate probing
(bug #120883)
* sys/oss/gstosselement.h: same
* sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
Use rate probing provided by osselement.
* sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
2004-03-25 02:43:48 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
osssink = GST_OSSSINK (bsink);
|
|
|
|
|
2005-08-23 13:26:21 +00:00
|
|
|
if (osssink->fd == -1) {
|
|
|
|
caps = gst_caps_copy (gst_pad_get_pad_template_caps (GST_BASE_SINK_PAD
|
2005-07-08 11:19:19 +00:00
|
|
|
(bsink)));
|
2005-11-07 17:35:20 +00:00
|
|
|
} else if (osssink->probed_caps) {
|
|
|
|
caps = gst_caps_copy (osssink->probed_caps);
|
sys/oss/gstosselement.c: Add code to handle rate probing (bug #120883)
Original commit message from CVS:
* sys/oss/gstosselement.c: (gst_osselement_sync_parms),
(gst_osselement_close_audio), (gst_osselement_probe_caps),
(gst_osselement_get_format_structure),
(gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
(gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
(gst_osselement_rate_int_compare): Add code to handle rate probing
(bug #120883)
* sys/oss/gstosselement.h: same
* sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
Use rate probing provided by osselement.
* sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
2004-03-25 02:43:48 +00:00
|
|
|
} else {
|
2005-08-23 13:26:21 +00:00
|
|
|
caps = gst_oss_helper_probe_caps (osssink->fd);
|
2005-11-07 17:35:20 +00:00
|
|
|
if (caps && !gst_caps_is_empty (caps)) {
|
|
|
|
osssink->probed_caps = gst_caps_copy (caps);
|
|
|
|
}
|
sys/oss/gstosselement.c: Add code to handle rate probing (bug #120883)
Original commit message from CVS:
* sys/oss/gstosselement.c: (gst_osselement_sync_parms),
(gst_osselement_close_audio), (gst_osselement_probe_caps),
(gst_osselement_get_format_structure),
(gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
(gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
(gst_osselement_rate_int_compare): Add code to handle rate probing
(bug #120883)
* sys/oss/gstosselement.h: same
* sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
Use rate probing provided by osselement.
* sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
2004-03-25 02:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
static gint
|
|
|
|
ilog2 (gint x)
|
2002-05-28 22:52:52 +00:00
|
|
|
{
|
2005-07-08 11:19:19 +00:00
|
|
|
/* well... hacker's delight explains... */
|
|
|
|
x = x | (x >> 1);
|
|
|
|
x = x | (x >> 2);
|
|
|
|
x = x | (x >> 4);
|
|
|
|
x = x | (x >> 8);
|
|
|
|
x = x | (x >> 16);
|
|
|
|
x = x - ((x >> 1) & 0x55555555);
|
|
|
|
x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
|
|
|
|
x = (x + (x >> 4)) & 0x0f0f0f0f;
|
|
|
|
x = x + (x >> 8);
|
|
|
|
x = x + (x >> 16);
|
|
|
|
return (x & 0x0000003f) - 1;
|
2002-05-28 22:52:52 +00:00
|
|
|
}
|
|
|
|
|
2005-07-19 19:03:26 +00:00
|
|
|
static gint
|
|
|
|
gst_oss_sink_get_format (GstBufferFormat fmt)
|
|
|
|
{
|
|
|
|
gint result;
|
|
|
|
|
|
|
|
switch (fmt) {
|
|
|
|
case GST_MU_LAW:
|
|
|
|
result = AFMT_MU_LAW;
|
|
|
|
break;
|
|
|
|
case GST_A_LAW:
|
|
|
|
result = AFMT_A_LAW;
|
|
|
|
break;
|
|
|
|
case GST_IMA_ADPCM:
|
|
|
|
result = AFMT_IMA_ADPCM;
|
|
|
|
break;
|
|
|
|
case GST_U8:
|
|
|
|
result = AFMT_U8;
|
|
|
|
break;
|
|
|
|
case GST_S16_LE:
|
|
|
|
result = AFMT_S16_LE;
|
|
|
|
break;
|
|
|
|
case GST_S16_BE:
|
|
|
|
result = AFMT_S16_BE;
|
|
|
|
break;
|
|
|
|
case GST_S8:
|
|
|
|
result = AFMT_S8;
|
|
|
|
break;
|
|
|
|
case GST_U16_LE:
|
|
|
|
result = AFMT_U16_LE;
|
|
|
|
break;
|
|
|
|
case GST_U16_BE:
|
|
|
|
result = AFMT_U16_BE;
|
|
|
|
break;
|
|
|
|
case GST_MPEG:
|
|
|
|
result = AFMT_MPEG;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
result = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
static gboolean
|
2005-08-08 16:43:47 +00:00
|
|
|
gst_oss_sink_open (GstAudioSink * asink)
|
2002-02-03 20:10:04 +00:00
|
|
|
{
|
2005-07-08 11:19:19 +00:00
|
|
|
GstOssSink *oss;
|
2005-08-08 16:43:47 +00:00
|
|
|
int mode;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
oss = GST_OSSSINK (asink);
|
2002-02-03 20:10:04 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
mode = O_WRONLY;
|
|
|
|
mode |= O_NONBLOCK;
|
2002-02-03 20:10:04 +00:00
|
|
|
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
oss->fd = open (oss->device, mode, 0);
|
2006-04-10 19:55:31 +00:00
|
|
|
if (oss->fd == -1) {
|
|
|
|
switch (errno) {
|
|
|
|
case EBUSY:
|
|
|
|
goto busy;
|
2007-12-07 20:07:49 +00:00
|
|
|
case EACCES:
|
|
|
|
goto no_permission;
|
2006-04-10 19:55:31 +00:00
|
|
|
default:
|
|
|
|
goto open_failed;
|
|
|
|
}
|
|
|
|
}
|
2005-08-08 16:43:47 +00:00
|
|
|
|
|
|
|
return TRUE;
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
|
2006-08-22 16:45:37 +00:00
|
|
|
/* ERRORS */
|
2006-04-10 19:55:31 +00:00
|
|
|
busy:
|
|
|
|
{
|
2007-12-07 20:07:49 +00:00
|
|
|
GST_ELEMENT_ERROR (oss, RESOURCE, BUSY,
|
|
|
|
(_("Could not open audio device for playback. "
|
|
|
|
"Device is being used by another application.")), (NULL));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
no_permission:
|
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_WRITE,
|
2008-11-13 17:45:59 +00:00
|
|
|
(_("Could not open audio device for playback. "
|
2007-12-07 20:07:49 +00:00
|
|
|
"You don't have permission to open the device.")),
|
|
|
|
GST_ERROR_SYSTEM);
|
2006-04-10 19:55:31 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
open_failed:
|
|
|
|
{
|
2007-12-07 20:07:49 +00:00
|
|
|
GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_WRITE,
|
|
|
|
(_("Could not open audio device for playback.")), GST_ERROR_SYSTEM);
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2005-08-08 16:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_oss_sink_close (GstAudioSink * asink)
|
|
|
|
{
|
|
|
|
close (GST_OSSSINK (asink)->fd);
|
2005-11-08 08:54:30 +00:00
|
|
|
GST_OSSSINK (asink)->fd = -1;
|
2005-08-08 16:43:47 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_oss_sink_prepare (GstAudioSink * asink, GstRingBufferSpec * spec)
|
|
|
|
{
|
|
|
|
GstOssSink *oss;
|
|
|
|
struct audio_buf_info info;
|
|
|
|
int mode;
|
|
|
|
int tmp;
|
|
|
|
|
|
|
|
oss = GST_OSSSINK (asink);
|
|
|
|
|
2006-10-17 14:37:49 +00:00
|
|
|
/* we opened non-blocking so that we can detect if the device is available
|
|
|
|
* without hanging forever. We now want to remove the non-blocking flag. */
|
2005-07-08 11:19:19 +00:00
|
|
|
mode = fcntl (oss->fd, F_GETFL);
|
|
|
|
mode &= ~O_NONBLOCK;
|
2006-10-17 14:37:49 +00:00
|
|
|
if (fcntl (oss->fd, F_SETFL, mode) == -1) {
|
|
|
|
/* some drivers do no support unsetting the non-blocking flag, try to
|
|
|
|
* close/open the device then. This is racy but we error out properly. */
|
|
|
|
gst_oss_sink_close (asink);
|
|
|
|
if ((oss->fd = open (oss->device, O_WRONLY, 0)) == -1)
|
|
|
|
goto non_block;
|
|
|
|
}
|
2002-02-03 20:10:04 +00:00
|
|
|
|
2005-07-19 19:03:26 +00:00
|
|
|
tmp = gst_oss_sink_get_format (spec->format);
|
|
|
|
if (tmp == 0)
|
|
|
|
goto wrong_format;
|
|
|
|
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
if (spec->width != 16 && spec->width != 8)
|
|
|
|
goto dodgy_width;
|
|
|
|
|
2005-11-07 17:35:20 +00:00
|
|
|
SET_PARAM (oss, SNDCTL_DSP_SETFMT, tmp, "SETFMT");
|
2005-07-19 19:03:26 +00:00
|
|
|
if (spec->channels == 2)
|
2005-11-07 17:35:20 +00:00
|
|
|
SET_PARAM (oss, SNDCTL_DSP_STEREO, 1, "STEREO");
|
|
|
|
SET_PARAM (oss, SNDCTL_DSP_CHANNELS, spec->channels, "CHANNELS");
|
|
|
|
SET_PARAM (oss, SNDCTL_DSP_SPEED, spec->rate, "SPEED");
|
2002-02-17 02:06:04 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
tmp = ilog2 (spec->segsize);
|
|
|
|
tmp = ((spec->segtotal & 0x7fff) << 16) | tmp;
|
2006-04-10 19:55:31 +00:00
|
|
|
GST_DEBUG_OBJECT (oss, "set segsize: %d, segtotal: %d, value: %08x",
|
|
|
|
spec->segsize, spec->segtotal, tmp);
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2005-11-07 17:35:20 +00:00
|
|
|
SET_PARAM (oss, SNDCTL_DSP_SETFRAGMENT, tmp, "SETFRAGMENT");
|
|
|
|
GET_PARAM (oss, SNDCTL_DSP_GETOSPACE, &info, "GETOSPACE");
|
2003-12-16 22:00:21 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
spec->segsize = info.fragsize;
|
|
|
|
spec->segtotal = info.fragstotal;
|
2005-09-27 15:12:45 +00:00
|
|
|
|
|
|
|
spec->bytes_per_sample = (spec->width / 8) * spec->channels;
|
|
|
|
oss->bytes_per_sample = (spec->width / 8) * spec->channels;
|
2003-07-03 14:35:50 +00:00
|
|
|
|
2006-04-10 19:55:31 +00:00
|
|
|
GST_DEBUG_OBJECT (oss, "got segsize: %d, segtotal: %d, value: %08x",
|
|
|
|
spec->segsize, spec->segtotal, tmp);
|
2001-12-17 19:03:13 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
return TRUE;
|
2005-07-19 19:03:26 +00:00
|
|
|
|
2006-08-22 16:45:37 +00:00
|
|
|
/* ERRORS */
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
non_block:
|
|
|
|
{
|
2006-04-10 19:55:31 +00:00
|
|
|
GST_ELEMENT_ERROR (oss, RESOURCE, SETTINGS, (NULL),
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
("Unable to set device %s in non blocking mode: %s",
|
2006-04-10 19:55:31 +00:00
|
|
|
oss->device, g_strerror (errno)));
|
sys/oss/: Cleanups, make device configurable in the sink, handle and report errors.
Original commit message from CVS:
* sys/oss/gstosssink.c: (gst_oss_sink_class_init),
(gst_oss_sink_init), (gst_oss_sink_set_property),
(gst_oss_sink_get_property), (gst_oss_sink_open),
(gst_oss_sink_prepare), (gst_oss_sink_reset):
* sys/oss/gstosssink.h:
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
(gst_oss_src_prepare):
Cleanups, make device configurable in the sink, handle and report
errors.
2005-10-10 14:16:21 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2005-07-19 19:03:26 +00:00
|
|
|
wrong_format:
|
|
|
|
{
|
2006-04-10 19:55:31 +00:00
|
|
|
GST_ELEMENT_ERROR (oss, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("Unable to get format %d", spec->format));
|
2005-07-19 19:03:26 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2005-09-27 15:12:45 +00:00
|
|
|
dodgy_width:
|
|
|
|
{
|
2006-04-10 19:55:31 +00:00
|
|
|
GST_ELEMENT_ERROR (oss, RESOURCE, SETTINGS, (NULL),
|
|
|
|
("unexpected width %d", spec->width));
|
2005-09-27 15:12:45 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2002-07-24 21:46:03 +00:00
|
|
|
}
|
|
|
|
|
2002-06-01 11:00:27 +00:00
|
|
|
static gboolean
|
2005-08-08 16:43:47 +00:00
|
|
|
gst_oss_sink_unprepare (GstAudioSink * asink)
|
2002-06-01 11:00:27 +00:00
|
|
|
{
|
2005-08-08 16:43:47 +00:00
|
|
|
/* could do a SNDCTL_DSP_RESET, but the OSS manual recommends a close/open */
|
|
|
|
|
|
|
|
if (!gst_oss_sink_close (asink))
|
|
|
|
goto couldnt_close;
|
|
|
|
|
|
|
|
if (!gst_oss_sink_open (asink))
|
|
|
|
goto couldnt_reopen;
|
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
return TRUE;
|
2005-08-08 16:43:47 +00:00
|
|
|
|
2006-08-22 16:45:37 +00:00
|
|
|
/* ERRORS */
|
2005-08-08 16:43:47 +00:00
|
|
|
couldnt_close:
|
|
|
|
{
|
2006-04-10 19:55:31 +00:00
|
|
|
GST_DEBUG_OBJECT (asink, "Could not close the audio device");
|
2005-08-08 16:43:47 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
couldnt_reopen:
|
|
|
|
{
|
2006-04-10 19:55:31 +00:00
|
|
|
GST_DEBUG_OBJECT (asink, "Could not reopen the audio device");
|
2005-08-08 16:43:47 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2002-06-01 11:00:27 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
static guint
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_write (GstAudioSink * asink, gpointer data, guint length)
|
2002-07-24 21:46:03 +00:00
|
|
|
{
|
2005-07-08 11:19:19 +00:00
|
|
|
return write (GST_OSSSINK (asink)->fd, data, length);
|
2002-07-24 21:46:03 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
static guint
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_delay (GstAudioSink * asink)
|
2002-06-01 11:00:27 +00:00
|
|
|
{
|
2005-07-08 11:19:19 +00:00
|
|
|
GstOssSink *oss;
|
|
|
|
gint delay = 0;
|
|
|
|
gint ret;
|
2002-06-01 11:00:27 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
oss = GST_OSSSINK (asink);
|
2002-06-08 23:45:12 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
#ifdef SNDCTL_DSP_GETODELAY
|
|
|
|
ret = ioctl (oss->fd, SNDCTL_DSP_GETODELAY, &delay);
|
|
|
|
#else
|
|
|
|
ret = -1;
|
|
|
|
#endif
|
|
|
|
if (ret < 0) {
|
|
|
|
audio_buf_info info;
|
2002-06-08 23:45:12 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
ret = ioctl (oss->fd, SNDCTL_DSP_GETOSPACE, &info);
|
2001-12-17 19:03:13 +00:00
|
|
|
|
2005-07-08 11:19:19 +00:00
|
|
|
delay = (ret < 0 ? 0 : (info.fragstotal * info.fragsize) - info.bytes);
|
2001-12-17 19:03:13 +00:00
|
|
|
}
|
2005-07-08 11:19:19 +00:00
|
|
|
return delay / oss->bytes_per_sample;
|
2001-12-17 19:03:13 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void
|
2005-07-10 12:52:20 +00:00
|
|
|
gst_oss_sink_reset (GstAudioSink * asink)
|
2001-12-17 19:03:13 +00:00
|
|
|
{
|
2008-04-08 19:49:34 +00:00
|
|
|
/* There's nothing we can do here really: OSS can't handle access to the
|
|
|
|
* same device/fd from multiple threads and might deadlock or blow up in
|
|
|
|
* other ways if we try an ioctl SNDCTL_DSP_RESET or similar */
|
2001-12-17 19:03:13 +00:00
|
|
|
}
|