1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 13:10:45 +00:00

LibVideo/VP9: Remove debug output from TreeParser

This commit is contained in:
Zaggy1024 2023-01-29 15:16:47 -06:00 committed by Linus Groh
parent a86184c997
commit 24f3069129

View File

@ -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;