1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:57:35 +00:00

LibVideo/VP9: Remove now-unused clear_context function from Parser

This commit is contained in:
Zaggy1024 2022-11-28 06:51:35 -06:00 committed by Andreas Kling
parent 71aac25635
commit e6b696fe24
2 changed files with 0 additions and 22 deletions

View file

@ -49,12 +49,6 @@ private:
DecoderErrorOr<FrameType> read_frame_type();
DecoderErrorOr<ColorRange> read_color_range();
/* Utilities */
template<typename T>
void clear_context(Vector<T>& context, size_t size);
template<typename T>
void clear_context(Vector<Vector<T>>& context, size_t outer_size, size_t inner_size);
/* (6.1) Frame Syntax */
bool trailing_bits();
DecoderErrorOr<void> refresh_probs(FrameContext const&);