aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/command_classes/codecs/vp9.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-11-12 19:52:51 -0500
committerameerj <52414509+ameerj@users.noreply.github.com>2021-11-12 23:52:19 -0500
commitc50f17059730dc0566e1355fead9ac00d3b60e02 (patch)
treec2ecd768c64bf84ef63c11b5d13715e98a9056af /src/video_core/command_classes/codecs/vp9.h
parent1994edfeb63bc1851d8ff7fa1d53359a678623b3 (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/vp9.h')
-rw-r--r--src/video_core/command_classes/codecs/vp9.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/command_classes/codecs/vp9.h b/src/video_core/command_classes/codecs/vp9.h
index 6ab9ef5b5..2e735c792 100644
--- a/src/video_core/command_classes/codecs/vp9.h
+++ b/src/video_core/command_classes/codecs/vp9.h
@@ -118,13 +118,14 @@ public:
/// Composes the VP9 frame from the GPU state information.
/// Based on the official VP9 spec documentation
- void ComposeFrameHeader(const NvdecCommon::NvdecRegisters& state);
+ void ComposeFrame(const NvdecCommon::NvdecRegisters& state);
/// Returns true if the most recent frame was a hidden frame.
[[nodiscard]] bool WasFrameHidden() const {
return !current_frame_info.show_frame;
}
+ /// Returns a const reference to the composed frame data.
[[nodiscard]] const std::vector<u8>& GetFrameBytes() const {
return frame;
}