2002-02-03 20:04:07 +00:00
|
|
|
/* GStreamer
|
2001-12-20 23:13:50 +00:00
|
|
|
* Copyright (C) <2001> Richard Boulton <richard-gst@tartarus.org>
|
|
|
|
*
|
|
|
|
* Based on example.c:
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2001-12-20 23:13:50 +00:00
|
|
|
#include "esdsink.h"
|
|
|
|
#include <esd.h>
|
2003-06-29 19:46:12 +00:00
|
|
|
#include <unistd.h>
|
2003-07-17 08:08:09 +00:00
|
|
|
#include <errno.h>
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2004-01-23 15:34:50 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (esd_debug);
|
2004-01-23 15:37:12 +00:00
|
|
|
#define GST_CAT_DEFAULT esd_debug
|
2004-01-23 15:34:50 +00:00
|
|
|
|
2001-12-20 23:13:50 +00:00
|
|
|
/* elementfactory information */
|
|
|
|
static GstElementDetails esdsink_details = {
|
|
|
|
"Esound audio sink",
|
2002-04-20 21:42:51 +00:00
|
|
|
"Sink/Audio",
|
2001-12-20 23:13:50 +00:00
|
|
|
"Plays audio to an esound server",
|
|
|
|
"Richard Boulton <richard-gst@tartarus.org>",
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-20 23:13:50 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-20 23:13:50 +00:00
|
|
|
ARG_0,
|
|
|
|
ARG_MUTE,
|
|
|
|
ARG_HOST,
|
2003-07-17 08:08:09 +00:00
|
|
|
ARG_SYNC,
|
2004-05-21 23:28:57 +00:00
|
|
|
ARG_FALLBACK
|
2001-12-20 23:13:50 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/x-raw-int, "
|
2004-03-15 19:32:27 +00:00
|
|
|
"endianness = (int) " G_STRINGIFY (G_BYTE_ORDER) ", "
|
|
|
|
"signed = (boolean) TRUE, "
|
|
|
|
"width = (int) 16, "
|
|
|
|
"depth = (int) 16, " "rate = 44100, " "channels = 2")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static void gst_esdsink_base_init (gpointer g_class);
|
|
|
|
static void gst_esdsink_class_init (gpointer g_class, gpointer class_data);
|
|
|
|
static void gst_esdsink_init (GTypeInstance * instance, gpointer g_class);
|
Fixes: #151879, #151881, #151882, #151883, #151884, #151886, #151887, #152102, #152247.
Original commit message from CVS:
Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
#151887, #152102, #152247.
* examples/indexing/indexmpeg.c: 64-bit warning fixes.
* examples/seeking/cdparanoia.c: same
* examples/seeking/cdplayer.c: same
* examples/seeking/seek.c: same
* examples/seeking/spider_seek.c: same
* examples/seeking/vorbisfile.c: same
* examples/stats/mp2ogg.c: same
* ext/esd/esdsink.c: (gst_esdsink_class_init),
(gst_esdsink_dispose): Dispose of element properly.
* ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
fixes.
* ext/nas/nassink.c: (gst_nassink_class_init),
(gst_nassink_dispose): Dispose of element correctly.
* gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
* sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
(gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
Fix 64-bit warning.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
(gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
Fix 64-bit warning.
2004-09-12 22:57:26 +00:00
|
|
|
static void gst_esdsink_dispose (GObject * object);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
static gboolean gst_esdsink_open_audio (GstEsdsink * sink);
|
|
|
|
static void gst_esdsink_close_audio (GstEsdsink * sink);
|
|
|
|
static GstElementStateReturn gst_esdsink_change_state (GstElement * element);
|
|
|
|
|
|
|
|
static GstClockTime gst_esdsink_get_time (GstClock * clock, gpointer data);
|
|
|
|
static GstClock *gst_esdsink_get_clock (GstElement * element);
|
|
|
|
static void gst_esdsink_set_clock (GstElement * element, GstClock * clock);
|
|
|
|
static void gst_esdsink_chain (GstPad * pad, GstData * _data);
|
|
|
|
|
|
|
|
static void gst_esdsink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_esdsink_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-02-03 20:04:07 +00:00
|
|
|
/*static guint gst_esdsink_signals[LAST_SIGNAL] = { 0 }; */
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
GType
|
|
|
|
gst_esdsink_get_type (void)
|
|
|
|
{
|
|
|
|
static GType esdsink_type = 0;
|
|
|
|
|
|
|
|
if (!esdsink_type) {
|
|
|
|
static const GTypeInfo esdsink_info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstEsdsinkClass),
|
2003-11-01 15:28:33 +00:00
|
|
|
gst_esdsink_base_init,
|
2001-12-20 23:13:50 +00:00
|
|
|
NULL,
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_esdsink_class_init,
|
2001-12-20 23:13:50 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstEsdsink),
|
2001-12-20 23:13:50 +00:00
|
|
|
0,
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_esdsink_init,
|
2001-12-20 23:13:50 +00:00
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
esdsink_type =
|
2004-03-15 19:32:27 +00:00
|
|
|
g_type_register_static (GST_TYPE_ELEMENT, "GstEsdsink", &esdsink_info,
|
|
|
|
0);
|
2001-12-20 23:13:50 +00:00
|
|
|
}
|
|
|
|
return esdsink_type;
|
|
|
|
}
|
|
|
|
|
2003-11-01 15:28:33 +00:00
|
|
|
static void
|
|
|
|
gst_esdsink_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_static_pad_template_get (&sink_factory));
|
2003-11-01 15:28:33 +00:00
|
|
|
gst_element_class_set_details (element_class, &esdsink_details);
|
|
|
|
}
|
|
|
|
|
2001-12-20 23:13:50 +00:00
|
|
|
static void
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_esdsink_class_init (gpointer g_class, gpointer class_data)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (g_class);
|
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
parent_class = g_type_class_peek_parent (g_class);
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
g_object_class_install_property (gobject_class, ARG_MUTE, g_param_spec_boolean ("mute", "mute", "mute", TRUE, G_PARAM_READWRITE)); /* CHECKME */
|
|
|
|
g_object_class_install_property (gobject_class, ARG_HOST, g_param_spec_string ("host", "host", "host", NULL, G_PARAM_READWRITE)); /* CHECKME */
|
2004-03-14 22:34:33 +00:00
|
|
|
g_object_class_install_property (gobject_class, ARG_SYNC,
|
|
|
|
g_param_spec_boolean ("sync", "sync", "Synchronize output to clock",
|
2004-03-15 19:32:27 +00:00
|
|
|
TRUE, G_PARAM_READWRITE));
|
2004-01-15 21:05:17 +00:00
|
|
|
#if 0
|
|
|
|
/* This option is disabled because it is dumb in GStreamer's architecture. */
|
2004-03-14 22:34:33 +00:00
|
|
|
g_object_class_install_property (gobject_class, ARG_FALLBACK,
|
|
|
|
g_param_spec_boolean ("fallback", "fallback",
|
2004-03-15 19:32:27 +00:00
|
|
|
"Fall back to using OSS if Esound daemon is not present", FALSE,
|
|
|
|
G_PARAM_READWRITE));
|
2004-01-15 21:05:17 +00:00
|
|
|
#endif
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_esdsink_set_property;
|
|
|
|
gobject_class->get_property = gst_esdsink_get_property;
|
Fixes: #151879, #151881, #151882, #151883, #151884, #151886, #151887, #152102, #152247.
Original commit message from CVS:
Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
#151887, #152102, #152247.
* examples/indexing/indexmpeg.c: 64-bit warning fixes.
* examples/seeking/cdparanoia.c: same
* examples/seeking/cdplayer.c: same
* examples/seeking/seek.c: same
* examples/seeking/spider_seek.c: same
* examples/seeking/vorbisfile.c: same
* examples/stats/mp2ogg.c: same
* ext/esd/esdsink.c: (gst_esdsink_class_init),
(gst_esdsink_dispose): Dispose of element properly.
* ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
fixes.
* ext/nas/nassink.c: (gst_nassink_class_init),
(gst_nassink_dispose): Dispose of element correctly.
* gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
* sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
(gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
Fix 64-bit warning.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
(gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
Fix 64-bit warning.
2004-09-12 22:57:26 +00:00
|
|
|
gobject_class->dispose = gst_esdsink_dispose;
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
gstelement_class->change_state = gst_esdsink_change_state;
|
2004-03-14 22:34:33 +00:00
|
|
|
gstelement_class->set_clock = gst_esdsink_set_clock;
|
|
|
|
gstelement_class->get_clock = gst_esdsink_get_clock;
|
2001-12-20 23:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_init (GTypeInstance * instance, gpointer g_class)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
GstEsdsink *esdsink = GST_ESDSINK (instance);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
esdsink->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_element_class_get_pad_template
|
|
|
|
(GST_ELEMENT_GET_CLASS (instance), "sink"), "sink");
|
|
|
|
gst_element_add_pad (GST_ELEMENT (esdsink), esdsink->sinkpad);
|
|
|
|
gst_pad_set_chain_function (esdsink->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_esdsink_chain));
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2003-07-04 07:32:19 +00:00
|
|
|
GST_FLAG_SET (esdsink, GST_ELEMENT_EVENT_AWARE);
|
|
|
|
|
2001-12-20 23:13:50 +00:00
|
|
|
esdsink->mute = FALSE;
|
|
|
|
esdsink->fd = -1;
|
2002-02-03 20:04:07 +00:00
|
|
|
/* FIXME: get default from somewhere better than just putting them inline. */
|
2004-03-14 22:34:33 +00:00
|
|
|
/*esdsink->negotiated = FALSE; */
|
2004-01-30 12:52:12 +00:00
|
|
|
/* we have static caps on our template, so it always is negotiated */
|
|
|
|
esdsink->negotiated = TRUE;
|
ext/esd/esdsink.c: Fix sync issues in esdsink. Also changed esdsink to only use 44100,16,2, since esd sucks at rate ...
Original commit message from CVS:
* ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
(gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
(gst_esdsink_change_state): Fix sync issues in esdsink. Also
changed esdsink to only use 44100,16,2, since esd sucks at rate
conversion and esdsink has had difficulty negotiating.
2004-01-27 21:37:36 +00:00
|
|
|
esdsink->format = 16;
|
|
|
|
esdsink->depth = 16;
|
|
|
|
esdsink->channels = 2;
|
|
|
|
esdsink->frequency = 44100;
|
2004-03-14 22:34:33 +00:00
|
|
|
esdsink->bytes_per_sample = esdsink->channels * (esdsink->depth / 8);
|
2003-04-06 13:04:20 +00:00
|
|
|
esdsink->host = getenv ("ESPEAKER");
|
2004-03-14 22:34:33 +00:00
|
|
|
esdsink->provided_clock =
|
|
|
|
gst_audio_clock_new ("esdclock", gst_esdsink_get_time, esdsink);
|
|
|
|
gst_object_set_parent (GST_OBJECT (esdsink->provided_clock),
|
|
|
|
GST_OBJECT (esdsink));
|
ext/esd/esdsink.c: Fix sync issues in esdsink. Also changed esdsink to only use 44100,16,2, since esd sucks at rate ...
Original commit message from CVS:
* ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
(gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
(gst_esdsink_change_state): Fix sync issues in esdsink. Also
changed esdsink to only use 44100,16,2, since esd sucks at rate
conversion and esdsink has had difficulty negotiating.
2004-01-27 21:37:36 +00:00
|
|
|
esdsink->sync = TRUE;
|
2003-07-17 08:08:09 +00:00
|
|
|
esdsink->fallback = FALSE;
|
2004-06-13 10:58:34 +00:00
|
|
|
esdsink->link_open = FALSE;
|
2001-12-20 23:13:50 +00:00
|
|
|
}
|
|
|
|
|
Fixes: #151879, #151881, #151882, #151883, #151884, #151886, #151887, #152102, #152247.
Original commit message from CVS:
Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
#151887, #152102, #152247.
* examples/indexing/indexmpeg.c: 64-bit warning fixes.
* examples/seeking/cdparanoia.c: same
* examples/seeking/cdplayer.c: same
* examples/seeking/seek.c: same
* examples/seeking/spider_seek.c: same
* examples/seeking/vorbisfile.c: same
* examples/stats/mp2ogg.c: same
* ext/esd/esdsink.c: (gst_esdsink_class_init),
(gst_esdsink_dispose): Dispose of element properly.
* ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
fixes.
* ext/nas/nassink.c: (gst_nassink_class_init),
(gst_nassink_dispose): Dispose of element correctly.
* gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
* sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
(gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
Fix 64-bit warning.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
(gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
Fix 64-bit warning.
2004-09-12 22:57:26 +00:00
|
|
|
static void
|
|
|
|
gst_esdsink_dispose (GObject * object)
|
|
|
|
{
|
|
|
|
GstEsdsink *esdsink = GST_ESDSINK (object);
|
|
|
|
|
|
|
|
g_free (esdsink->host);
|
|
|
|
}
|
|
|
|
|
ext/esd/esdsink.c: Fix sync issues in esdsink. Also changed esdsink to only use 44100,16,2, since esd sucks at rate ...
Original commit message from CVS:
* ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
(gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
(gst_esdsink_change_state): Fix sync issues in esdsink. Also
changed esdsink to only use 44100,16,2, since esd sucks at rate
conversion and esdsink has had difficulty negotiating.
2004-01-27 21:37:36 +00:00
|
|
|
#ifdef unused
|
2003-01-10 13:38:32 +00:00
|
|
|
static GstPadLinkReturn
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_link (GstPad * pad, const GstCaps * caps)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
|
|
|
GstEsdsink *esdsink;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
esdsink = GST_ESDSINK (gst_pad_get_parent (pad));
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2003-12-30 02:07:05 +00:00
|
|
|
gst_structure_get_int (structure, "depth", &esdsink->depth);
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_structure_get_int (structure, "channels", &esdsink->channels);
|
|
|
|
gst_structure_get_int (structure, "rate", &esdsink->frequency);
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
esdsink->bytes_per_sample = esdsink->channels * (esdsink->depth / 8);
|
2003-07-17 08:08:09 +00:00
|
|
|
|
2004-06-13 10:58:34 +00:00
|
|
|
if (esdsink->link_open) {
|
|
|
|
gst_esdsink_close_audio (esdsink);
|
|
|
|
if (gst_esdsink_open_audio (esdsink)) {
|
|
|
|
esdsink->negotiated = TRUE;
|
|
|
|
esdsink->link_open = TRUE;
|
|
|
|
return GST_PAD_LINK_OK;
|
|
|
|
}
|
2003-04-06 13:04:20 +00:00
|
|
|
}
|
2003-12-22 01:47:09 +00:00
|
|
|
/* FIXME: is it supposed to be correct to have closed audio when caps nego
|
|
|
|
failed? */
|
2002-01-13 22:27:25 +00:00
|
|
|
|
2004-01-23 15:53:21 +00:00
|
|
|
GST_DEBUG ("esd link function could not negotiate, returning delayed");
|
2003-01-10 10:22:25 +00:00
|
|
|
return GST_PAD_LINK_REFUSED;
|
2001-12-20 23:13:50 +00:00
|
|
|
}
|
2003-07-17 08:08:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static GstClockTime
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_get_time (GstClock * clock, gpointer data)
|
2003-07-17 08:08:09 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
GstEsdsink *esdsink = GST_ESDSINK (data);
|
2003-07-17 08:08:09 +00:00
|
|
|
GstClockTime res;
|
|
|
|
|
ext/esd/esdsink.c: Fix sync issues in esdsink. Also changed esdsink to only use 44100,16,2, since esd sucks at rate ...
Original commit message from CVS:
* ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
(gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
(gst_esdsink_change_state): Fix sync issues in esdsink. Also
changed esdsink to only use 44100,16,2, since esd sucks at rate
conversion and esdsink has had difficulty negotiating.
2004-01-27 21:37:36 +00:00
|
|
|
res = (esdsink->handled * GST_SECOND) / esdsink->frequency;
|
2004-03-14 22:34:33 +00:00
|
|
|
//- GST_SECOND * 2;
|
2003-07-17 08:08:09 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2003-07-04 07:32:19 +00:00
|
|
|
static GstClock *
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_get_clock (GstElement * element)
|
2003-07-04 07:32:19 +00:00
|
|
|
{
|
|
|
|
GstEsdsink *esdsink;
|
|
|
|
|
2003-07-17 08:08:09 +00:00
|
|
|
esdsink = GST_ESDSINK (element);
|
2003-07-04 07:32:19 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
return GST_CLOCK (esdsink->provided_clock);
|
2003-07-04 07:32:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_set_clock (GstElement * element, GstClock * clock)
|
2003-07-04 07:32:19 +00:00
|
|
|
{
|
|
|
|
GstEsdsink *esdsink;
|
|
|
|
|
|
|
|
esdsink = GST_ESDSINK (element);
|
|
|
|
|
|
|
|
esdsink->clock = clock;
|
|
|
|
}
|
|
|
|
|
2001-12-20 23:13:50 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_chain (GstPad * pad, GstData * _data)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
2003-10-08 16:08:18 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2001-12-20 23:13:50 +00:00
|
|
|
GstEsdsink *esdsink;
|
|
|
|
|
|
|
|
esdsink = GST_ESDSINK (gst_pad_get_parent (pad));
|
|
|
|
|
2004-01-29 23:20:45 +00:00
|
|
|
if (!esdsink->negotiated) {
|
2004-02-02 17:23:33 +00:00
|
|
|
GST_ELEMENT_ERROR (esdsink, CORE, NEGOTIATION, (NULL),
|
2004-03-15 19:32:27 +00:00
|
|
|
("element wasn't negotiated before chain function"));
|
2004-01-29 23:20:45 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
if (GST_IS_EVENT (buf)) {
|
|
|
|
GstEvent *event = GST_EVENT (buf);
|
2003-07-04 07:32:19 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2003-07-04 07:32:19 +00:00
|
|
|
case GST_EVENT_EOS:
|
2004-03-15 19:32:27 +00:00
|
|
|
gst_audio_clock_set_active (GST_AUDIO_CLOCK (esdsink->provided_clock),
|
|
|
|
FALSE);
|
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
return;
|
2003-07-04 07:32:19 +00:00
|
|
|
default:
|
2004-03-15 19:32:27 +00:00
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
return;
|
2003-07-04 07:32:19 +00:00
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_event_unref (event);
|
2003-07-04 07:32:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-12-20 23:13:50 +00:00
|
|
|
if (GST_BUFFER_DATA (buf) != NULL) {
|
|
|
|
if (!esdsink->mute && esdsink->fd >= 0) {
|
2003-07-17 08:08:09 +00:00
|
|
|
guchar *data = GST_BUFFER_DATA (buf);
|
|
|
|
gint size = GST_BUFFER_SIZE (buf);
|
|
|
|
gint to_write = 0;
|
|
|
|
|
ext/esd/esdsink.c: Fix sync issues in esdsink. Also changed esdsink to only use 44100,16,2, since esd sucks at rate ...
Original commit message from CVS:
* ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
(gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
(gst_esdsink_change_state): Fix sync issues in esdsink. Also
changed esdsink to only use 44100,16,2, since esd sucks at rate
conversion and esdsink has had difficulty negotiating.
2004-01-27 21:37:36 +00:00
|
|
|
to_write = size;
|
2003-07-17 08:08:09 +00:00
|
|
|
|
2004-01-23 15:45:19 +00:00
|
|
|
GST_LOG ("fd=%d data=%p size=%d",
|
2004-03-15 19:32:27 +00:00
|
|
|
esdsink->fd, GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
|
2004-03-14 22:34:33 +00:00
|
|
|
while (to_write > 0) {
|
2004-03-15 19:32:27 +00:00
|
|
|
int done;
|
2003-07-17 08:08:09 +00:00
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
done = write (esdsink->fd, data, to_write);
|
2003-07-17 08:08:09 +00:00
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
if (done < 0) {
|
|
|
|
if (errno == EINTR) {
|
|
|
|
goto done;
|
|
|
|
}
|
2004-05-14 19:26:35 +00:00
|
|
|
/* connection closed? */
|
|
|
|
GST_ELEMENT_ERROR (esdsink, RESOURCE, WRITE, (NULL),
|
|
|
|
("communication with ESD failed"));
|
|
|
|
return;
|
2004-03-15 19:32:27 +00:00
|
|
|
}
|
2003-07-17 08:08:09 +00:00
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
to_write -= done;
|
|
|
|
data += done;
|
|
|
|
esdsink->handled += done / esdsink->bytes_per_sample;
|
2003-07-17 08:08:09 +00:00
|
|
|
}
|
|
|
|
|
2001-12-20 23:13:50 +00:00
|
|
|
}
|
|
|
|
}
|
2003-07-17 08:08:09 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_audio_clock_update_time ((GstAudioClock *) esdsink->provided_clock,
|
ext/esd/esdsink.c: Fix sync issues in esdsink. Also changed esdsink to only use 44100,16,2, since esd sucks at rate ...
Original commit message from CVS:
* ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
(gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
(gst_esdsink_change_state): Fix sync issues in esdsink. Also
changed esdsink to only use 44100,16,2, since esd sucks at rate
conversion and esdsink has had difficulty negotiating.
2004-01-27 21:37:36 +00:00
|
|
|
gst_esdsink_get_time (esdsink->provided_clock, esdsink));
|
2003-07-17 08:08:09 +00:00
|
|
|
|
2003-04-06 13:04:20 +00:00
|
|
|
done:
|
2001-12-20 23:13:50 +00:00
|
|
|
gst_buffer_unref (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_set_property (GObject * object, guint prop_id, const GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
|
|
|
GstEsdsink *esdsink;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2004-03-14 22:34:33 +00:00
|
|
|
g_return_if_fail (GST_IS_ESDSINK (object));
|
|
|
|
esdsink = GST_ESDSINK (object);
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_MUTE:
|
|
|
|
esdsink->mute = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_HOST:
|
2004-03-14 22:34:33 +00:00
|
|
|
g_free (esdsink->host);
|
2001-12-20 23:13:50 +00:00
|
|
|
if (g_value_get_string (value) == NULL)
|
2004-03-15 19:32:27 +00:00
|
|
|
esdsink->host = NULL;
|
2001-12-20 23:13:50 +00:00
|
|
|
else
|
2004-03-15 19:32:27 +00:00
|
|
|
esdsink->host = g_strdup (g_value_get_string (value));
|
2001-12-20 23:13:50 +00:00
|
|
|
break;
|
2003-07-17 08:08:09 +00:00
|
|
|
case ARG_SYNC:
|
|
|
|
esdsink->sync = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_FALLBACK:
|
|
|
|
esdsink->fallback = g_value_get_boolean (value);
|
|
|
|
break;
|
2001-12-20 23:13:50 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
|
|
|
GstEsdsink *esdsink;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
esdsink = GST_ESDSINK (object);
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_MUTE:
|
|
|
|
g_value_set_boolean (value, esdsink->mute);
|
|
|
|
break;
|
|
|
|
case ARG_HOST:
|
|
|
|
g_value_set_string (value, esdsink->host);
|
|
|
|
break;
|
2003-07-17 08:08:09 +00:00
|
|
|
case ARG_SYNC:
|
|
|
|
g_value_set_boolean (value, esdsink->sync);
|
|
|
|
break;
|
|
|
|
case ARG_FALLBACK:
|
|
|
|
g_value_set_boolean (value, esdsink->fallback);
|
|
|
|
break;
|
2001-12-20 23:13:50 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-15 07:52:10 +00:00
|
|
|
gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_factory_init (GstPlugin * plugin)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
if (!gst_element_register (plugin, "esdsink", GST_RANK_NONE,
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_TYPE_ESDSINK))
|
2003-11-01 15:28:33 +00:00
|
|
|
return FALSE;
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_open_audio (GstEsdsink * sink)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
2002-02-03 20:04:07 +00:00
|
|
|
/* Name used by esound for this connection. */
|
2004-03-14 22:34:33 +00:00
|
|
|
const char *connname = "GStreamer";
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2002-02-03 20:04:07 +00:00
|
|
|
/* Bitmap describing audio format. */
|
2001-12-20 23:13:50 +00:00
|
|
|
esd_format_t esdformat = ESD_STREAM | ESD_PLAY;
|
|
|
|
|
|
|
|
g_return_val_if_fail (sink->fd == -1, FALSE);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
if (sink->depth == 16)
|
|
|
|
esdformat |= ESD_BITS16;
|
|
|
|
else if (sink->depth == 8)
|
|
|
|
esdformat |= ESD_BITS8;
|
2001-12-20 23:13:50 +00:00
|
|
|
else {
|
2004-02-02 17:23:33 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, STREAM, FORMAT, (NULL),
|
2004-03-15 19:32:27 +00:00
|
|
|
("invalid bit depth (%d)", sink->depth));
|
2001-12-20 23:13:50 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
if (sink->channels == 2)
|
|
|
|
esdformat |= ESD_STEREO;
|
|
|
|
else if (sink->channels == 1)
|
|
|
|
esdformat |= ESD_MONO;
|
2001-12-20 23:13:50 +00:00
|
|
|
else {
|
2004-02-02 17:23:33 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, STREAM, FORMAT, (NULL),
|
2004-03-15 19:32:27 +00:00
|
|
|
("invalid number of channels (%d)", sink->channels));
|
2001-12-20 23:13:50 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2004-01-23 15:45:19 +00:00
|
|
|
GST_INFO ("attempting to open connection to esound server");
|
2004-03-14 22:34:33 +00:00
|
|
|
if (sink->fallback) {
|
|
|
|
sink->fd =
|
2004-03-15 19:32:27 +00:00
|
|
|
esd_play_stream_fallback (esdformat, sink->frequency, sink->host,
|
|
|
|
connname);
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
|
|
|
sink->fd =
|
2004-03-15 19:32:27 +00:00
|
|
|
esd_play_stream (esdformat, sink->frequency, sink->host, connname);
|
2003-07-17 08:08:09 +00:00
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
if (sink->fd < 0) {
|
2004-02-02 17:23:33 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, RESOURCE, OPEN_WRITE, (NULL),
|
2004-03-15 19:32:27 +00:00
|
|
|
("can't open connection to esound server"));
|
2001-12-20 23:13:50 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2004-01-23 15:45:19 +00:00
|
|
|
GST_INFO ("successfully opened connection to esound server");
|
2001-12-20 23:13:50 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_close_audio (GstEsdsink * sink)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
if (sink->fd < 0)
|
2003-04-06 13:04:20 +00:00
|
|
|
return;
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
close (sink->fd);
|
2001-12-20 23:13:50 +00:00
|
|
|
sink->fd = -1;
|
|
|
|
|
2004-01-23 15:45:19 +00:00
|
|
|
GST_INFO ("esdsink: closed sound device");
|
2001-12-20 23:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstElementStateReturn
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_esdsink_change_state (GstElement * element)
|
2001-12-20 23:13:50 +00:00
|
|
|
{
|
2003-04-06 13:04:20 +00:00
|
|
|
GstEsdsink *esdsink;
|
|
|
|
|
|
|
|
esdsink = GST_ESDSINK (element);
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2003-04-06 13:04:20 +00:00
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
|
|
|
case GST_STATE_NULL_TO_READY:
|
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
2004-06-13 10:58:34 +00:00
|
|
|
/* Open and close the link to test it's available */
|
|
|
|
if (!esdsink->link_open) {
|
|
|
|
if (!gst_esdsink_open_audio (GST_ESDSINK (element))) {
|
|
|
|
return GST_STATE_FAILURE;
|
|
|
|
}
|
|
|
|
gst_esdsink_close_audio (GST_ESDSINK (element));
|
|
|
|
}
|
2003-04-06 13:04:20 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_PLAYING:
|
2004-06-13 10:58:34 +00:00
|
|
|
if (!esdsink->link_open) {
|
|
|
|
if (!gst_esdsink_open_audio (GST_ESDSINK (element))) {
|
|
|
|
return GST_STATE_FAILURE;
|
|
|
|
}
|
|
|
|
esdsink->link_open = TRUE;
|
|
|
|
}
|
ext/esd/esdsink.c: Fix sync issues in esdsink. Also changed esdsink to only use 44100,16,2, since esd sucks at rate ...
Original commit message from CVS:
* ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
(gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
(gst_esdsink_change_state): Fix sync issues in esdsink. Also
changed esdsink to only use 44100,16,2, since esd sucks at rate
conversion and esdsink has had difficulty negotiating.
2004-01-27 21:37:36 +00:00
|
|
|
gst_audio_clock_set_active (GST_AUDIO_CLOCK (esdsink->provided_clock),
|
2004-03-15 19:32:27 +00:00
|
|
|
TRUE);
|
2003-04-06 13:04:20 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_PLAYING_TO_PAUSED:
|
2003-07-17 08:08:09 +00:00
|
|
|
gst_audio_clock_set_active (GST_AUDIO_CLOCK (esdsink->provided_clock),
|
2004-03-15 19:32:27 +00:00
|
|
|
FALSE);
|
2004-06-13 10:58:34 +00:00
|
|
|
if (esdsink->link_open) {
|
|
|
|
gst_esdsink_close_audio (GST_ESDSINK (element));
|
|
|
|
esdsink->link_open = FALSE;
|
|
|
|
}
|
2003-07-17 08:08:09 +00:00
|
|
|
esdsink->resync = TRUE;
|
2003-04-06 13:04:20 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
2004-06-13 10:58:34 +00:00
|
|
|
/* Make doubly sure we don't leave our esd connection open
|
|
|
|
* or we'll block the other users
|
|
|
|
*/
|
|
|
|
if (esdsink->link_open) {
|
|
|
|
gst_esdsink_close_audio (GST_ESDSINK (element));
|
|
|
|
esdsink->link_open = FALSE;
|
|
|
|
}
|
2003-04-06 13:04:20 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_NULL:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2001-12-20 23:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
2003-04-06 13:04:20 +00:00
|
|
|
|
2001-12-20 23:13:50 +00:00
|
|
|
return GST_STATE_SUCCESS;
|
|
|
|
}
|