OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ctb_size_top
(Results
1 - 2
of
2
) sorted by null
/external/libhevc/decoder/
ihevcd_iquant_itrans_recon_ctb.c
498
/*
ctb_size_top
gives number of valid pixels remaining in the current row */
499
WORD32
ctb_size_top
= MIN(ctb_size, cols_remaining);
local
500
WORD32 ctb_size_top_bits = (1 << (
ctb_size_top
/ pu_size_limit)) - 1;
636
WORD32
ctb_size_top
= MIN(ctb_size, cols_remaining);
local
639
/*
ctb_size_top
gives number of valid pixels remaining in the current row */
642
shift += ((ctb_size -
ctb_size_top
) / MIN_TU_SIZE);
644
top_avail_bits = ((1 << (
ctb_size_top
/ MIN_TU_SIZE)) - 1)
[
all
...]
ihevcd_get_mv.c
184
WORD32
ctb_size_top
= MIN(ctb_size, cols_remaining);
local
187
/*
ctb_size_top
gives number of valid pixels remaining in the current row */
190
shift += ((ctb_size -
ctb_size_top
) / MIN_TU_SIZE);
192
top_avail_bits = ((1 << (
ctb_size_top
/ MIN_PU_SIZE)) - 1) << shift;
Completed in 118 milliseconds