diff options
author | Kazumasa Mitsunari <kazumasa_mitsunari_za@mail.toyota.co.jp> | 2017-08-29 20:58:47 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <kazumasa_mitsunari_za@mail.toyota.co.jp> | 2017-08-29 20:58:47 +0900 |
commit | 2e602801b372b0b68111316b89f567213e3ea378 (patch) | |
tree | c7d53d765baba6d1cf2435eb51d913fd6abe6c11 /conf | |
parent | f743c3428f41b8d127e538ea8a6505a0c882cdb2 (diff) |
Add sound manager initial source code
First version 2017/08/29
SoundManager consists of main 4 parts
1. doc
Document of sound manager and audio manager architecture
This describes application sequence
Please open ApplicationGuide.md with browser
2. include
Contains API of libsoundmanager
LibSoundmanager API is going to be modified, so please don't use for now
Update will be done in near future
3. soundmanager_binding
Contains soundmanager binding. This is the service midleware
If installing this, soundmanager is automatically launched by AppFW(systemd)
4. sample
Contains sample applications. These applications follow the AudioManager sequence and using soundmanager binding
Change-Id: I75b6c5c652e1dc00b39bc499a2ee6bf1e2aeaf6d
Signed-off-by: Kazumasa Mitsunari <kazumasa_mitsunari_za@mail.toyota.co.jp>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/soundmanager-dbus.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/conf/soundmanager-dbus.conf b/conf/soundmanager-dbus.conf new file mode 100644 index 0000000..cacb60e --- /dev/null +++ b/conf/soundmanager-dbus.conf @@ -0,0 +1,18 @@ +<!-- This configuration file specifies the required security policies +to use the audiomanager command d-bus plugin interface. --> + +<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" +"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> +<busconfig> + <!-- ../system.conf have denied everything, so we just punch some holes --> + <policy user="root"> + <allow own="org.genivi.audiomanager.routing.soundmanager"/> + <allow send_destination="org.genivi.audiomanager.routing.soundmanager"/> + </policy> + <policy at_console="true"> + <allow send_destination="org.genivi.audiomanager.routing.soundmanager"/> + </policy> + <policy context="default"> + <allow send_destination="org.genivi.audiomanager.routing.soundmanager"/> + </policy> +</busconfig> |