diff options
author | bunnei <bunneidev@gmail.com> | 2021-04-16 23:14:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-16 23:14:44 -0700 |
commit | 9ad77ba6d388c93b8f2258d6faab8b68342742ff (patch) | |
tree | d7f9fe69b8ed0504f7285d000d6c5e7c570870c3 /src/core | |
parent | d5c1f3929c3348691bda405dd2a4248773d02f2d (diff) | |
parent | edb1d5d242f5b86543b17a091ed31ebb02dabec0 (diff) |
Merge pull request #6125 from ogniK5377/nvdec-close-dev
nvdrv: Cleanup CDMA Processor on device closure
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp b/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp index c8031970b..4e58b9b80 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp @@ -32,11 +32,6 @@ NvResult nvhost_nvdec::Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& case 0x9: return MapBuffer(input, output); case 0xa: { - if (command.length == 0x1c) { - LOG_INFO(Service_NVDRV, "NVDEC video stream ended"); - Tegra::ChCommandHeaderList cmdlist{{0xDEADB33F}}; - system.GPU().PushCommandBuffer(cmdlist); - } return UnmapBuffer(input, output); } default: @@ -70,6 +65,9 @@ NvResult nvhost_nvdec::Ioctl3(DeviceFD fd, Ioctl command, const std::vector<u8>& } void nvhost_nvdec::OnOpen(DeviceFD fd) {} -void nvhost_nvdec::OnClose(DeviceFD fd) {} + +void nvhost_nvdec::OnClose(DeviceFD fd) { + system.GPU().ClearCommandBuffer(); +} } // namespace Service::Nvidia::Devices |