OSDN Git Service

eclair snapshot
[android-x86/external-bluetooth-bluez.git] / audio / device.h
1 /*
2  *
3  *  BlueZ - Bluetooth protocol stack for Linux
4  *
5  *  Copyright (C) 2006-2007  Nokia Corporation
6  *  Copyright (C) 2004-2009  Marcel Holtmann <marcel@holtmann.org>
7  *
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  */
24
25 #define GENERIC_AUDIO_UUID      "00001203-0000-1000-8000-00805F9B34FB"
26
27 #define HSP_HS_UUID             "00001108-0000-1000-8000-00805F9B34FB"
28 #define HSP_AG_UUID             "00001112-0000-1000-8000-00805F9B34FB"
29
30 #define HFP_HS_UUID             "0000111E-0000-1000-8000-00805F9B34FB"
31 #define HFP_AG_UUID             "0000111F-0000-1000-8000-00805F9B34FB"
32
33 #define ADVANCED_AUDIO_UUID     "0000110D-0000-1000-8000-00805F9B34FB"
34
35 #define A2DP_SOURCE_UUID        "0000110A-0000-1000-8000-00805F9B34FB"
36 #define A2DP_SINK_UUID          "0000110B-0000-1000-8000-00805F9B34FB"
37
38 #define AVRCP_REMOTE_UUID       "0000110E-0000-1000-8000-00805F9B34FB"
39 #define AVRCP_TARGET_UUID       "0000110C-0000-1000-8000-00805F9B34FB"
40
41 /* Move these to respective .h files once they exist */
42 #define AUDIO_SOURCE_INTERFACE          "org.bluez.AudioSource"
43 #define AUDIO_CONTROL_INTERFACE         "org.bluez.Control"
44
45 struct source;
46 struct control;
47 struct target;
48 struct sink;
49 struct headset;
50 struct gateway;
51 struct dev_priv;
52
53 struct audio_device {
54         struct btd_device *btd_dev;
55
56         DBusConnection *conn;
57         char *path;
58         bdaddr_t src;
59         bdaddr_t dst;
60
61         gboolean auto_connect;
62
63         struct headset *headset;
64         struct gateway *gateway;
65         struct sink *sink;
66         struct source *source;
67         struct control *control;
68         struct target *target;
69
70         struct dev_priv *priv;
71 };
72
73 struct audio_device *audio_device_register(DBusConnection *conn,
74                                         struct btd_device *device,
75                                         const char *path, const bdaddr_t *src,
76                                         const bdaddr_t *dst);
77
78 void audio_device_unregister(struct audio_device *device);
79
80 gboolean audio_device_is_active(struct audio_device *dev,
81                                                 const char *interface);
82
83 typedef void (*authorization_cb) (DBusError *derr, void *user_data);
84
85 int audio_device_request_authorization(struct audio_device *dev,
86                                         const char *uuid, authorization_cb cb,
87                                         void *user_data);