mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 20:42:21 +00:00
LibVideo: Remove unused BooleanDecoder::bits_remaining()
This commit is contained in:
parent
a0a860fa07
commit
35883c337f
Notes:
sideshowbarker
2024-07-17 05:06:13 +09:00
Author: https://github.com/nico
Commit: 35883c337f
Pull-request: https://github.com/SerenityOS/serenity/pull/19013
Reviewed-by: https://github.com/Zaggy1024 ✅
2 changed files with 0 additions and 6 deletions
|
@ -62,11 +62,6 @@ ErrorOr<u8> BooleanDecoder::read_literal(u8 bits)
|
|||
return return_value;
|
||||
}
|
||||
|
||||
size_t BooleanDecoder::bits_remaining() const
|
||||
{
|
||||
return m_bits_left;
|
||||
}
|
||||
|
||||
/* 9.2.3 */
|
||||
ErrorOr<void> BooleanDecoder::finish_decode()
|
||||
{
|
||||
|
|
|
@ -20,7 +20,6 @@ public:
|
|||
static ErrorOr<BooleanDecoder> initialize(MaybeOwned<BigEndianInputBitStream> bit_stream, size_t bytes);
|
||||
ErrorOr<bool> read_bool(u8 probability);
|
||||
ErrorOr<u8> read_literal(u8 bits);
|
||||
size_t bits_remaining() const;
|
||||
ErrorOr<void> finish_decode();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue