-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
applications: nrf5340_audio: Rail the presentation delay. #15035
applications: nrf5340_audio: Rail the presentation delay. #15035
Conversation
Test specificationCI/Jenkins/NRF
CI/Jenkins/integration
Detailed information of selected test modules Note: This message is automatically posted and updated by the CI |
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
eb97d33
to
48857e8
Compare
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
48857e8
to
7316250
Compare
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publishing GitHub Action. |
7316250
to
a5b1780
Compare
bec232b
to
d2c05af
Compare
01ebc99
to
345a01c
Compare
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c
Outdated
Show resolved
Hide resolved
345a01c
to
6f906f0
Compare
6f906f0
to
74007dd
Compare
if (pref_pd_min == 0) { | ||
*pres_dly_us = pd_min; | ||
} else if (pref_pd_min <= pd_max) { | ||
*pres_dly_us = pref_pd_min; | ||
} else { |
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.
if (pref_pd_min == 0) { | |
*pres_dly_us = pd_min; | |
} else if (pref_pd_min <= pd_max) { | |
*pres_dly_us = pref_pd_min; | |
} else { | |
if (pref_pd_min == 0) { | |
*pres_dly_us = pd_min; | |
} else if (pref_pd_min = pd_max) { | |
*pres_dly_us = pref_pd_min; | |
} else if (pref_pd_min < pd_max) { | |
*pres_dly_us = pref_pd_min; | |
LOG_WRN("...."); | |
} else { |
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.
And the same below.
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.
Not sure I follow the above, why the warning?
74007dd
to
b24bd3c
Compare
b24bd3c
to
b9db25b
Compare
5527b39
to
d7805c4
Compare
Ensure the preferred presentation delay is within the range of the min and max delays, rail if not. Search for the presentation delay function updated to search over the end points for the direction. Signed-off-by: Graham Wacey <[email protected]>
d7805c4
to
98b8007
Compare
OCT--2976
Ensure the preferred presentation delay is within the range of the min and max delays, rail if not.
Search for the presentation delay function updated to search over the end points for the direction.