feat(audio): allow sending continuous audio (#4261)

This commit is contained in:
Mariotaku 2025-10-12 05:53:11 +09:00 committed by GitHub
commit fbcf2116c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 24 additions and 10 deletions

View file

@ -19,7 +19,7 @@ struct AudioTest: PlatformTestSuite, testing::WithParamInterface<std::tuple<std:
};
constexpr std::bitset<config_t::MAX_FLAGS> config_flags(const int flag = -1) {
std::bitset<3> result = std::bitset<config_t::MAX_FLAGS>();
auto result = std::bitset<config_t::MAX_FLAGS>();
if (flag >= 0) {
result.set(flag);
}