vp9/inverse_transform_block_inter: move eob check
1 level up. the function is a no-op for eob == 0 and shouldn't be called Change-Id: Id0a490bcce78c2b2ec6ea24d942191eb9b2bc16e
This commit is contained in:
@@ -189,8 +189,8 @@ static void inverse_transform_block_inter(MACROBLOCKD* xd, int plane,
|
||||
uint8_t *dst, int stride,
|
||||
int eob) {
|
||||
struct macroblockd_plane *const pd = &xd->plane[plane];
|
||||
if (eob > 0) {
|
||||
tran_low_t *const dqcoeff = pd->dqcoeff;
|
||||
assert(eob > 0);
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
|
||||
if (xd->lossless) {
|
||||
@@ -270,7 +270,6 @@ static void inverse_transform_block_inter(MACROBLOCKD* xd, int plane,
|
||||
else
|
||||
memset(dqcoeff, 0, (16 << (tx_size << 1)) * sizeof(dqcoeff[0]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void inverse_transform_block_intra(MACROBLOCKD* xd, int plane,
|
||||
@@ -403,9 +402,11 @@ static int reconstruct_inter_block(MACROBLOCKD *const xd, vpx_reader *r,
|
||||
const int eob = vp9_decode_block_tokens(xd, plane, sc, col, row, tx_size, r,
|
||||
mi->segment_id);
|
||||
|
||||
inverse_transform_block_inter(xd, plane, tx_size,
|
||||
&pd->dst.buf[4 * row * pd->dst.stride + 4 * col],
|
||||
if (eob > 0) {
|
||||
inverse_transform_block_inter(
|
||||
xd, plane, tx_size, &pd->dst.buf[4 * row * pd->dst.stride + 4 * col],
|
||||
pd->dst.stride, eob);
|
||||
}
|
||||
return eob;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user