diff options
| author | 2021-07-05 16:06:09 -0400 | |
|---|---|---|
| committer | 2021-07-05 16:06:09 -0400 | |
| commit | c770fa9823185fd2878310546311b528d421e31c (patch) | |
| tree | 1b2cd25a36cc9b770635174f0a0c38132436f3a2 /src/video_core/cdma_pusher.cpp | |
| parent | Merge pull request #6561 from german77/analog_fix (diff) | |
| parent | Slightly refactor NVDEC and codecs for readability and safety (diff) | |
| download | yuzu-c770fa9823185fd2878310546311b528d421e31c.tar.gz yuzu-c770fa9823185fd2878310546311b528d421e31c.tar.xz yuzu-c770fa9823185fd2878310546311b528d421e31c.zip | |
Merge pull request #6540 from Kelebek1/nvdec
Slightly refactor NVDEC and codecs for readability and safety
Diffstat (limited to 'src/video_core/cdma_pusher.cpp')
| -rw-r--r-- | src/video_core/cdma_pusher.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/cdma_pusher.cpp b/src/video_core/cdma_pusher.cpp index a3fda1094..8b86ad050 100644 --- a/src/video_core/cdma_pusher.cpp +++ b/src/video_core/cdma_pusher.cpp | |||
| @@ -103,8 +103,7 @@ void CDmaPusher::ExecuteCommand(u32 state_offset, u32 data) { | |||
| 103 | case ThiMethod::SetMethod1: | 103 | case ThiMethod::SetMethod1: |
| 104 | LOG_DEBUG(Service_NVDRV, "NVDEC method 0x{:X}", | 104 | LOG_DEBUG(Service_NVDRV, "NVDEC method 0x{:X}", |
| 105 | static_cast<u32>(nvdec_thi_state.method_0)); | 105 | static_cast<u32>(nvdec_thi_state.method_0)); |
| 106 | nvdec_processor->ProcessMethod(static_cast<Nvdec::Method>(nvdec_thi_state.method_0), | 106 | nvdec_processor->ProcessMethod(nvdec_thi_state.method_0, data); |
| 107 | data); | ||
| 108 | break; | 107 | break; |
| 109 | default: | 108 | default: |
| 110 | break; | 109 | break; |