Don't stall with nvdec

This commit is contained in:
Kelebek1 2022-09-04 05:41:06 +01:00
parent c3e3874d8d
commit 77a30f7286
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