summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_classes/codecs/h264.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-11-13 01:52:51 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2021-11-13 05:52:19 +0100
commitc50f17059730dc0566e1355fead9ac00d3b60e02 (patch)
treec2ecd768c64bf84ef63c11b5d13715e98a9056af /src/video_core/command_classes/codecs/h264.h
parentCMake: Enable VP8 ffmpeg decoders (diff)
downloadyuzu-c50f17059730dc0566e1355fead9ac00d3b60e02.tar
yuzu-c50f17059730dc0566e1355fead9ac00d3b60e02.tar.gz
yuzu-c50f17059730dc0566e1355fead9ac00d3b60e02.tar.bz2
yuzu-c50f17059730dc0566e1355fead9ac00d3b60e02.tar.lz
yuzu-c50f17059730dc0566e1355fead9ac00d3b60e02.tar.xz
yuzu-c50f17059730dc0566e1355fead9ac00d3b60e02.tar.zst
yuzu-c50f17059730dc0566e1355fead9ac00d3b60e02.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/command_classes/codecs/h264.h6
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;