summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibVideo/VP9/Context.h
diff options
context:
space:
mode:
authorZaggy1024 <zaggy1024@gmail.com>2022-11-26 10:59:00 -0600
committerAndreas Kling <kling@serenityos.org>2022-11-30 08:28:30 +0100
commit1a2d8ac40c6cfa38997169553e3e01e6124e59be (patch)
tree5be384d602aa256890677877bdd25774bd8f3fb0 /Userland/Libraries/LibVideo/VP9/Context.h
parentf6e645a1530e29b7103296a0df4471af61e6639b (diff)
downloadserenity-1a2d8ac40c6cfa38997169553e3e01e6124e59be.zip
LibVideo/VP9: Prefix TransformSize with Transform_ instead of TX_
Diffstat (limited to 'Userland/Libraries/LibVideo/VP9/Context.h')
-rw-r--r--Userland/Libraries/LibVideo/VP9/Context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibVideo/VP9/Context.h b/Userland/Libraries/LibVideo/VP9/Context.h
index 7fe90bfc7c..5967ae3d16 100644
--- a/Userland/Libraries/LibVideo/VP9/Context.h
+++ b/Userland/Libraries/LibVideo/VP9/Context.h
@@ -189,7 +189,7 @@ struct BlockContext {
u8 segment_id { 0 };
bool should_skip_residuals { false };
- TransformSize tx_size { TransformSize::TX_4x4 };
+ TransformSize tx_size { Transform_4x4 };
ReferenceFramePair reference_frame_types;
bool is_inter_predicted() const { return reference_frame_types.primary != ReferenceFrameType::None; }