OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sb_type
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/libvpx/vp9/common/
vp9_blockd.h
118
static INLINE int b_width_log2(BLOCK_SIZE
sb_type
) {
119
return b_width_log2_lookup[
sb_type
];
121
static INLINE int b_height_log2(BLOCK_SIZE
sb_type
) {
122
return b_height_log2_lookup[
sb_type
];
125
static INLINE int mi_width_log2(BLOCK_SIZE
sb_type
) {
126
return mi_width_log2_lookup[
sb_type
];
129
static INLINE int mi_height_log2(BLOCK_SIZE
sb_type
) {
130
return mi_height_log2_lookup[
sb_type
];
152
BLOCK_SIZE
sb_type
;
member in struct:__anon23050
275
static INLINE void update_partition_context(MACROBLOCKD *xd, BLOCK_SIZE
sb_type
,
[
all
...]
/external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c
366
assert(mi->mbmi.
sb_type
== bsize);
386
if (is_inter_block(mbmi) && mbmi->
sb_type
< BLOCK_8X8) {
430
&& (mbmi->
sb_type
< BLOCK_8X8 || mbmi->mode == NEWMV)) {
586
xd->this_mi->mbmi.
sb_type
= bsize;
910
mi_8x8[index]->mbmi.
sb_type
= bsize;
923
mi_8x8[index]->mbmi.
sb_type
= bsize;
938
BLOCK_SIZE
sb_type
= prev_mi ? prev_mi->mbmi.
sb_type
: 0;
local
944
mi_8x8[block_row * mis + block_col]->mbmi.
sb_type
=
sb_type
;
1564
BLOCK_SIZE
sb_type
= mi ? mi->mbmi.
sb_type
: 0;
local
[
all
...]
Completed in 242 milliseconds