summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_classes/codecs/vp9.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vp9/vic: Resolve pessimizing movesLioncash2020-12-031-10/+10
| | | | | Removes the usage of moves that don't result in behavior different from a copy, or otherwise would prevent copy elision from occurring.
* Address PR feedbackameerj2020-11-261-1/+1
| | | | | | remove some redundant moves, make deleter match naming guidelines. Co-Authored-By: LC <712067+lioncash@users.noreply.github.com>
* Queue decoded frames, cleanup decodersameerj2020-11-251-192/+141
|
* nvdec: Make use of [[nodiscard]] where applicableLioncash2020-11-021-1/+1
| | | | | Prevents bugs from occurring where the results of a function are accidentally discarded
* vp9: Mark functions with [[nodiscard]] where applicableLioncash2020-10-301-4/+4
| | | | | Prevents values from mistakenly being discarded in cases where it's a bug to do so.
* vp9: Make some member functions internally linkedLioncash2020-10-301-48/+54
| | | | | These helper functions don't directly modify any member state and can be hidden from view.
* Merge pull request #4837 from lioncash/nvdec-2bunnei2020-10-291-20/+44
|\ | | | | nvdec: Minor tidying up
| * vp9: std::move buffer within ComposeFrameHeader()Lioncash2020-10-271-1/+1
| | | | | | | | We can move the buffer here to avoid a heap reallocation
| * vp9: Remove dead codeLioncash2020-10-271-6/+0
| |
| * vp9: Join declarations with assignmentsLioncash2020-10-271-7/+8
| |
| * vp9: Remove pessimizing movesLioncash2020-10-271-2/+2
| | | | | | | | The move will already occur without std::move.
| * vp9: Resolve variable shadowingLioncash2020-10-271-4/+4
| |
| * nvdec: Tidy up header includesLioncash2020-10-271-1/+30
| | | | | | | | Prevents a few unnecessary inclusions.
* | Merge pull request #4848 from ReinUsesLisp/type-limitsLC2020-10-281-1/+1
|\ \ | | | | | | video_core: Enforce -Werror=type-limits
| * | video_core: Enforce -Werror=type-limitsReinUsesLisp2020-10-281-1/+1
| |/ | | | | | | Silences one warning and avoids introducing more in the future.
* / video_core: Enforce -Wredundant-move and -Wpessimizing-moveReinUsesLisp2020-10-281-1/+1
|/ | | | Silence three warnings and make them errors to avoid introducing more in the future.
* video_core: NVDEC Implementationameerj2020-10-271-0/+1010
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>