Merge "vp9_decodframe.c: use vpx_memset instead of cast"
This commit is contained in:
commit
2a67a34f4a
@ -282,7 +282,7 @@ static void decode_block(int plane, int block, BLOCK_SIZE plane_bsize,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (eob == 1) {
|
if (eob == 1) {
|
||||||
*((int32_t *)qcoeff) = 0;
|
vpx_memset(qcoeff, 0, 2 * sizeof(qcoeff[0]));
|
||||||
} else {
|
} else {
|
||||||
if (tx_type == DCT_DCT && tx_size <= TX_16X16 && eob <= 10)
|
if (tx_type == DCT_DCT && tx_size <= TX_16X16 && eob <= 10)
|
||||||
vpx_memset(qcoeff, 0, 4 * (4 << tx_size) * sizeof(qcoeff[0]));
|
vpx_memset(qcoeff, 0, 4 * (4 << tx_size) * sizeof(qcoeff[0]));
|
||||||
|
Loading…
Reference in New Issue
Block a user