pulse-server: index flags are only used for modules

one flag for the internal extension modules, another flag for the
modules we load in pulse server that don't really have a matching
pipewire module.
This commit is contained in:
Wim Taymans 2022-01-17 10:28:09 +01:00
parent 6a2aea8e0a
commit 955e4287ab
4 changed files with 9 additions and 9 deletions

View file

@ -56,9 +56,9 @@
#define SCACHE_ENTRY_SIZE_MAX (1024*1024*16)
#define INDEX_MASK 0xffffffu
#define EXTENSION_FLAG (1u << 25)
#define MODULE_FLAG (1u << 26)
#define MODULE_INDEX_MASK 0xfffffffu
#define MODULE_EXTENSION_FLAG (1u << 28)
#define MODULE_FLAG (1u << 29)
#define DEFAULT_SINK "@DEFAULT_SINK@"
#define DEFAULT_SOURCE "@DEFAULT_SOURCE@"