OSDN Git Service

audio: Move to profiles directory
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Mon, 12 Nov 2012 17:00:32 +0000 (19:00 +0200)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Tue, 13 Nov 2012 14:24:25 +0000 (16:24 +0200)
29 files changed:
Makefile.am
profiles/audio/a2dp-codecs.h [moved from audio/a2dp-codecs.h with 100% similarity]
profiles/audio/a2dp.c [moved from audio/a2dp.c with 100% similarity]
profiles/audio/a2dp.h [moved from audio/a2dp.h with 100% similarity]
profiles/audio/audio.conf [moved from audio/audio.conf with 100% similarity]
profiles/audio/avctp.c [moved from audio/avctp.c with 100% similarity]
profiles/audio/avctp.h [moved from audio/avctp.h with 100% similarity]
profiles/audio/avdtp.c [moved from audio/avdtp.c with 100% similarity]
profiles/audio/avdtp.h [moved from audio/avdtp.h with 100% similarity]
profiles/audio/avrcp.c [moved from audio/avrcp.c with 100% similarity]
profiles/audio/avrcp.h [moved from audio/avrcp.h with 100% similarity]
profiles/audio/control.c [moved from audio/control.c with 100% similarity]
profiles/audio/control.h [moved from audio/control.h with 100% similarity]
profiles/audio/device.c [moved from audio/device.c with 100% similarity]
profiles/audio/device.h [moved from audio/device.h with 100% similarity]
profiles/audio/main.c [moved from audio/main.c with 100% similarity]
profiles/audio/manager.c [moved from audio/manager.c with 100% similarity]
profiles/audio/manager.h [moved from audio/manager.h with 100% similarity]
profiles/audio/media.c [moved from audio/media.c with 100% similarity]
profiles/audio/media.h [moved from audio/media.h with 100% similarity]
profiles/audio/player.c [moved from audio/player.c with 100% similarity]
profiles/audio/player.h [moved from audio/player.h with 100% similarity]
profiles/audio/rtp.h [moved from audio/rtp.h with 100% similarity]
profiles/audio/sink.c [moved from audio/sink.c with 100% similarity]
profiles/audio/sink.h [moved from audio/sink.h with 100% similarity]
profiles/audio/source.c [moved from audio/source.c with 100% similarity]
profiles/audio/source.h [moved from audio/source.h with 100% similarity]
profiles/audio/transport.c [moved from audio/transport.c with 100% similarity]
profiles/audio/transport.h [moved from audio/transport.h with 100% similarity]

index 84ae237..10c811a 100644 (file)
@@ -105,20 +105,20 @@ endif
 
 if AUDIOPLUGIN
 builtin_modules += audio
-builtin_sources += audio/main.c \
-                       audio/manager.h audio/manager.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/a2dp-codecs.h
+builtin_sources += profiles/audio/main.c \
+                       profiles/audio/manager.h profiles/audio/manager.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/a2dp-codecs.h
 endif
 
 if SAPPLUGIN
@@ -305,7 +305,7 @@ 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 \
+                       profiles/audio/audio.conf \
                        profiles/sap/sap-dummy.c profiles/sap/sap-u8500.c
 
 include Makefile.tools
@@ -347,7 +347,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
 
similarity index 100%
rename from audio/a2dp.c
rename to profiles/audio/a2dp.c
similarity index 100%
rename from audio/a2dp.h
rename to profiles/audio/a2dp.h
similarity index 100%
rename from audio/audio.conf
rename to profiles/audio/audio.conf
similarity index 100%
rename from audio/avctp.c
rename to profiles/audio/avctp.c
similarity index 100%
rename from audio/avctp.h
rename to profiles/audio/avctp.h
similarity index 100%
rename from audio/avdtp.c
rename to profiles/audio/avdtp.c
similarity index 100%
rename from audio/avdtp.h
rename to profiles/audio/avdtp.h
similarity index 100%
rename from audio/avrcp.c
rename to profiles/audio/avrcp.c
similarity index 100%
rename from audio/avrcp.h
rename to profiles/audio/avrcp.h
similarity index 100%
rename from audio/control.c
rename to profiles/audio/control.c
similarity index 100%
rename from audio/control.h
rename to profiles/audio/control.h
similarity index 100%
rename from audio/device.c
rename to profiles/audio/device.c
similarity index 100%
rename from audio/device.h
rename to profiles/audio/device.h
similarity index 100%
rename from audio/main.c
rename to profiles/audio/main.c
similarity index 100%
rename from audio/manager.c
rename to profiles/audio/manager.c
similarity index 100%
rename from audio/manager.h
rename to profiles/audio/manager.h
similarity index 100%
rename from audio/media.c
rename to profiles/audio/media.c
similarity index 100%
rename from audio/media.h
rename to profiles/audio/media.h
similarity index 100%
rename from audio/player.c
rename to profiles/audio/player.c
similarity index 100%
rename from audio/player.h
rename to profiles/audio/player.h
similarity index 100%
rename from audio/rtp.h
rename to profiles/audio/rtp.h
similarity index 100%
rename from audio/sink.c
rename to profiles/audio/sink.c
similarity index 100%
rename from audio/sink.h
rename to profiles/audio/sink.h
similarity index 100%
rename from audio/source.c
rename to profiles/audio/source.c
similarity index 100%
rename from audio/source.h
rename to profiles/audio/source.h
similarity index 100%
rename from audio/transport.c
rename to profiles/audio/transport.c
similarity index 100%
rename from audio/transport.h
rename to profiles/audio/transport.h