Home | History | Annotate | Download | only in audio
      1 /*
      2  *
      3  *  BlueZ - Bluetooth protocol stack for Linux
      4  *
      5  *  Copyright (C) 2006-2010  Nokia Corporation
      6  *  Copyright (C) 2004-2010  Marcel Holtmann <marcel (at) 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 	guint hs_preauth_id;
     71 
     72 	struct dev_priv *priv;
     73 };
     74 
     75 struct audio_device *audio_device_register(DBusConnection *conn,
     76 					struct btd_device *device,
     77 					const char *path, const bdaddr_t *src,
     78 					const bdaddr_t *dst);
     79 
     80 void audio_device_unregister(struct audio_device *device);
     81 
     82 gboolean audio_device_is_active(struct audio_device *dev,
     83 						const char *interface);
     84 
     85 typedef void (*authorization_cb) (DBusError *derr, void *user_data);
     86 
     87 int audio_device_cancel_authorization(struct audio_device *dev,
     88 					authorization_cb cb, void *user_data);
     89 
     90 int audio_device_request_authorization(struct audio_device *dev,
     91 					const char *uuid, authorization_cb cb,
     92 					void *user_data);
     93 
     94 void audio_device_set_authorized(struct audio_device *dev, gboolean auth);
     95