2006-01-05 23:17:44 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2005 Sebastien Moutte <sebastien@moutte.net>
|
2007-02-27 12:02:03 +00:00
|
|
|
* Copyright (C) 2007 Pioneers of the Inevitable <songbird@songbirdnest.com>
|
2010-03-26 22:20:10 +00:00
|
|
|
* Copyright (C) 2010 Fluendo S.A. <support@fluendo.com>
|
2006-01-05 23:17:44 +00:00
|
|
|
*
|
|
|
|
* gstdirectsoundsink.h:
|
|
|
|
*
|
|
|
|
* 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.
|
2007-02-27 12:02:03 +00:00
|
|
|
*
|
|
|
|
* The development of this code was made possible due to the involvement
|
|
|
|
* of Pioneers of the Inevitable, the creators of the Songbird Music player
|
|
|
|
*
|
|
|
|
*
|
2006-01-05 23:17:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_DIRECTSOUNDSINK_H__
|
|
|
|
#define __GST_DIRECTSOUNDSINK_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2012-12-12 21:02:34 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2006-01-05 23:17:44 +00:00
|
|
|
#include <gst/audio/gstaudiosink.h>
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <dsound.h>
|
2010-03-26 22:20:10 +00:00
|
|
|
#include <mmreg.h>
|
|
|
|
#include <ks.h>
|
|
|
|
#include <ksmedia.h>
|
2006-01-05 23:17:44 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2007-02-18 18:00:51 +00:00
|
|
|
#define GST_TYPE_DIRECTSOUND_SINK (gst_directsound_sink_get_type())
|
2006-06-01 22:00:26 +00:00
|
|
|
#define GST_DIRECTSOUND_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DIRECTSOUND_SINK,GstDirectSoundSink))
|
|
|
|
#define GST_DIRECTSOUND_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DIRECTSOUND_SINK,GstDirectSoundSinkClass))
|
|
|
|
#define GST_IS_DIRECTSOUND_SINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DIRECTSOUND_SINK))
|
|
|
|
#define GST_IS_DIRECTSOUND_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DIRECTSOUND_SINK))
|
2006-01-05 23:17:44 +00:00
|
|
|
typedef struct _GstDirectSoundSink GstDirectSoundSink;
|
|
|
|
typedef struct _GstDirectSoundSinkClass GstDirectSoundSinkClass;
|
|
|
|
|
2012-09-11 10:36:56 +00:00
|
|
|
#define GST_DSOUND_LOCK(obj) (g_mutex_lock (&obj->dsound_lock))
|
|
|
|
#define GST_DSOUND_UNLOCK(obj) (g_mutex_unlock (&obj->dsound_lock))
|
2006-07-24 21:43:06 +00:00
|
|
|
|
2006-01-05 23:17:44 +00:00
|
|
|
struct _GstDirectSoundSink
|
|
|
|
{
|
|
|
|
GstAudioSink sink;
|
|
|
|
|
2012-01-27 15:37:19 +00:00
|
|
|
|
2007-05-23 22:44:12 +00:00
|
|
|
/* directsound object interface pointer */
|
2006-01-05 23:17:44 +00:00
|
|
|
LPDIRECTSOUND pDS;
|
|
|
|
|
2007-05-23 22:44:12 +00:00
|
|
|
/* directsound sound object interface pointer */
|
2006-01-05 23:17:44 +00:00
|
|
|
LPDIRECTSOUNDBUFFER pDSBSecondary;
|
|
|
|
|
2007-05-23 22:44:12 +00:00
|
|
|
/* directSound buffer size */
|
2006-01-05 23:17:44 +00:00
|
|
|
guint buffer_size;
|
|
|
|
|
2007-05-23 22:44:12 +00:00
|
|
|
/* offset of the circular buffer where we must write next */
|
2006-01-05 23:17:44 +00:00
|
|
|
guint current_circular_offset;
|
|
|
|
|
|
|
|
guint bytes_per_sample;
|
2006-07-24 21:43:06 +00:00
|
|
|
|
2007-05-23 22:44:12 +00:00
|
|
|
/* current volume setup by mixer interface */
|
|
|
|
glong volume;
|
2012-01-27 15:37:19 +00:00
|
|
|
gboolean mute;
|
2015-08-16 19:21:51 +00:00
|
|
|
|
|
|
|
/* current directsound device ID */
|
|
|
|
gchar * device_id;
|
2007-05-23 22:44:12 +00:00
|
|
|
|
2010-03-26 22:20:10 +00:00
|
|
|
GstCaps *cached_caps;
|
2007-05-23 22:44:12 +00:00
|
|
|
/* lock used to protect writes and resets */
|
2012-09-11 10:36:56 +00:00
|
|
|
GMutex dsound_lock;
|
2006-07-24 21:43:06 +00:00
|
|
|
|
2017-05-08 15:22:00 +00:00
|
|
|
GstClock *system_clock;
|
|
|
|
GstClockID write_wait_clock_id;
|
|
|
|
gboolean reset_while_sleeping;
|
|
|
|
|
2006-07-24 21:43:06 +00:00
|
|
|
gboolean first_buffer_after_reset;
|
2010-03-26 22:20:10 +00:00
|
|
|
|
2012-01-27 15:37:19 +00:00
|
|
|
GstAudioRingBufferFormatType type;
|
2006-01-05 23:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstDirectSoundSinkClass
|
|
|
|
{
|
|
|
|
GstAudioSinkClass parent_class;
|
|
|
|
};
|
|
|
|
|
2007-02-18 18:00:51 +00:00
|
|
|
GType gst_directsound_sink_get_type (void);
|
2006-01-05 23:17:44 +00:00
|
|
|
|
2018-01-25 19:22:10 +00:00
|
|
|
#define GST_DIRECTSOUND_SINK_CAPS "audio/x-raw, " \
|
|
|
|
"format = (string) S16LE, " \
|
|
|
|
"layout = (string) interleaved, " \
|
|
|
|
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]; " \
|
|
|
|
"audio/x-raw, " \
|
|
|
|
"format = (string) U8, " \
|
|
|
|
"layout = (string) interleaved, " \
|
|
|
|
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ];" \
|
|
|
|
"audio/x-ac3, framed = (boolean) true;" \
|
2018-01-22 13:07:38 +00:00
|
|
|
"audio/x-dts, framed = (boolean) true;"
|
|
|
|
|
2006-01-05 23:17:44 +00:00
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_DIRECTSOUNDSINK_H__ */
|