mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
LibVideo/VP9: Remove debug output from TreeParser
This commit is contained in:
parent
a86184c997
commit
24f3069129
Notes:
sideshowbarker
2024-07-17 00:37:51 +09:00
Author: https://github.com/Zaggy1024 Commit: https://github.com/SerenityOS/serenity/commit/24f3069129 Pull-request: https://github.com/SerenityOS/serenity/pull/17256 Reviewed-by: https://github.com/ADKaster
1 changed files with 0 additions and 4 deletions
|
@ -84,11 +84,7 @@ ErrorOr<Partition> TreeParser::parse_partition(BitStream& bit_stream, Probabilit
|
|||
auto bsl = mi_width_log2_lookup[block_subsize];
|
||||
auto block_offset = mi_width_log2_lookup[Block_64x64] - bsl;
|
||||
for (auto i = 0; i < num_8x8; i++) {
|
||||
if (column + i >= above_partition_context.size())
|
||||
dbgln("column={}, i={}, size={}", column, i, above_partition_context.size());
|
||||
above |= above_partition_context[column + i];
|
||||
if (row + i >= left_partition_context.size())
|
||||
dbgln("row={}, i={}, size={}", row, i, left_partition_context.size());
|
||||
left |= left_partition_context[row + i];
|
||||
}
|
||||
above = (above & (1 << block_offset)) > 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue