summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_classes/codecs/vp8.cpp
blob: 976e9f9b72e055c90767548216d95238d22d0b43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include <array>
#include <vector>

#include "video_core/command_classes/codecs/vp8.h"

namespace Tegra::Decoder {
VP8::VP8(GPU& gpu_) : gpu(gpu_) {}

VP8::~VP8() = default;

const std::vector<u8>& VP8::ComposeFrameHeader(const NvdecCommon::NvdecRegisters& state,
                                               bool is_first_frame) {
    return {};
}

} // namespace Tegra::Decoder