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
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2001-12-17 19:03:13 +00:00
|
|
|
*/
|
|
|
|
|
2006-08-16 10:22:32 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-osssink
|
2018-10-22 09:39:24 +00:00
|
|
|
* @title: osssink
|
2006-08-16 10:22:32 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
*
|
2018-10-22 09:39:24 +00:00
|
|
|
* ## Example pipelines
|
2009-01-29 08:10:08 +00:00
|
|
|
* |[
|
2012-08-26 21:39:55 +00:00
|
|
|
* gst-launch-1.0 -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
|
|
|
* |[
|
2012-08-26 21:39:55 +00:00
|
|
|
* gst-launch-1.0 -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.
|
2018-10-22 09:39:24 +00:00
|
|
|
*
|
2006-08-16 10:22:32 +00:00
|
|
|
*/
|
|
|
|
|
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"
|
2021-02-16 15:11:36 +00:00
|
|
|
#include "gstossaudioelements.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_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);
|
|
|
|
|
2012-04-20 16:12:54 +00:00
|
|
|
static GstCaps *gst_oss_sink_getcaps (GstBaseSink * bsink, GstCaps * filter);
|
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,
|
2012-04-20 16:12:54 +00:00
|
|
|
GstAudioRingBufferSpec * spec);
|
2005-08-08 16:43:47 +00:00
|
|
|
static gboolean gst_oss_sink_unprepare (GstAudioSink * asink);
|
2012-04-20 16:12:54 +00:00
|
|
|
static gint 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,
|
|
|
|
};
|
|
|
|
|
2011-08-19 12:01:45 +00:00
|
|
|
#define FORMATS "{" GST_AUDIO_NE(S16)","GST_AUDIO_NE(U16)", S8, U8 }"
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate osssink_sink_factory =
|
2012-01-04 09:54:46 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-08-19 12:01:45 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw, "
|
|
|
|
"format = (string) " FORMATS ", "
|
2012-01-04 09:54:46 +00:00
|
|
|
"layout = (string) interleaved, "
|
|
|
|
"rate = (int) [ 1, MAX ], "
|
|
|
|
"channels = (int) 1; "
|
|
|
|
"audio/x-raw, "
|
|
|
|
"format = (string) " FORMATS ", "
|
|
|
|
"layout = (string) interleaved, "
|
|
|
|
"rate = (int) [ 1, MAX ], "
|
|
|
|
"channels = (int) 2, " "channel-mask = (bitmask) 0x3")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2001-12-17 19:03:13 +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
|
|
|
|
2012-04-20 16:12:54 +00:00
|
|
|
#define gst_oss_sink_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstOssSink, gst_oss_sink, GST_TYPE_AUDIO_SINK);
|
2021-02-16 15:11:36 +00:00
|
|
|
GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (osssink, "osssink", GST_RANK_SECONDARY,
|
|
|
|
GST_TYPE_OSSSINK, oss_element_init (plugin));
|
2001-12-17 19:03:13 +00:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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;
|
2012-04-20 16:12:54 +00:00
|
|
|
GstElementClass *gstelement_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;
|
2012-04-20 16:12:54 +00:00
|
|
|
gstelement_class = (GstElementClass *) 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
|
|
|
|
2010-06-06 15:57:03 +00:00
|
|
|
gobject_class->dispose = gst_oss_sink_dispose;
|
|
|
|
gobject_class->finalize = gst_oss_sink_finalise;
|
|
|
|
gobject_class->get_property = gst_oss_sink_get_property;
|
|
|
|
gobject_class->set_property = gst_oss_sink_set_property;
|
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
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_DEVICE,
|
|
|
|
g_param_spec_string ("device", "Device",
|
2010-10-13 14:13:04 +00:00
|
|
|
"OSS device (usually /dev/dspN)", DEFAULT_DEVICE,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
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);
|
2012-04-20 16:12:54 +00:00
|
|
|
|
|
|
|
gst_element_class_set_static_metadata (gstelement_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>");
|
|
|
|
|
2016-03-04 01:30:12 +00:00
|
|
|
gst_element_class_add_static_pad_template (gstelement_class,
|
|
|
|
&osssink_sink_factory);
|
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 *
|
2012-04-20 16:12:54 +00:00
|
|
|
gst_oss_sink_getcaps (GstBaseSink * bsink, GstCaps * filter)
|
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) {
|
2012-03-27 14:41:06 +00:00
|
|
|
caps = gst_pad_get_pad_template_caps (GST_BASE_SINK_PAD (bsink));
|
2005-11-07 17:35:20 +00:00
|
|
|
} else if (osssink->probed_caps) {
|
2012-03-27 14:41:06 +00:00
|
|
|
caps = gst_caps_ref (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)) {
|
2012-03-27 14:41:06 +00:00
|
|
|
osssink->probed_caps = gst_caps_ref (caps);
|
2005-11-07 17:35:20 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2012-04-20 16:12:54 +00:00
|
|
|
if (filter && caps) {
|
|
|
|
GstCaps *intersection;
|
|
|
|
|
|
|
|
intersection =
|
|
|
|
gst_caps_intersect_full (filter, caps, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
return intersection;
|
|
|
|
} else {
|
|
|
|
return 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
|
|
|
}
|
|
|
|
|
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
|
2012-04-20 16:12:54 +00:00
|
|
|
gst_oss_sink_get_format (GstAudioRingBufferFormatType fmt, GstAudioFormat rfmt)
|
2005-07-19 19:03:26 +00:00
|
|
|
{
|
|
|
|
gint result;
|
|
|
|
|
|
|
|
switch (fmt) {
|
2012-04-20 16:12:54 +00:00
|
|
|
case GST_AUDIO_RING_BUFFER_FORMAT_TYPE_MU_LAW:
|
2005-07-19 19:03:26 +00:00
|
|
|
result = AFMT_MU_LAW;
|
|
|
|
break;
|
2012-04-20 16:12:54 +00:00
|
|
|
case GST_AUDIO_RING_BUFFER_FORMAT_TYPE_A_LAW:
|
2005-07-19 19:03:26 +00:00
|
|
|
result = AFMT_A_LAW;
|
|
|
|
break;
|
2012-04-20 16:12:54 +00:00
|
|
|
case GST_AUDIO_RING_BUFFER_FORMAT_TYPE_IMA_ADPCM:
|
2005-07-19 19:03:26 +00:00
|
|
|
result = AFMT_IMA_ADPCM;
|
|
|
|
break;
|
2012-04-20 16:12:54 +00:00
|
|
|
case GST_AUDIO_RING_BUFFER_FORMAT_TYPE_MPEG:
|
2005-07-19 19:03:26 +00:00
|
|
|
result = AFMT_MPEG;
|
|
|
|
break;
|
2012-04-20 16:12:54 +00:00
|
|
|
case GST_AUDIO_RING_BUFFER_FORMAT_TYPE_RAW:
|
|
|
|
{
|
|
|
|
switch (rfmt) {
|
|
|
|
case GST_AUDIO_FORMAT_U8:
|
|
|
|
result = AFMT_U8;
|
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_S16LE:
|
|
|
|
result = AFMT_S16_LE;
|
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_S16BE:
|
|
|
|
result = AFMT_S16_BE;
|
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_S8:
|
|
|
|
result = AFMT_S8;
|
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_U16LE:
|
|
|
|
result = AFMT_U16_LE;
|
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_U16BE:
|
|
|
|
result = AFMT_U16_BE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
result = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-07-19 19:03:26 +00:00
|
|
|
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
|
2012-04-20 16:12:54 +00:00
|
|
|
gst_oss_sink_prepare (GstAudioSink * asink, GstAudioRingBufferSpec * spec)
|
2005-08-08 16:43:47 +00:00
|
|
|
{
|
|
|
|
GstOssSink *oss;
|
|
|
|
struct audio_buf_info info;
|
|
|
|
int mode;
|
|
|
|
int tmp;
|
2012-04-20 16:12:54 +00:00
|
|
|
guint width, rate, channels;
|
2005-08-08 16:43:47 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2012-04-20 16:12:54 +00:00
|
|
|
tmp = gst_oss_sink_get_format (spec->type,
|
|
|
|
GST_AUDIO_INFO_FORMAT (&spec->info));
|
2005-07-19 19:03:26 +00:00
|
|
|
if (tmp == 0)
|
|
|
|
goto wrong_format;
|
|
|
|
|
2012-04-20 16:12:54 +00:00
|
|
|
width = GST_AUDIO_INFO_WIDTH (&spec->info);
|
|
|
|
rate = GST_AUDIO_INFO_RATE (&spec->info);
|
|
|
|
channels = GST_AUDIO_INFO_CHANNELS (&spec->info);
|
|
|
|
|
|
|
|
if (width != 16 && width != 8)
|
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
|
|
|
goto dodgy_width;
|
|
|
|
|
2005-11-07 17:35:20 +00:00
|
|
|
SET_PARAM (oss, SNDCTL_DSP_SETFMT, tmp, "SETFMT");
|
2012-04-20 16:12:54 +00:00
|
|
|
if (channels == 2)
|
2005-11-07 17:35:20 +00:00
|
|
|
SET_PARAM (oss, SNDCTL_DSP_STEREO, 1, "STEREO");
|
2012-04-20 16:12:54 +00:00
|
|
|
SET_PARAM (oss, SNDCTL_DSP_CHANNELS, channels, "CHANNELS");
|
|
|
|
SET_PARAM (oss, SNDCTL_DSP_SPEED, 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
|
|
|
|
2012-04-20 16:12:54 +00:00
|
|
|
oss->bytes_per_sample = GST_AUDIO_INFO_BPF (&spec->info);
|
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),
|
2012-04-20 16:12:54 +00:00
|
|
|
("Unable to get format (%d, %d)", spec->type,
|
|
|
|
GST_AUDIO_INFO_FORMAT (&spec->info)));
|
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),
|
2012-04-20 16:12:54 +00:00
|
|
|
("unexpected width %d", 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
|
|
|
}
|
|
|
|
|
2012-04-20 16:12:54 +00:00
|
|
|
static gint
|
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
|
|
|
}
|