There was an error fetching the commit references. Please try again later.
video_core: NVDEC Implementation
This commit aims to implement the NVDEC (Nvidia Decoder) functionality, with video frame decoding being handled by the FFmpeg library.
The process begins with Ioctl commands being sent to the NVDEC and VIC (Video Image Composer) emulated devices. These allocate the necessary GPU buffers for the frame data, along with providing information on the incoming video data. A Submit command then signals the GPU to process and decode the frame data.
To decode the frame, the respective codec's header must be manually composed from the information provided by NVDEC, then sent with the raw frame data to the ffmpeg library.
Currently, H264 and VP9 are supported, with VP9 having some minor artifacting issues related mainly to the reference frame composition in its uncompressed header.
Async GPU is not properly implemented at the moment.
Co-Authored-By:
David <25727384+ogniK5377@users.noreply.github.com>
Showing
- CMakeLists.txt 14 additions, 0 deletionsCMakeLists.txt
- CMakeModules/CopyYuzuFFmpegDeps.cmake 10 additions, 0 deletionsCMakeModules/CopyYuzuFFmpegDeps.cmake
- externals/find-modules/FindFFmpeg.cmake 100 additions, 0 deletionsexternals/find-modules/FindFFmpeg.cmake
- src/common/CMakeLists.txt 2 additions, 0 deletionssrc/common/CMakeLists.txt
- src/common/stream.cpp 47 additions, 0 deletionssrc/common/stream.cpp
- src/common/stream.h 50 additions, 0 deletionssrc/common/stream.h
- src/core/CMakeLists.txt 2 additions, 0 deletionssrc/core/CMakeLists.txt
- src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp 26 additions, 74 deletionssrc/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp
- src/core/hle/service/nvdrv/devices/nvhost_nvdec.h 11 additions, 60 deletionssrc/core/hle/service/nvdrv/devices/nvhost_nvdec.h
- src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp 234 additions, 0 deletionssrc/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp
- src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h 168 additions, 0 deletionssrc/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
- src/core/hle/service/nvdrv/devices/nvhost_vic.cpp 14 additions, 76 deletionssrc/core/hle/service/nvdrv/devices/nvhost_vic.cpp
- src/core/hle/service/nvdrv/devices/nvhost_vic.h 12 additions, 76 deletionssrc/core/hle/service/nvdrv/devices/nvhost_vic.h
- src/core/hle/service/nvdrv/devices/nvmap.h 1 addition, 0 deletionssrc/core/hle/service/nvdrv/devices/nvmap.h
- src/core/hle/service/nvdrv/nvdrv.cpp 2 additions, 2 deletionssrc/core/hle/service/nvdrv/nvdrv.cpp
- src/core/settings.cpp 2 additions, 0 deletionssrc/core/settings.cpp
- src/core/settings.h 1 addition, 0 deletionssrc/core/settings.h
- src/core/telemetry_session.cpp 2 additions, 0 deletionssrc/core/telemetry_session.cpp
- src/video_core/CMakeLists.txt 26 additions, 0 deletionssrc/video_core/CMakeLists.txt
- src/video_core/cdma_pusher.cpp 171 additions, 0 deletionssrc/video_core/cdma_pusher.cpp
Loading
Please register or sign in to comment