OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:num_pu
(Results
1 - 2
of
2
) sorted by null
/external/libhevc/decoder/
ihevcd_utils.c
254
WORD32
num_pu
;
local
259
num_pu
= pic_size / (MIN_PU_SIZE * MIN_PU_SIZE);
269
mv_bank_size +=
num_pu
;
272
mv_bank_size +=
num_pu
* sizeof(pu_t);
615
WORD32
num_pu
;
local
622
num_pu
= pic_size / (MIN_PU_SIZE * MIN_PU_SIZE);
638
pu1_buf +=
num_pu
;
644
pu1_buf +=
num_pu
* sizeof(pu_t);
807
WORD32
num_pu
;
local
816
num_pu
= pic_size / (MIN_PU_SIZE * MIN_PU_SIZE)
[
all
...]
/external/libavc/encoder/
ih264e_utils.c
737
WORD32
num_pu
= num_luma_samples / (ENC_MIN_PU_SIZE * ENC_MIN_PU_SIZE);
local
747
mv_bank_size += ALIGN4(
num_pu
);
750
mv_bank_size += ALIGN4(
num_pu
* sizeof(enc_pu_t));
884
WORD32
num_pu
, num_mb;
local
907
num_pu
= num_luma_samples / (ENC_MIN_PU_SIZE * ENC_MIN_PU_SIZE);
929
pu1_buf += ALIGN4(
num_pu
);
932
pu1_buf += ALIGN4(
num_pu
* sizeof(enc_pu_t));
[
all
...]
Completed in 80 milliseconds