aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/host1x/codecs/vp8.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-06-24 21:58:23 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-06-30 21:49:59 -0400
commit310b6cf4af940fa07666400426bbcca815c5375c (patch)
treed3de4ddab952c5404be38035ece48773c0be41ac /src/video_core/host1x/codecs/vp8.h
parentfbd85417ffdfe23dd4b4d3d13518244bd00be361 (diff)
general: Use ScratchBuffer where possible
Diffstat (limited to 'src/video_core/host1x/codecs/vp8.h')
-rw-r--r--src/video_core/host1x/codecs/vp8.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/video_core/host1x/codecs/vp8.h b/src/video_core/host1x/codecs/vp8.h
index 5bf07ecab..7926b73f3 100644
--- a/src/video_core/host1x/codecs/vp8.h
+++ b/src/video_core/host1x/codecs/vp8.h
@@ -4,10 +4,11 @@
#pragma once
#include <array>
-#include <vector>
+#include <span>
#include "common/common_funcs.h"
#include "common/common_types.h"
+#include "common/scratch_buffer.h"
#include "video_core/host1x/nvdec_common.h"
namespace Tegra {
@@ -24,11 +25,11 @@ public:
~VP8();
/// Compose the VP8 frame for FFmpeg decoding
- [[nodiscard]] const std::vector<u8>& ComposeFrame(
+ [[nodiscard]] std::span<const u8> ComposeFrame(
const Host1x::NvdecCommon::NvdecRegisters& state);
private:
- std::vector<u8> frame;
+ Common::ScratchBuffer<u8> frame;
Host1x::Host1x& host1x;
struct VP8PictureInfo {