Remove unnecessary assertions
Removed 2 unnecessary assertions. Change-Id: I0f8877d0494bf3ecdb0d7931ccbcaa8289e01d8b
This commit is contained in:
Родитель
1b5e9871f7
Коммит
978642a426
|
@ -242,9 +242,7 @@ typedef struct macroblockd {
|
||||||
|
|
||||||
static INLINE BLOCK_SIZE get_subsize(BLOCK_SIZE bsize,
|
static INLINE BLOCK_SIZE get_subsize(BLOCK_SIZE bsize,
|
||||||
PARTITION_TYPE partition) {
|
PARTITION_TYPE partition) {
|
||||||
const BLOCK_SIZE subsize = subsize_lookup[partition][bsize];
|
return subsize_lookup[partition][bsize];
|
||||||
assert(subsize < BLOCK_SIZES);
|
|
||||||
return subsize;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
extern const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES];
|
extern const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES];
|
||||||
|
@ -288,9 +286,7 @@ static INLINE TX_SIZE get_uv_tx_size(const MB_MODE_INFO *mbmi,
|
||||||
|
|
||||||
static INLINE BLOCK_SIZE get_plane_block_size(BLOCK_SIZE bsize,
|
static INLINE BLOCK_SIZE get_plane_block_size(BLOCK_SIZE bsize,
|
||||||
const struct macroblockd_plane *pd) {
|
const struct macroblockd_plane *pd) {
|
||||||
BLOCK_SIZE bs = ss_size_lookup[bsize][pd->subsampling_x][pd->subsampling_y];
|
return ss_size_lookup[bsize][pd->subsampling_x][pd->subsampling_y];
|
||||||
assert(bs < BLOCK_SIZES);
|
|
||||||
return bs;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef void (*foreach_transformed_block_visitor)(int plane, int block,
|
typedef void (*foreach_transformed_block_visitor)(int plane, int block,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче