mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-08 13:30:08 -05:00
buffer: remove buffer id
The buffer id is not needed/used, we use the index of the buffer in the buffer array when configuring the port.
This commit is contained in:
parent
e918f9f77c
commit
5b7ddb0105
33 changed files with 167 additions and 65 deletions
|
|
@ -71,11 +71,10 @@ struct spa_data {
|
|||
|
||||
/** A Buffer */
|
||||
struct spa_buffer {
|
||||
uint32_t id; /**< the id of this buffer */
|
||||
struct spa_meta *metas; /**< array of metadata */
|
||||
uint32_t n_metas; /**< number of metadata */
|
||||
struct spa_data *datas; /**< array of data members */
|
||||
uint32_t n_datas; /**< number of data members */
|
||||
struct spa_meta *metas; /**< array of metadata */
|
||||
struct spa_data *datas; /**< array of data members */
|
||||
};
|
||||
|
||||
/** Find metadata in a buffer */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue