summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibVideo/VP9/ProbabilityTables.h
diff options
context:
space:
mode:
authorFalseHonesty <thefalsehonesty@gmail.com>2021-06-20 10:37:33 -0400
committerAndreas Kling <kling@serenityos.org>2021-06-30 11:03:51 +0200
commit988e17ed052621cd2cfb16eeea65fdc293b8b55c (patch)
tree681b045973c6f06af7c79f43e2e9859582e410de /Userland/Libraries/LibVideo/VP9/ProbabilityTables.h
parent7d4053dde19b57fdce096dc139100e80c48fd89b (diff)
downloadserenity-988e17ed052621cd2cfb16eeea65fdc293b8b55c.zip
LibVideo: Migrate to east-const style & apply other minor fixes
This patch brings all of LibVideo up to the east-const style in the project. Additionally, it applies a few fixes from the reviews in #8170 that referred to older LibVideo code.
Diffstat (limited to 'Userland/Libraries/LibVideo/VP9/ProbabilityTables.h')
-rw-r--r--Userland/Libraries/LibVideo/VP9/ProbabilityTables.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Libraries/LibVideo/VP9/ProbabilityTables.h b/Userland/Libraries/LibVideo/VP9/ProbabilityTables.h
index 78953c079d..ea75018f93 100644
--- a/Userland/Libraries/LibVideo/VP9/ProbabilityTables.h
+++ b/Userland/Libraries/LibVideo/VP9/ProbabilityTables.h
@@ -45,10 +45,10 @@ public:
void load_probs(size_t index);
void load_probs2(size_t index);
- const ParetoTable& pareto_table() const;
- const KfPartitionProbs& kf_partition_probs() const;
- const KfYModeProbs& kf_y_mode_probs() const;
- const KfUVModeProbs& kf_uv_mode_prob() const;
+ ParetoTable const& pareto_table() const;
+ KfPartitionProbs const& kf_partition_probs() const;
+ KfYModeProbs const& kf_y_mode_probs() const;
+ KfUVModeProbs const& kf_uv_mode_prob() const;
PartitionProbs& partition_probs() { return m_current_probability_table.partition_probs; };
YModeProbs& y_mode_probs() { return m_current_probability_table.y_mode_probs; };