mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-13 13:30:05 -05:00
video: add video format
start working on v4l2 source
This commit is contained in:
parent
3c029cba53
commit
beedb65f00
25 changed files with 1878 additions and 43 deletions
|
|
@ -53,6 +53,11 @@ typedef enum {
|
|||
SPA_PROP_TYPE_STRUCT,
|
||||
} SpaPropType;
|
||||
|
||||
typedef struct {
|
||||
int32_t num;
|
||||
int32_t denom;
|
||||
} SpaFraction;
|
||||
|
||||
/**
|
||||
* SpaPropFlags:
|
||||
* @SPA_PROP_FLAG_NONE: no flags
|
||||
|
|
@ -74,10 +79,8 @@ typedef enum {
|
|||
/* SpaPropRangeType:
|
||||
* @SPA_PROP_RANGE_TYPE_NONE: no range specified, full range of type applies
|
||||
* @SPA_PROP_RANGE_TYPE_MIN_MAX: range contains 2 values, min and max
|
||||
* @SPA_PROP_RANGE_TYPE_ENUM: range contains enum of possible values with
|
||||
* NULL-terminated name
|
||||
* @SPA_PROP_RANGE_TYPE_FLAGS: range contains flags of possible values with
|
||||
* NULL-terminated name
|
||||
* @SPA_PROP_RANGE_TYPE_ENUM: range contains enum of possible values
|
||||
* @SPA_PROP_RANGE_TYPE_FLAGS: range contains flags of possible values
|
||||
*/
|
||||
typedef enum {
|
||||
SPA_PROP_RANGE_TYPE_NONE = 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue