diff options
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>& | |||
| 32 | case 0x9: | 32 | case 0x9: |
| 33 | return MapBuffer(input, output); | 33 | return MapBuffer(input, output); |
| 34 | case 0xa: { | 34 | case 0xa: { |
| 35 | if (command.length == 0x1c) { | ||
| 36 | LOG_INFO(Service_NVDRV, "NVDEC video stream ended"); | ||
| 37 | Tegra::ChCommandHeaderList cmdlist{{0xDEADB33F}}; | ||
| 38 | system.GPU().PushCommandBuffer(cmdlist); | ||
| 39 | } | ||
| 40 | return UnmapBuffer(input, output); | 35 | return UnmapBuffer(input, output); |
| 41 | } | 36 | } |
| 42 | default: | 37 | default: |
| @@ -70,6 +65,9 @@ NvResult nvhost_nvdec::Ioctl3(DeviceFD fd, Ioctl command, const std::vector<u8>& | |||
| 70 | } | 65 | } |
| 71 | 66 | ||
| 72 | void nvhost_nvdec::OnOpen(DeviceFD fd) {} | 67 | void nvhost_nvdec::OnOpen(DeviceFD fd) {} |
| 73 | void nvhost_nvdec::OnClose(DeviceFD fd) {} | 68 | |
| 69 | void nvhost_nvdec::OnClose(DeviceFD fd) { | ||
| 70 | system.GPU().ClearCommandBuffer(); | ||
| 71 | } | ||
| 74 | 72 | ||
| 75 | } // namespace Service::Nvidia::Devices | 73 | } // namespace Service::Nvidia::Devices |