OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:state_mps
(Results
1 - 2
of
2
) sorted by null
/external/libhevc/decoder/
ihevcd_cabac.c
231
WORD32
state_mps
= *pu1_ctxt_model;
local
240
ASSERT(
state_mps
< 128);
250
u4_rlps = gau1_ihevc_cabac_rlps[
state_mps
>> 1][u4_qnt_range];
256
u4_bin =
state_mps
& 1;
265
*pu1_ctxt_model = gau1_ihevc_next_state[(
state_mps
<< 1) | u4_bin];
/external/libavc/encoder/
ih264e_cabac.c
479
UWORD8
state_mps
= (*pu1_bin_ctxts) & 0x3F;
local
488
u4_table_val= gau4_ih264_cabac_table[
state_mps
][(u4_range >> 6) & 0x3];
498
if (
state_mps
== 0)
504
state_mps
= (u4_table_val >> 15) & 0x3F;
508
state_mps
= (u4_table_val >> 8) & 0x3F;
511
(*pu1_bin_ctxts) = (u1_mps << 6) |
state_mps
;
Completed in 42 milliseconds