Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | VideoCore: Refactor syncing. | Fernando Sahmkow | 2022-10-06 | 1 | -33/+0 |
| | |||||
* | general: Convert source file copyright comments over to SPDX | Morph | 2022-04-23 | 1 | -3/+2 |
| | | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later. | ||||
* | Slightly refactor NVDEC and codecs for readability and safety | Kelebek1 | 2021-07-01 | 1 | -6/+2 |
| | |||||
* | streamline cdma_pusher/command_classes | ameerj | 2021-02-13 | 1 | -1/+1 |
| | |||||
* | Queue decoded frames, cleanup decoders | ameerj | 2020-11-25 | 1 | -2/+1 |
| | |||||
* | nvdec: Make use of [[nodiscard]] where applicable | Lioncash | 2020-11-02 | 1 | -2/+2 |
| | | | | | Prevents bugs from occurring where the results of a function are accidentally discarded | ||||
* | nvdec: Tidy up header includes | Lioncash | 2020-10-27 | 1 | -3/+3 |
| | | | | Prevents a few unnecessary inclusions. | ||||
* | video_core: NVDEC Implementation | ameerj | 2020-10-27 | 1 | -0/+39 |
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> |