diff options
| author | Fernando S <fsahmkow27@gmail.com> | 2021-11-14 23:03:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-14 23:03:56 +0100 |
| commit | 720970c4c1d71c67fa8af1e86c78d9141148729b (patch) | |
| tree | d33d5f3fe85da3811932b590ebe459eb6e08a5ac /src/video_core/command_classes/codecs/h264.h | |
| parent | 30442d8a89fd42d9b7efea86e1b2461f09219936 (diff) | |
| parent | c50f17059730dc0566e1355fead9ac00d3b60e02 (diff) | |
Merge pull request #7326 from ameerj/vp8
codecs: Implement VP8 video decoding support
Diffstat (limited to 'src/video_core/command_classes/codecs/h264.h')
| -rw-r--r-- | src/video_core/command_classes/codecs/h264.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/command_classes/codecs/h264.h b/src/video_core/command_classes/codecs/h264.h index bfe84a472..1899d8e7f 100644 --- a/src/video_core/command_classes/codecs/h264.h +++ b/src/video_core/command_classes/codecs/h264.h @@ -75,9 +75,9 @@ public: explicit H264(GPU& gpu); ~H264(); - /// Compose the H264 header of the frame for FFmpeg decoding - [[nodiscard]] const std::vector<u8>& ComposeFrameHeader( - const NvdecCommon::NvdecRegisters& state, bool is_first_frame = false); + /// Compose the H264 frame for FFmpeg decoding + [[nodiscard]] const std::vector<u8>& ComposeFrame(const NvdecCommon::NvdecRegisters& state, + bool is_first_frame = false); private: std::vector<u8> frame; |
