mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
role-cork: Rename module-cork-music-on-phone to module-role-cork.
This module will be extended to be a bit more generic so the old name will soon be obsolete.
This commit is contained in:
parent
3c547194fc
commit
3c5cc34547
3 changed files with 11 additions and 11 deletions
|
|
@ -1006,7 +1006,7 @@ modlibexec_LTLIBRARIES += \
|
||||||
module-tunnel-source.la \
|
module-tunnel-source.la \
|
||||||
module-position-event-sounds.la \
|
module-position-event-sounds.la \
|
||||||
module-augment-properties.la \
|
module-augment-properties.la \
|
||||||
module-cork-music-on-phone.la \
|
module-role-cork.la \
|
||||||
module-loopback.la \
|
module-loopback.la \
|
||||||
module-virtual-sink.la \
|
module-virtual-sink.la \
|
||||||
module-virtual-source.la \
|
module-virtual-source.la \
|
||||||
|
|
@ -1298,7 +1298,7 @@ SYMDEF_FILES = \
|
||||||
module-gconf-symdef.h \
|
module-gconf-symdef.h \
|
||||||
module-position-event-sounds-symdef.h \
|
module-position-event-sounds-symdef.h \
|
||||||
module-augment-properties-symdef.h \
|
module-augment-properties-symdef.h \
|
||||||
module-cork-music-on-phone-symdef.h \
|
module-role-cork-symdef.h \
|
||||||
module-console-kit-symdef.h \
|
module-console-kit-symdef.h \
|
||||||
module-dbus-protocol-symdef.h \
|
module-dbus-protocol-symdef.h \
|
||||||
module-loopback-symdef.h \
|
module-loopback-symdef.h \
|
||||||
|
|
@ -1670,11 +1670,11 @@ module_augment_properties_la_LIBADD = $(MODULE_LIBADD)
|
||||||
#module_augment_properties_la_CFLAGS = $(AM_CFLAGS) -DDESKTOPFILEDIR=\"$(datadir)/applications\"
|
#module_augment_properties_la_CFLAGS = $(AM_CFLAGS) -DDESKTOPFILEDIR=\"$(datadir)/applications\"
|
||||||
module_augment_properties_la_CFLAGS = $(AM_CFLAGS) -DDESKTOPFILEDIR=\"/usr/share/applications\"
|
module_augment_properties_la_CFLAGS = $(AM_CFLAGS) -DDESKTOPFILEDIR=\"/usr/share/applications\"
|
||||||
|
|
||||||
# Cork music streams while a phone stream is active
|
# Cork certain streams while others are active (e.g. cork music when phone streams appear)
|
||||||
module_cork_music_on_phone_la_SOURCES = modules/module-cork-music-on-phone.c
|
module_role_cork_la_SOURCES = modules/module-role-cork.c
|
||||||
module_cork_music_on_phone_la_LDFLAGS = $(MODULE_LDFLAGS)
|
module_role_cork_la_LDFLAGS = $(MODULE_LDFLAGS)
|
||||||
module_cork_music_on_phone_la_LIBADD = $(MODULE_LIBADD)
|
module_role_cork_la_LIBADD = $(MODULE_LIBADD)
|
||||||
module_cork_music_on_phone_la_CFLAGS = $(AM_CFLAGS)
|
module_role_cork_la_CFLAGS = $(AM_CFLAGS)
|
||||||
|
|
||||||
# Device description restore module
|
# Device description restore module
|
||||||
module_device_manager_la_SOURCES = modules/module-device-manager.c
|
module_device_manager_la_SOURCES = modules/module-device-manager.c
|
||||||
|
|
|
||||||
|
|
@ -154,8 +154,8 @@ load-module module-console-kit
|
||||||
### Enable positioned event sounds
|
### Enable positioned event sounds
|
||||||
load-module module-position-event-sounds
|
load-module module-position-event-sounds
|
||||||
|
|
||||||
### Cork music streams when a phone stream is active
|
### Cork music/video streams when a phone stream is active
|
||||||
load-module module-cork-music-on-phone
|
load-module module-role-cork
|
||||||
|
|
||||||
### Modules to allow autoloading of filters (such as echo cancellation)
|
### Modules to allow autoloading of filters (such as echo cancellation)
|
||||||
### on demand. module-filter-heuristics tries to determine what filters
|
### on demand. module-filter-heuristics tries to determine what filters
|
||||||
|
|
|
||||||
|
|
@ -33,10 +33,10 @@
|
||||||
#include <pulsecore/sink-input.h>
|
#include <pulsecore/sink-input.h>
|
||||||
#include <pulsecore/modargs.h>
|
#include <pulsecore/modargs.h>
|
||||||
|
|
||||||
#include "module-cork-music-on-phone-symdef.h"
|
#include "module-role-cork-symdef.h"
|
||||||
|
|
||||||
PA_MODULE_AUTHOR("Lennart Poettering");
|
PA_MODULE_AUTHOR("Lennart Poettering");
|
||||||
PA_MODULE_DESCRIPTION("Mute or cork music while a phone stream exists");
|
PA_MODULE_DESCRIPTION("Mute & cork streams with certain roles while others exist");
|
||||||
PA_MODULE_VERSION(PACKAGE_VERSION);
|
PA_MODULE_VERSION(PACKAGE_VERSION);
|
||||||
PA_MODULE_LOAD_ONCE(TRUE);
|
PA_MODULE_LOAD_ONCE(TRUE);
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue