| 500 | return false; |
| 501 | } |
| 502 | void hlsSystem::SetLLSoundQuantity(int n_sounds) { |
| 503 | if (n_sounds > MAX_SOUNDS_MIXED) { |
| 504 | n_sounds = MAX_SOUNDS_MIXED; |
| 505 | } |
| 506 | n_lls_sounds = n_sounds; |
| 507 | mprintf(1, "SNDLIB: Allow %d sounds to be mixed.\n", n_sounds); |
| 508 | if (m_f_hls_system_init) { |
| 509 | InitSoundLib(NULL, Sound_mixer, Sound_quality, false); |
| 510 | } |
| 511 | } |
| 512 | int hlsSystem::GetLLSoundQuantity() { return n_lls_sounds; } |
| 513 | // Start and clean-up after the sound library |
| 514 | int hlsSystem::InitSoundLib(oeApplication *sos, char mixer_type, char quality, bool f_kill_sound_list) { |
no outgoing calls
no test coverage detected