summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_classes/codecs/vp9.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-30 03:34:44 +0100
committerLioncash <mathew1800@gmail.com>2020-10-30 03:34:46 +0100
commitf8543249f0e96a3148f3ea888bfa62882e67f523 (patch)
treefbf46483ea3b3ca233244ee88fab3ebcf9e37061 /src/video_core/command_classes/codecs/vp9.h
parentMerge pull request #4831 from lioncash/fmt (diff)
downloadyuzu-f8543249f0e96a3148f3ea888bfa62882e67f523.tar
yuzu-f8543249f0e96a3148f3ea888bfa62882e67f523.tar.gz
yuzu-f8543249f0e96a3148f3ea888bfa62882e67f523.tar.bz2
yuzu-f8543249f0e96a3148f3ea888bfa62882e67f523.tar.lz
yuzu-f8543249f0e96a3148f3ea888bfa62882e67f523.tar.xz
yuzu-f8543249f0e96a3148f3ea888bfa62882e67f523.tar.zst
yuzu-f8543249f0e96a3148f3ea888bfa62882e67f523.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/command_classes/codecs/vp9.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/video_core/command_classes/codecs/vp9.h b/src/video_core/command_classes/codecs/vp9.h
index dc52ddbde..3826f2c95 100644
--- a/src/video_core/command_classes/codecs/vp9.h
+++ b/src/video_core/command_classes/codecs/vp9.h
@@ -121,12 +121,6 @@ private:
/// Generates compressed header probability deltas in the bitstream writer
void WriteProbabilityDelta(VpxRangeEncoder& writer, u8 new_prob, u8 old_prob);
- /// Adjusts old_prob depending on new_prob. Based on section 6.3.5 of VP9 Specification
- s32 RemapProbability(s32 new_prob, s32 old_prob);
-
- /// Recenters probability. Based on section 6.3.6 of VP9 Specification
- s32 RecenterNonNeg(s32 new_prob, s32 old_prob);
-
/// Inverse of 6.3.4 Decode term subexp
void EncodeTermSubExp(VpxRangeEncoder& writer, s32 value);
@@ -146,10 +140,6 @@ private:
/// Write motion vector probability updates. 6.3.17 in the spec
void WriteMvProbabilityUpdate(VpxRangeEncoder& writer, u8 new_prob, u8 old_prob);
- /// 6.2.14 Tile size calculation
- s32 CalcMinLog2TileCols(s32 frame_width);
- s32 CalcMaxLog2TileCols(s32 frame_width);
-
/// Returns VP9 information from NVDEC provided offset and size
Vp9PictureInfo GetVp9PictureInfo(const NvdecCommon::NvdecRegisters& state);