Commit dd97c62a authored by Jingning Han's avatar Jingning Han Committed by Gerrit Code Review
Browse files

Merge "Skip inter-coded block reconstruction in rd loop"

Showing with 3 additions and 0 deletions
...@@ -531,6 +531,9 @@ static void encode_block(int plane, int block, BLOCK_SIZE_TYPE bsize, ...@@ -531,6 +531,9 @@ static void encode_block(int plane, int block, BLOCK_SIZE_TYPE bsize,
if (x->optimize) if (x->optimize)
vp9_optimize_b(plane, block, bsize, ss_txfrm_size, args->cm, x, args->ctx); vp9_optimize_b(plane, block, bsize, ss_txfrm_size, args->cm, x, args->ctx);
if (x->skip_encode)
return;
switch (ss_txfrm_size / 2) { switch (ss_txfrm_size / 2) {
case TX_32X32: case TX_32X32:
vp9_short_idct32x32_add(dqcoeff, dst, pd->dst.stride); vp9_short_idct32x32_add(dqcoeff, dst, pd->dst.stride);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment