Message ID | 20240313090359.164196-2-vlad.pruteanu@nxp.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 84628e5d109cbec0bbd515c12c4b5224380784fe |
Headers | show |
Series | client/player: Update minimum LC3 SDU size to accommodate 8_1 config | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
tedd_an/ScanBuild | success | Scan Build PASS |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=834885 ---Test result--- Test Summary: CheckPatch PASS 0.44 seconds GitLint PASS 0.31 seconds BuildEll PASS 24.21 seconds BluezMake PASS 1698.32 seconds MakeCheck PASS 13.17 seconds MakeDistcheck PASS 176.84 seconds CheckValgrind PASS 247.68 seconds CheckSmatch PASS 350.18 seconds bluezmakeextell PASS 119.81 seconds IncrementalBuild PASS 1458.97 seconds ScanBuild PASS 1010.77 seconds --- Regards, Linux Bluetooth
diff --git a/client/player.c b/client/player.c index a40bf66e3..30bcfb95d 100644 --- a/client/player.c +++ b/client/player.c @@ -1188,10 +1188,10 @@ static const struct capabilities { * Frequencies: 8Khz 11Khz 16Khz 22Khz 24Khz 32Khz 44.1Khz 48Khz * Duration: 7.5 ms 10 ms * Channel count: 3 - * Frame length: 30-240 + * Frame length: 26-240 */ CODEC_CAPABILITIES("pac_snk/lc3", PAC_SINK_UUID, LC3_ID, - LC3_DATA(LC3_FREQ_ANY, LC3_DURATION_ANY, 3u, 30, + LC3_DATA(LC3_FREQ_ANY, LC3_DURATION_ANY, 3u, 26, 240), UTIL_IOV_INIT()), @@ -1200,10 +1200,10 @@ static const struct capabilities { * Frequencies: 8Khz 11Khz 16Khz 22Khz 24Khz 32Khz 44.1Khz 48Khz * Duration: 7.5 ms 10 ms * Channel count: 3 - * Frame length: 30-240 + * Frame length: 26-240 */ CODEC_CAPABILITIES("pac_src/lc3", PAC_SOURCE_UUID, LC3_ID, - LC3_DATA(LC3_FREQ_ANY, LC3_DURATION_ANY, 3u, 30, + LC3_DATA(LC3_FREQ_ANY, LC3_DURATION_ANY, 3u, 26, 240), UTIL_IOV_INIT()), @@ -1212,10 +1212,10 @@ static const struct capabilities { * Frequencies: 8Khz 11Khz 16Khz 22Khz 24Khz 32Khz 44.1Khz 48Khz * Duration: 7.5 ms 10 ms * Channel count: 3 - * Frame length: 30-240 + * Frame length: 26-240 */ CODEC_CAPABILITIES("bcaa/lc3", BCAA_SERVICE_UUID, LC3_ID, - LC3_DATA(LC3_FREQ_ANY, LC3_DURATION_ANY, 3u, 30, + LC3_DATA(LC3_FREQ_ANY, LC3_DURATION_ANY, 3u, 26, 240), UTIL_IOV_INIT()), @@ -1224,10 +1224,10 @@ static const struct capabilities { * Frequencies: 8Khz 11Khz 16Khz 22Khz 24Khz 32Khz 44.1Khz 48Khz * Duration: 7.5 ms 10 ms * Channel count: 3 - * Frame length: 30-240 + * Frame length: 26-240 */ CODEC_CAPABILITIES("baa/lc3", BAA_SERVICE_UUID, LC3_ID, - LC3_DATA(LC3_FREQ_ANY, LC3_DURATION_ANY, 3u, 30, + LC3_DATA(LC3_FREQ_ANY, LC3_DURATION_ANY, 3u, 26, 240), UTIL_IOV_INIT()), };