-
Notifications
You must be signed in to change notification settings - Fork 8.2k
LE Audio: Broadcast audio list instead of array #44828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
db5b005 to
7549601
Compare
|
Depends on #43709 |
|
Rebased to fix merge conflicts |
|
Rebased to fix test failure |
Casper-Bonde-Bose
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
@Thalley please rebase |
c2eeb6f
|
Rebased to solve merge conflicts |
|
Rebased to solve merge conflicts |
|
@MariuszSkamra please take a look |
asbjornsabo
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am wondering about the first commit - it does not really do much, and it does not seem to fit neither the title nor the description it has.
Otherwise, this looks sane to me.
(Posting this as a comment, not a "request changes", as I may not be able to follow up and do not want to block the PR.)
a68ee8f to
720b98d
Compare
Squashed the first commit. Not sure how it ended up like that :D |
720b98d to
51ed3fa
Compare
|
Fixed build error after another commit was merged |
51ed3fa to
e19a3cd
Compare
|
Rebased to solve merge conflicts |
Modify from array to list. The list approach is easily implemented as it is used for the unicast groups, and using the list approach instead of an array does not require the array to be static. Signed-off-by: Emil Gydesen <[email protected]>
Modify the broadcast sink to use a list of streams instead of an array. This removes the requirement that the array of stream pointers shall be static, and makes the broadcast sink API and implementation more similar to the unicast group and broadcast source. Signed-off-by: Emil Gydesen <[email protected]>
The sys_snode_t nodes are used internally, and we use the convention of the "_" prefix to indicate that this is an internally used value. Signed-off-by: Emil Gydesen <[email protected]>
e19a3cd to
49c3bf1
Compare
|
Rebased to solve merge conflicts |
Modifies the broadcast source and sink APIs and implementations to use a slist instead of an array of pointers to hold the streams.
fixes #43767