mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-13 13:30:05 -05:00
Cleanup audio format
This commit is contained in:
parent
b901c2c67d
commit
a5f21576fa
6 changed files with 21 additions and 15 deletions
|
|
@ -72,6 +72,7 @@ typedef struct {
|
|||
* @SPA_PROP_FLAG_WRITABLE: property is writable
|
||||
* @SPA_PROP_FLAG_READWRITE: property is readable and writable
|
||||
* @SPA_PROP_FLAG_DEPRECATED: property is deprecated and should not be used
|
||||
* @SPA_PROP_FLAG_INFO: property is to get/set the complete structure
|
||||
*/
|
||||
typedef enum {
|
||||
SPA_PROP_FLAG_NONE = 0,
|
||||
|
|
@ -80,6 +81,7 @@ typedef enum {
|
|||
SPA_PROP_FLAG_WRITABLE = (1 << 2),
|
||||
SPA_PROP_FLAG_READWRITE = SPA_PROP_FLAG_READABLE | SPA_PROP_FLAG_WRITABLE,
|
||||
SPA_PROP_FLAG_DEPRECATED = (1 << 3),
|
||||
SPA_PROP_FLAG_INFO = (1 << 4),
|
||||
} SpaPropFlags;
|
||||
|
||||
/* SpaPropRangeType:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue