summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Userland/Libraries/LibVideo/VP9/BooleanDecoder.cpp2
-rw-r--r--Userland/Libraries/LibVideo/VP9/BooleanDecoder.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibVideo/VP9/BooleanDecoder.cpp b/Userland/Libraries/LibVideo/VP9/BooleanDecoder.cpp
index 6a3e40d536..2d4fa7e71d 100644
--- a/Userland/Libraries/LibVideo/VP9/BooleanDecoder.cpp
+++ b/Userland/Libraries/LibVideo/VP9/BooleanDecoder.cpp
@@ -12,7 +12,7 @@
namespace Video::VP9 {
/* 9.2.1 */
-ErrorOr<BooleanDecoder> BooleanDecoder::initialize(MaybeOwned<BigEndianInputBitStream> bit_stream, size_t bytes)
+ErrorOr<BooleanDecoder> BooleanDecoder::initialize(MaybeOwned<BigEndianInputBitStream> bit_stream, size_t size_in_bytes)
{
VERIFY(bit_stream->is_aligned_to_byte_boundary());
auto value = TRY(bit_stream->read_value<u8>());
diff --git a/Userland/Libraries/LibVideo/VP9/BooleanDecoder.h b/Userland/Libraries/LibVideo/VP9/BooleanDecoder.h
index 46ebf6db1f..5a72f76d70 100644
--- a/Userland/Libraries/LibVideo/VP9/BooleanDecoder.h
+++ b/Userland/Libraries/LibVideo/VP9/BooleanDecoder.h
@@ -17,7 +17,7 @@ namespace Video::VP9 {
class BooleanDecoder {
public:
/* (9.2) */
- static ErrorOr<BooleanDecoder> initialize(MaybeOwned<BigEndianInputBitStream> bit_stream, size_t bytes);
+ static ErrorOr<BooleanDecoder> initialize(MaybeOwned<BigEndianInputBitStream> bit_stream, size_t size_in_bytes);
ErrorOr<bool> read_bool(u8 probability);
ErrorOr<u8> read_literal(u8 bits);
ErrorOr<void> finish_decode();