summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_classes/codecs/codec.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-11-13 01:28:21 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2021-11-13 01:49:45 +0100
commitb39b33b1fe1a396bb2f9841d48a1cb45cbfde806 (patch)
tree75517c706c67c3329c0cd6436a2a6397f3dddf24 /src/video_core/command_classes/codecs/codec.h
parentMerge pull request #7320 from OatmealDome/homebrew-capabilities (diff)
downloadyuzu-b39b33b1fe1a396bb2f9841d48a1cb45cbfde806.tar
yuzu-b39b33b1fe1a396bb2f9841d48a1cb45cbfde806.tar.gz
yuzu-b39b33b1fe1a396bb2f9841d48a1cb45cbfde806.tar.bz2
yuzu-b39b33b1fe1a396bb2f9841d48a1cb45cbfde806.tar.lz
yuzu-b39b33b1fe1a396bb2f9841d48a1cb45cbfde806.tar.xz
yuzu-b39b33b1fe1a396bb2f9841d48a1cb45cbfde806.tar.zst
yuzu-b39b33b1fe1a396bb2f9841d48a1cb45cbfde806.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/command_classes/codecs/codec.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/command_classes/codecs/codec.h b/src/video_core/command_classes/codecs/codec.h
index f9a80886f..13ed88382 100644
--- a/src/video_core/command_classes/codecs/codec.h
+++ b/src/video_core/command_classes/codecs/codec.h
@@ -29,6 +29,7 @@ using AVFramePtr = std::unique_ptr<AVFrame, decltype(&AVFrameDeleter)>;
namespace Decoder {
class H264;
+class VP8;
class VP9;
} // namespace Decoder
@@ -72,6 +73,7 @@ private:
GPU& gpu;
const NvdecCommon::NvdecRegisters& state;
std::unique_ptr<Decoder::H264> h264_decoder;
+ std::unique_ptr<Decoder::VP8> vp8_decoder;
std::unique_ptr<Decoder::VP9> vp9_decoder;
std::queue<AVFramePtr> av_frames{};