diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-10-29 22:34:44 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-10-29 22:34:46 -0400 |
| commit | f8543249f0e96a3148f3ea888bfa62882e67f523 (patch) | |
| tree | fbf46483ea3b3ca233244ee88fab3ebcf9e37061 /src/video_core/command_classes/codecs/vp9.h | |
| parent | 7dcf4c00180c4e8b9342042ce9860bf5fc576dc2 (diff) | |
vp9: Make some member functions internally linked
These helper functions don't directly modify any member state and can be
hidden from view.
Diffstat (limited to 'src/video_core/command_classes/codecs/vp9.h')
| -rw-r--r-- | src/video_core/command_classes/codecs/vp9.h | 10 |
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); |
