mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
audioconvert: expose upmix-method in PROP_INFO
This commit is contained in:
parent
a84bf672e8
commit
048e10ee3b
2 changed files with 28 additions and 6 deletions
|
|
@ -56,9 +56,9 @@ struct channelmix {
|
|||
#define CHANNELMIX_OPTION_NORMALIZE (1<<1) /**< normalize volumes */
|
||||
#define CHANNELMIX_OPTION_UPMIX (1<<2) /**< do simple upmixing */
|
||||
uint32_t options;
|
||||
#define CHANNELMIX_UPMIX_NONE (0) /**< disable upmixing */
|
||||
#define CHANNELMIX_UPMIX_SIMPLE (1) /**< simple upmixing */
|
||||
#define CHANNELMIX_UPMIX_PSD (2) /**< Passive Surround Decoding upmixing */
|
||||
#define CHANNELMIX_UPMIX_NONE 0 /**< disable upmixing */
|
||||
#define CHANNELMIX_UPMIX_SIMPLE 1 /**< simple upmixing */
|
||||
#define CHANNELMIX_UPMIX_PSD 2 /**< Passive Surround Decoding upmixing */
|
||||
uint32_t upmix;
|
||||
|
||||
struct spa_log *log;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue