linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH BlueZ v2] audio: Move to profiles directory
@ 2012-11-09  9:58 Luiz Augusto von Dentz
  2012-11-09 10:48 ` Marcel Holtmann
  0 siblings, 1 reply; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2012-11-09  9:58 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

---
v2: Rebase after changes to remove gstreamer and SBC code

 Makefile.am                                  | 64 +++++++++++++++-------------
 {audio => profiles/audio}/a2dp-codecs.h      |  0
 {audio => profiles/audio}/a2dp.c             |  0
 {audio => profiles/audio}/a2dp.h             |  0
 {audio => profiles/audio}/audio.conf         |  0
 {audio => profiles/audio}/avctp.c            |  0
 {audio => profiles/audio}/avctp.h            |  0
 {audio => profiles/audio}/avdtp.c            |  0
 {audio => profiles/audio}/avdtp.h            |  0
 {audio => profiles/audio}/avrcp.c            |  0
 {audio => profiles/audio}/avrcp.h            |  0
 {audio => profiles/audio}/control.c          |  0
 {audio => profiles/audio}/control.h          |  0
 {audio => profiles/audio}/device.c           |  0
 {audio => profiles/audio}/device.h           |  0
 {audio => profiles/audio}/gateway.c          |  0
 {audio => profiles/audio}/gateway.h          |  0
 {audio => profiles/audio}/headset.c          |  0
 {audio => profiles/audio}/headset.h          |  0
 {audio => profiles/audio}/main.c             |  0
 {audio => profiles/audio}/manager.c          |  0
 {audio => profiles/audio}/manager.h          |  0
 {audio => profiles/audio}/media.c            |  0
 {audio => profiles/audio}/media.h            |  0
 {audio => profiles/audio}/player.c           |  0
 {audio => profiles/audio}/player.h           |  0
 {audio => profiles/audio}/rtp.h              |  0
 {audio => profiles/audio}/sink.c             |  0
 {audio => profiles/audio}/sink.h             |  0
 {audio => profiles/audio}/source.c           |  0
 {audio => profiles/audio}/source.h           |  0
 {audio => profiles/audio}/telephony-dummy.c  |  0
 {audio => profiles/audio}/telephony-maemo5.c |  0
 {audio => profiles/audio}/telephony-maemo6.c |  0
 {audio => profiles/audio}/telephony-ofono.c  |  0
 {audio => profiles/audio}/telephony.h        |  0
 {audio => profiles/audio}/transport.c        |  0
 {audio => profiles/audio}/transport.h        |  0
 38 files changed, 35 insertions(+), 29 deletions(-)
 rename {audio => profiles/audio}/a2dp-codecs.h (100%)
 rename {audio => profiles/audio}/a2dp.c (100%)
 rename {audio => profiles/audio}/a2dp.h (100%)
 rename {audio => profiles/audio}/audio.conf (100%)
 rename {audio => profiles/audio}/avctp.c (100%)
 rename {audio => profiles/audio}/avctp.h (100%)
 rename {audio => profiles/audio}/avdtp.c (100%)
 rename {audio => profiles/audio}/avdtp.h (100%)
 rename {audio => profiles/audio}/avrcp.c (100%)
 rename {audio => profiles/audio}/avrcp.h (100%)
 rename {audio => profiles/audio}/control.c (100%)
 rename {audio => profiles/audio}/control.h (100%)
 rename {audio => profiles/audio}/device.c (100%)
 rename {audio => profiles/audio}/device.h (100%)
 rename {audio => profiles/audio}/gateway.c (100%)
 rename {audio => profiles/audio}/gateway.h (100%)
 rename {audio => profiles/audio}/headset.c (100%)
 rename {audio => profiles/audio}/headset.h (100%)
 rename {audio => profiles/audio}/main.c (100%)
 rename {audio => profiles/audio}/manager.c (100%)
 rename {audio => profiles/audio}/manager.h (100%)
 rename {audio => profiles/audio}/media.c (100%)
 rename {audio => profiles/audio}/media.h (100%)
 rename {audio => profiles/audio}/player.c (100%)
 rename {audio => profiles/audio}/player.h (100%)
 rename {audio => profiles/audio}/rtp.h (100%)
 rename {audio => profiles/audio}/sink.c (100%)
 rename {audio => profiles/audio}/sink.h (100%)
 rename {audio => profiles/audio}/source.c (100%)
 rename {audio => profiles/audio}/source.h (100%)
 rename {audio => profiles/audio}/telephony-dummy.c (100%)
 rename {audio => profiles/audio}/telephony-maemo5.c (100%)
 rename {audio => profiles/audio}/telephony-maemo6.c (100%)
 rename {audio => profiles/audio}/telephony-ofono.c (100%)
 rename {audio => profiles/audio}/telephony.h (100%)
 rename {audio => profiles/audio}/transport.c (100%)
 rename {audio => profiles/audio}/transport.h (100%)

diff --git a/Makefile.am b/Makefile.am
index 11f7468..0465b5d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -105,29 +105,31 @@ endif
 
 if AUDIOPLUGIN
 builtin_modules += audio
-builtin_sources += audio/main.c \
-			audio/manager.h audio/manager.c \
-			audio/gateway.h audio/gateway.c \
-			audio/headset.h audio/headset.c \
-			audio/control.h audio/control.c \
-			audio/avctp.h audio/avctp.c \
-			audio/avrcp.h audio/avrcp.c \
-			audio/device.h audio/device.c \
-			audio/source.h audio/source.c \
-			audio/sink.h audio/sink.c \
-			audio/a2dp.h audio/a2dp.c \
-			audio/avdtp.h audio/avdtp.c \
-			audio/media.h audio/media.c \
-			audio/transport.h audio/transport.c \
-			audio/player.h audio/player.c \
-			audio/telephony.h audio/a2dp-codecs.h
-builtin_nodist += audio/telephony.c
-
-noinst_LIBRARIES += audio/libtelephony.a
-
-audio_libtelephony_a_SOURCES = audio/telephony.h audio/telephony-dummy.c \
-				audio/telephony-maemo5.c audio/telephony-ofono.c \
-				audio/telephony-maemo6.c
+builtin_sources += profiles/audio/main.c \
+			profiles/audio/manager.h profiles/audio/manager.c \
+			profiles/audio/gateway.h profiles/audio/gateway.c \
+			profiles/audio/headset.h profiles/audio/headset.c \
+			profiles/audio/control.h profiles/audio/control.c \
+			profiles/audio/avctp.h profiles/audio/avctp.c \
+			profiles/audio/avrcp.h profiles/audio/avrcp.c \
+			profiles/audio/device.h profiles/audio/device.c \
+			profiles/audio/source.h profiles/audio/source.c \
+			profiles/audio/sink.h profiles/audio/sink.c \
+			profiles/audio/a2dp.h profiles/audio/a2dp.c \
+			profiles/audio/avdtp.h profiles/audio/avdtp.c \
+			profiles/audio/media.h profiles/audio/media.c \
+			profiles/audio/transport.h profiles/audio/transport.c \
+			profiles/audio/player.h profiles/audio/player.c \
+			profiles/audio/telephony.h profiles/audio/a2dp-codecs.h
+builtin_nodist += profiles/audio/telephony.c
+
+noinst_LIBRARIES += profiles/audio/libtelephony.a
+
+profiles_audio_libtelephony_a_SOURCES = profiles/audio/telephony.h
+				profiles/audio/telephony-dummy.c \
+				profiles/audio/telephony-maemo5.c \
+				profiles/audio/telephony-ofono.c \
+				profiles/audio/telephony-maemo6.c
 endif
 
 if SAPPLUGIN
@@ -315,10 +317,14 @@ endif
 
 EXTRA_DIST += src/genbuiltin src/bluetooth.conf src/org.bluez.service \
 			src/main.conf profiles/network/network.conf \
-			profiles/input/input.conf profiles/proximity/proximity.conf \
-			audio/audio.conf audio/telephony-dummy.c \
-			audio/telephony-maemo5.c audio/telephony-ofono.c \
-			audio/telephony-maemo6.c profiles/sap/sap-dummy.c \
+			profiles/input/input.conf \
+			profiles/proximity/proximity.conf \
+			profiles/audio/audio.conf \
+			profiles/audio/telephony-dummy.c \
+			profiles/audio/telephony-maemo5.c \
+			profiles/audio/telephony-ofono.c \
+			profiles/audio/telephony-maemo6.c \
+			profiles/sap/sap-dummy.c \
 			profiles/sap/sap-u8500.c
 
 include Makefile.tools
@@ -360,7 +366,7 @@ EXTRA_DIST += doc/manager-api.txt \
 AM_CFLAGS += @DBUS_CFLAGS@ @GLIB_CFLAGS@
 
 AM_CPPFLAGS = -I$(builddir)/lib -I$(builddir)/src -I$(srcdir)/src \
-			-I$(srcdir)/audio -I$(srcdir)/gdbus \
+			-I$(srcdir)/profiles/audio -I$(srcdir)/gdbus \
 			-I$(srcdir)/attrib -I$(srcdir)/btio -I$(srcdir)/tools \
 			-I$(builddir)/tools -I$(srcdir)/monitor
 
@@ -400,7 +406,7 @@ MAINTAINERCLEANFILES = Makefile.in \
 src/builtin.h: src/genbuiltin $(builtin_sources)
 	$(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_modules) > $@
 
-audio/telephony.c: audio/@TELEPHONY_DRIVER@
+profiles/audio/telephony.c: profiles/audio/@TELEPHONY_DRIVER@
 	$(AM_V_GEN)$(LN_S) $(abs_top_builddir)/$< $@
 
 profiles/sap/sap.c: profiles/sap/@SAP_DRIVER@
diff --git a/audio/a2dp-codecs.h b/profiles/audio/a2dp-codecs.h
similarity index 100%
rename from audio/a2dp-codecs.h
rename to profiles/audio/a2dp-codecs.h
diff --git a/audio/a2dp.c b/profiles/audio/a2dp.c
similarity index 100%
rename from audio/a2dp.c
rename to profiles/audio/a2dp.c
diff --git a/audio/a2dp.h b/profiles/audio/a2dp.h
similarity index 100%
rename from audio/a2dp.h
rename to profiles/audio/a2dp.h
diff --git a/audio/audio.conf b/profiles/audio/audio.conf
similarity index 100%
rename from audio/audio.conf
rename to profiles/audio/audio.conf
diff --git a/audio/avctp.c b/profiles/audio/avctp.c
similarity index 100%
rename from audio/avctp.c
rename to profiles/audio/avctp.c
diff --git a/audio/avctp.h b/profiles/audio/avctp.h
similarity index 100%
rename from audio/avctp.h
rename to profiles/audio/avctp.h
diff --git a/audio/avdtp.c b/profiles/audio/avdtp.c
similarity index 100%
rename from audio/avdtp.c
rename to profiles/audio/avdtp.c
diff --git a/audio/avdtp.h b/profiles/audio/avdtp.h
similarity index 100%
rename from audio/avdtp.h
rename to profiles/audio/avdtp.h
diff --git a/audio/avrcp.c b/profiles/audio/avrcp.c
similarity index 100%
rename from audio/avrcp.c
rename to profiles/audio/avrcp.c
diff --git a/audio/avrcp.h b/profiles/audio/avrcp.h
similarity index 100%
rename from audio/avrcp.h
rename to profiles/audio/avrcp.h
diff --git a/audio/control.c b/profiles/audio/control.c
similarity index 100%
rename from audio/control.c
rename to profiles/audio/control.c
diff --git a/audio/control.h b/profiles/audio/control.h
similarity index 100%
rename from audio/control.h
rename to profiles/audio/control.h
diff --git a/audio/device.c b/profiles/audio/device.c
similarity index 100%
rename from audio/device.c
rename to profiles/audio/device.c
diff --git a/audio/device.h b/profiles/audio/device.h
similarity index 100%
rename from audio/device.h
rename to profiles/audio/device.h
diff --git a/audio/gateway.c b/profiles/audio/gateway.c
similarity index 100%
rename from audio/gateway.c
rename to profiles/audio/gateway.c
diff --git a/audio/gateway.h b/profiles/audio/gateway.h
similarity index 100%
rename from audio/gateway.h
rename to profiles/audio/gateway.h
diff --git a/audio/headset.c b/profiles/audio/headset.c
similarity index 100%
rename from audio/headset.c
rename to profiles/audio/headset.c
diff --git a/audio/headset.h b/profiles/audio/headset.h
similarity index 100%
rename from audio/headset.h
rename to profiles/audio/headset.h
diff --git a/audio/main.c b/profiles/audio/main.c
similarity index 100%
rename from audio/main.c
rename to profiles/audio/main.c
diff --git a/audio/manager.c b/profiles/audio/manager.c
similarity index 100%
rename from audio/manager.c
rename to profiles/audio/manager.c
diff --git a/audio/manager.h b/profiles/audio/manager.h
similarity index 100%
rename from audio/manager.h
rename to profiles/audio/manager.h
diff --git a/audio/media.c b/profiles/audio/media.c
similarity index 100%
rename from audio/media.c
rename to profiles/audio/media.c
diff --git a/audio/media.h b/profiles/audio/media.h
similarity index 100%
rename from audio/media.h
rename to profiles/audio/media.h
diff --git a/audio/player.c b/profiles/audio/player.c
similarity index 100%
rename from audio/player.c
rename to profiles/audio/player.c
diff --git a/audio/player.h b/profiles/audio/player.h
similarity index 100%
rename from audio/player.h
rename to profiles/audio/player.h
diff --git a/audio/rtp.h b/profiles/audio/rtp.h
similarity index 100%
rename from audio/rtp.h
rename to profiles/audio/rtp.h
diff --git a/audio/sink.c b/profiles/audio/sink.c
similarity index 100%
rename from audio/sink.c
rename to profiles/audio/sink.c
diff --git a/audio/sink.h b/profiles/audio/sink.h
similarity index 100%
rename from audio/sink.h
rename to profiles/audio/sink.h
diff --git a/audio/source.c b/profiles/audio/source.c
similarity index 100%
rename from audio/source.c
rename to profiles/audio/source.c
diff --git a/audio/source.h b/profiles/audio/source.h
similarity index 100%
rename from audio/source.h
rename to profiles/audio/source.h
diff --git a/audio/telephony-dummy.c b/profiles/audio/telephony-dummy.c
similarity index 100%
rename from audio/telephony-dummy.c
rename to profiles/audio/telephony-dummy.c
diff --git a/audio/telephony-maemo5.c b/profiles/audio/telephony-maemo5.c
similarity index 100%
rename from audio/telephony-maemo5.c
rename to profiles/audio/telephony-maemo5.c
diff --git a/audio/telephony-maemo6.c b/profiles/audio/telephony-maemo6.c
similarity index 100%
rename from audio/telephony-maemo6.c
rename to profiles/audio/telephony-maemo6.c
diff --git a/audio/telephony-ofono.c b/profiles/audio/telephony-ofono.c
similarity index 100%
rename from audio/telephony-ofono.c
rename to profiles/audio/telephony-ofono.c
diff --git a/audio/telephony.h b/profiles/audio/telephony.h
similarity index 100%
rename from audio/telephony.h
rename to profiles/audio/telephony.h
diff --git a/audio/transport.c b/profiles/audio/transport.c
similarity index 100%
rename from audio/transport.c
rename to profiles/audio/transport.c
diff --git a/audio/transport.h b/profiles/audio/transport.h
similarity index 100%
rename from audio/transport.h
rename to profiles/audio/transport.h
-- 
1.7.11.7


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH BlueZ v2] audio: Move to profiles directory
  2012-11-09  9:58 [PATCH BlueZ v2] audio: Move to profiles directory Luiz Augusto von Dentz
@ 2012-11-09 10:48 ` Marcel Holtmann
  2012-11-12  9:08   ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 3+ messages in thread
