audio_core/lle: only process pipe signal after loading
This commit is contained in:
parent
92e5c51adb
commit
483680a124
|
@ -349,6 +349,9 @@ void DspLle::SetServiceToInterrupt(std::weak_ptr<Service::DSP::DSP_DSP> dsp) {
|
|||
});
|
||||
|
||||
auto ProcessPipeEvent = [this, dsp](bool event_from_data) {
|
||||
if (!impl->loaded)
|
||||
return;
|
||||
|
||||
auto& teakra = impl->teakra;
|
||||
if (event_from_data) {
|
||||
impl->data_signaled = true;
|
||||
|
|
Loading…
Reference in New Issue