nvdrv: Cleanup CDMA Processor on device closure

Brings us a step closer to unifying all channels to share a common interface.
This commit is contained in:
Chloe Marcec 2021-03-30 20:37:40 +11:00
parent 9c9f9c4a41
commit d835e6b8e8
3 changed files with 15 additions and 11 deletions

View file

@ -480,11 +480,7 @@ void GPU::PushCommandBuffer(Tegra::ChCommandHeaderList& entries) {
if (!use_nvdec) {
return;
}
// This condition fires when a video stream ends, clear all intermediary data
if (entries[0].raw == 0xDEADB33F) {
cdma_pusher.reset();
return;
}
if (!cdma_pusher) {
cdma_pusher = std::make_unique<Tegra::CDmaPusher>(*this);
}
@ -496,6 +492,13 @@ void GPU::PushCommandBuffer(Tegra::ChCommandHeaderList& entries) {
cdma_pusher->ProcessEntries(std::move(entries));
}
void GPU::ClearCommandBuffer() {
// This condition fires when a video stream ends, clear all intermediary data
if (cdma_pusher) {
cdma_pusher.reset();
}
}
void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {
gpu_thread.SwapBuffers(framebuffer);
}