From: Marcel Holtmann @ 2012-11-09 10:48 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

Hi Luiz,

> ---
> v2: Rebase after changes to remove gstreamer and SBC code
> 
>  Makefile.am                                  | 64 +++++++++++++++-------------
>  {audio => profiles/audio}/a2dp-codecs.h      |  0

this one is used from avinfo.c as well. We might move that one better
into lib/ or some place else.

>  {audio => profiles/audio}/a2dp.c             |  0
>  {audio => profiles/audio}/a2dp.h             |  0
>  {audio => profiles/audio}/audio.conf         |  0
>  {audio => profiles/audio}/avctp.c            |  0
>  {audio => profiles/audio}/avctp.h            |  0
>  {audio => profiles/audio}/avdtp.c            |  0
>  {audio => profiles/audio}/avdtp.h            |  0
>  {audio => profiles/audio}/avrcp.c            |  0
>  {audio => profiles/audio}/avrcp.h            |  0
>  {audio => profiles/audio}/control.c          |  0
>  {audio => profiles/audio}/control.h          |  0
>  {audio => profiles/audio}/device.c           |  0
>  {audio => profiles/audio}/device.h           |  0
>  {audio => profiles/audio}/gateway.c          |  0
>  {audio => profiles/audio}/gateway.h          |  0
>  {audio => profiles/audio}/headset.c          |  0
>  {audio => profiles/audio}/headset.h          |  0
>  {audio => profiles/audio}/main.c             |  0
>  {audio => profiles/audio}/manager.c          |  0
>  {audio => profiles/audio}/manager.h          |  0
>  {audio => profiles/audio}/media.c            |  0
>  {audio => profiles/audio}/media.h            |  0
>  {audio => profiles/audio}/player.c           |  0
>  {audio => profiles/audio}/player.h           |  0
>  {audio => profiles/audio}/rtp.h              |  0
>  {audio => profiles/audio}/sink.c             |  0
>  {audio => profiles/audio}/sink.h             |  0
>  {audio => profiles/audio}/source.c           |  0
>  {audio => profiles/audio}/source.h           |  0
>  {audio => profiles/audio}/telephony-dummy.c  |  0
>  {audio => profiles/audio}/telephony-maemo5.c |  0
>  {audio => profiles/audio}/telephony-maemo6.c |  0
>  {audio => profiles/audio}/telephony-ofono.c  |  0
>  {audio => profiles/audio}/telephony.h        |  0
>  {audio => profiles/audio}/transport.c        |  0
>  {audio => profiles/audio}/transport.h        |  0
>  38 files changed, 35 insertions(+), 29 deletions(-)
>  rename {audio => profiles/audio}/a2dp-codecs.h (100%)
>  rename {audio => profiles/audio}/a2dp.c (100%)
>  rename {audio => profiles/audio}/a2dp.h (100%)
>  rename {audio => profiles/audio}/audio.conf (100%)
>  rename {audio => profiles/audio}/avctp.c (100%)
>  rename {audio => profiles/audio}/avctp.h (100%)
>  rename {audio => profiles/audio}/avdtp.c (100%)
>  rename {audio => profiles/audio}/avdtp.h (100%)
>  rename {audio => profiles/audio}/avrcp.c (100%)
>  rename {audio => profiles/audio}/avrcp.h (100%)
>  rename {audio => profiles/audio}/control.c (100%)
>  rename {audio => profiles/audio}/control.h (100%)
>  rename {audio => profiles/audio}/device.c (100%)
>  rename {audio => profiles/audio}/device.h (100%)
>  rename {audio => profiles/audio}/gateway.c (100%)
>  rename {audio => profiles/audio}/gateway.h (100%)
>  rename {audio => profiles/audio}/headset.c (100%)
>  rename {audio => profiles/audio}/headset.h (100%)
>  rename {audio => profiles/audio}/main.c (100%)
>  rename {audio => profiles/audio}/manager.c (100%)
>  rename {audio => profiles/audio}/manager.h (100%)
>  rename {audio => profiles/audio}/media.c (100%)
>  rename {audio => profiles/audio}/media.h (100%)
>  rename {audio => profiles/audio}/player.c (100%)
>  rename {audio => profiles/audio}/player.h (100%)
>  rename {audio => profiles/audio}/rtp.h (100%)
>  rename {audio => profiles/audio}/sink.c (100%)
>  rename {audio => profiles/audio}/sink.h (100%)
>  rename {audio => profiles/audio}/source.c (100%)
>  rename {audio => profiles/audio}/source.h (100%)
>  rename {audio => profiles/audio}/telephony-dummy.c (100%)
>  rename {audio => profiles/audio}/telephony-maemo5.c (100%)
>  rename {audio => profiles/audio}/telephony-maemo6.c (100%)
>  rename {audio => profiles/audio}/telephony-ofono.c (100%)
>  rename {audio => profiles/audio}/telephony.h (100%)
>  rename {audio => profiles/audio}/transport.c (100%)
>  rename {audio => profiles/audio}/transport.h (100%)

