summaryrefslogtreecommitdiffstats
path: root/audio/gsta2dpsink.c
blob: 088325247911be9cf74be4bdb596115ceeef1a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
 *
 *  BlueZ - Bluetooth protocol stack for Linux
 *
 *  Copyright (C) 2004-2007  Marcel Holtmann <marcel@holtmann.org>
 *
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "ipc.h"
#include "sbc.h"

#include "gsta2dpsink.h"

GST_DEBUG_CATEGORY_STATIC(a2dp_sink_debug);
#define GST_CAT_DEFAULT a2dp_sink_debug

GST_BOILERPLATE(GstA2dpSink, gst_a2dp_sink, GstAudioSink, GST_TYPE_AUDIO_SINK);

static const GstElementDetails a2dp_sink_details =
	GST_ELEMENT_DETAILS("Bluetooth A2DP sink",
				"Sink/Audio",
				"Plays audio to an A2DP device",
				"Marcel Holtmann <marcel@holtmann.org>");

static GstStaticPadTemplate sink_factory =
	GST_STATIC_PAD_TEMPLATE("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
							GST_STATIC_CAPS("ANY"));

static void gst_a2dp_sink_base_init(gpointer g_class)
{
	GstElementClass *element_class = GST_ELEMENT_CLASS(g_class);

	GST_DEBUG("");

	gst_element_class_add_pad_template(element_class,
			gst_static_pad_template_get(&sink_factory));

	gst_element_class_set_details(element_class, &a2dp_sink_details);
}

static void gst_a2dp_sink_dispose(GObject *object)
{
	G_OBJECT_CLASS(parent_class)->dispose(object);
}

static void gst_a2dp_sink_finalize(GObject *object)
{
	G_OBJECT_CLASS(parent_class)->finalize(object);
}

static void gst_a2dp_sink_get_property(GObject *object, guint prop_id,
					GValue *value, GParamSpec *pspec)
{
	switch (prop_id) {
	default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
		break;
	}
}

static void gst_a2dp_sink_set_property(GObject *object, guint prop_id,
					const GValue *value, GParamSpec *pspec)
{
	switch (prop_id) {
	default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
		break;
	}
}

static GstCaps *gst_a2dp_sink_getcaps(GstBaseSink *basesink)
{
	GST_DEBUG_OBJECT(basesink, "");

	return NULL;
}

static gboolean gst_a2dp_sink_open(GstAudioSink *audiosink)
{
	GST_DEBUG_OBJECT(audiosink, "");

	return TRUE;
}

static gboolean gst_a2dp_sink_prepare(GstAudioSink *audiosink,
						GstRingBufferSpec *spec)
{
	GST_DEBUG_OBJECT(audiosink, "spec %p", spec);

	return TRUE;
}

static gboolean gst_a2dp_sink_unprepare(GstAudioSink *audiosink)
{
	GST_DEBUG_OBJECT(audiosink, "");

	return TRUE;
}

static gboolean gst_a2dp_sink_close(GstAudioSink *audiosink)
{
	GST_DEBUG_OBJECT(audiosink, "");

	return TRUE;
}

static guint gst_a2dp_sink_write(GstAudioSink *audiosink,
						gpointer data, guint length)
{
	GST_DEBUG_OBJECT(audiosink, "data %p length %d", data, length);

	return length;
}

static guint gst_a2dp_sink_delay(GstAudioSink *audiosink)
{
	GST_DEBUG_OBJECT(audiosink, "");

	return 0;
}

static void gst_a2dp_sink_reset(GstAudioSink *audiosink)
{
	GST_DEBUG_OBJECT(audiosink, "");
}

static void gst_a2dp_sink_class_init(GstA2dpSinkClass *klass)
{
	GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
	GstBaseSinkClass *gstbasesink_class = GST_BASE_SINK_CLASS(klass);
	GstAudioSinkClass *gstaudiosink_class = GST_AUDIO_SINK_CLASS(klass);

	GST_DEBUG("");

	parent_class = g_type_class_peek_parent(klass);

	gobject_class->dispose = GST_DEBUG_FUNCPTR(gst_a2dp_sink_dispose);
	gobject_class->finalize = GST_DEBUG_FUNCPTR(gst_a2dp_sink_finalize);
	gobject_class->get_property = GST_DEBUG_FUNCPTR(gst_a2dp_sink_get_property);
	gobject_class->set_property = GST_DEBUG_FUNCPTR(gst_a2dp_sink_set_property);

	gstbasesink_class->get_caps = GST_DEBUG_FUNCPTR(gst_a2dp_sink_getcaps);

	gstaudiosink_class->open = GST_DEBUG_FUNCPTR(gst_a2dp_sink_open);
	gstaudiosink_class->prepare = GST_DEBUG_FUNCPTR(gst_a2dp_sink_prepare);
	gstaudiosink_class->unprepare = GST_DEBUG_FUNCPTR(gst_a2dp_sink_unprepare);
	gstaudiosink_class->close = GST_DEBUG_FUNCPTR(gst_a2dp_sink_close);
	gstaudiosink_class->write = GST_DEBUG_FUNCPTR(gst_a2dp_sink_write);
	gstaudiosink_class->delay = GST_DEBUG_FUNCPTR(gst_a2dp_sink_delay);
	gstaudiosink_class->reset = GST_DEBUG_FUNCPTR(gst_a2dp_sink_reset);

	GST_DEBUG_CATEGORY_INIT(a2dp_sink_debug, "a2dpsink", 0,
						"A2DP sink element");
}

static void gst_a2dp_sink_init(GstA2dpSink *a2dpsink, GstA2dpSinkClass *klass)
{
	GST_DEBUG_OBJECT(a2dpsink, "");
}