diff options
| author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-11-12 19:52:51 -0500 |
|---|---|---|
| committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-11-12 23:52:19 -0500 |
| commit | c50f17059730dc0566e1355fead9ac00d3b60e02 (patch) | |
| tree | c2ecd768c64bf84ef63c11b5d13715e98a9056af /src/video_core/command_classes/codecs/vp8.h | |
| parent | 1994edfeb63bc1851d8ff7fa1d53359a678623b3 (diff) | |
codes: Rename ComposeFrameHeader to ComposeFrame
These functions were composing the entire frame, not just the headers. Rename to more accurately describe them.
Diffstat (limited to 'src/video_core/command_classes/codecs/vp8.h')
| -rw-r--r-- | src/video_core/command_classes/codecs/vp8.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/command_classes/codecs/vp8.h b/src/video_core/command_classes/codecs/vp8.h index d71917596..41fc7b403 100644 --- a/src/video_core/command_classes/codecs/vp8.h +++ b/src/video_core/command_classes/codecs/vp8.h @@ -20,9 +20,8 @@ public: explicit VP8(GPU& gpu); ~VP8(); - /// Compose the VP8 header of the frame for FFmpeg decoding - [[nodiscard]] const std::vector<u8>& ComposeFrameHeader( - const NvdecCommon::NvdecRegisters& state); + /// Compose the VP8 frame for FFmpeg decoding + [[nodiscard]] const std::vector<u8>& ComposeFrame(const NvdecCommon::NvdecRegisters& state); private: std::vector<u8> frame; |