Before we do this, lets take the telephony stuff out first. We do not
want to keep it anyway.

Regards

Marcel



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH BlueZ v2] audio: Move to profiles directory
  2012-11-09 10:48 ` Marcel Holtmann
@ 2012-11-12  9:08   ` Luiz Augusto von Dentz
  0 siblings, 0 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2012-11-12  9:08 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

Hi Marcel,

On Fri, Nov 9, 2012 at 12:48 PM, Marcel Holtmann <marcel@holtmann.org> wrote:
> Hi Luiz,
>
>> ---
>> v2: Rebase after changes to remove gstreamer and SBC code
>>
>>  Makefile.am                                  | 64 +++++++++++++++-------------
>>  {audio => profiles/audio}/a2dp-codecs.h      |  0
>
> this one is used from avinfo.c as well. We might move that one better
> into lib/ or some place else.
>
>>  {audio => profiles/audio}/a2dp.c             |  0
>>  {audio => profiles/audio}/a2dp.h             |  0
>>  {audio => profiles/audio}/audio.conf         |  0
>>  {audio => profiles/audio}/avctp.c            |  0
>>  {audio => profiles/audio}/avctp.h            |  0
>>  {audio => profiles/audio}/avdtp.c            |  0
>>  {audio => profiles/audio}/avdtp.h            |  0
>>  {audio => profiles/audio}/avrcp.c            |  0
>>  {audio => profiles/audio}/avrcp.h            |  0
>>  {audio => profiles/audio}/control.c          |  0
>>  {audio => profiles/audio}/control.h          |  0
>>  {audio => profiles/audio}/device.c           |  0
>>  {audio => profiles/audio}/device.h           |  0
>>  {audio => profiles/audio}/gateway.c          |  0
>>  {audio => profiles/audio}/gateway.h          |  0
>>  {audio => profiles/audio}/headset.c          |  0
>>  {audio => profiles/audio}/headset.h          |  0
>>  {audio => profiles/audio}/main.c             |  0
>>  {audio => profiles/audio}/manager.c          |  0
>>  {audio => profiles/audio}/manager.h          |  0
>>  {audio => profiles/audio}/media.c            |  0
>>  {audio => profiles/audio}/media.h            |  0
>>  {audio => profiles/audio}/player.c           |  0
>>  {audio => profiles/audio}/player.h           |  0
>>  {audio => profiles/audio}/rtp.h              |  0
>>  {audio => profiles/audio}/sink.c             |  0
>>  {audio => profiles/audio}/sink.h             |  0
>>  {audio => profiles/audio}/source.c           |  0
>>  {audio => profiles/audio}/source.h           |  0
>>  {audio => profiles/audio}/telephony-dummy.c  |  0
>>  {audio => profiles/audio}/telephony-maemo5.c |  0
>>  {audio => profiles/audio}/telephony-maemo6.c |  0
>>  {audio => profiles/audio}/telephony-ofono.c  |  0
>>  {audio => profiles/audio}/telephony.h        |  0
>>  {audio => profiles/audio}/transport.c        |  0
>>  {audio => profiles/audio}/transport.h        |  0
>>  38 files changed, 35 insertions(+), 29 deletions(-)
>>  rename {audio => profiles/audio}/a2dp-codecs.h (100%)
>>  rename {audio => profiles/audio}/a2dp.c (100%)
>>  rename {audio => profiles/audio}/a2dp.h (100%)
>>  rename {audio => profiles/audio}/audio.conf (100%)
>>  rename {audio => profiles/audio}/avctp.c (100%)
>>  rename {audio => profiles/audio}/avctp.h (100%)
>>  rename {audio => profiles/audio}/avdtp.c (100%)
>>  rename {audio => profiles/audio}/avdtp.h (100%)
>>  rename {audio => profiles/audio}/avrcp.c (100%)
>>  rename {audio => profiles/audio}/avrcp.h (100%)
>>  rename {audio => profiles/audio}/control.c (100%)
>>  rename {audio => profiles/audio}/control.h (100%)
>>  rename {audio => profiles/audio}/device.c (100%)
>>  rename {audio => profiles/audio}/device.h (100%)
>>  rename {audio => profiles/audio}/gateway.c (100%)
>>  rename {audio => profiles/audio}/gateway.h (100%)
>>  rename {audio => profiles/audio}/headset.c (100%)
>>  rename {audio => profiles/audio}/headset.h (100%)
>>  rename {audio => profiles/audio}/main.c (100%)
>>  rename {audio => profiles/audio}/manager.c (100%)
>>  rename {audio => profiles/audio}/manager.h (100%)
>>  rename {audio => profiles/audio}/media.c (100%)
>>  rename {audio => profiles/audio}/media.h (100%)
>>  rename {audio => profiles/audio}/player.c (100%)
>>  rename {audio => profiles/audio}/player.h (100%)
>>  rename {audio => profiles/audio}/rtp.h (100%)
>>  rename {audio => profiles/audio}/sink.c (100%)
>>  rename {audio => profiles/audio}/sink.h (100%)
>>  rename {audio => profiles/audio}/source.c (100%)
>>  rename {audio => profiles/audio}/source.h (100%)
>>  rename {audio => profiles/audio}/telephony-dummy.c (100%)
>>  rename {audio => profiles/audio}/telephony-maemo5.c (100%)
>>  rename {audio => profiles/audio}/telephony-maemo6.c (100%)
>>  rename {audio => profiles/audio}/telephony-ofono.c (100%)
>>  rename {audio => profiles/audio}/telephony.h (100%)
>>  rename {audio => profiles/audio}/transport.c (100%)
>>  rename {audio => profiles/audio}/transport.h (100%)
>
> Before we do this, lets take the telephony stuff out first. We do not
> want to keep it anyway.

That probably means audio/headset.c and audio/gateway.c should be
removed as well and no btd_profiles should be registered for those
profiles. This will leave us without any HFP profiles support for now,
but I guess this is okay as they will be external profiles.

-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-11-12  9:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-09  9:58 [PATCH BlueZ v2] audio: Move to profiles directory Luiz Augusto von Dentz
2012-11-09 10:48 ` Marcel Holtmann
2012-11-12  9:08   ` Luiz Augusto von Dentz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).