Don't stall with nvdec

This commit is contained in:
Kelebek1 2022-09-04 05:41:06 +01:00
parent ea9ff71725
commit 2129d040a5
4 changed files with 35 additions and 2 deletions

View file

@ -57,4 +57,12 @@ void AudioCore::PauseSinks(const bool pausing) const {
}
}
void AudioCore::SetNVDECActive(bool active) {
nvdec_active = active;
}
bool AudioCore::IsNVDECActive() const {
return nvdec_active;
}
} // namespace AudioCore