OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:u4_sig_coeff_map
(Results
1 - 6
of
6
) sorted by null
/external/libhevc/decoder/
ihevcd_parse_residual.c
462
UWORD32
u4_sig_coeff_map
;
local
548
u4_sig_coeff_map
= 0;
557
u4_sig_coeff_map
= 1 << last_scan_pos;
612
u4_sig_coeff_map
|= significant_coeff_flag << n;
626
u4_sig_coeff_map
|= 1;
645
ps_tu_sblk_coeff_data->u2_sig_coeff_map =
u4_sig_coeff_map
;
666
clz = CLZ(
u4_sig_coeff_map
);
668
u4_sig_coeff_map_shift =
u4_sig_coeff_map
<< clz;
675
//TODO: Scan lookup will be removed later and instead
u4_sig_coeff_map
will be used
727
/* At this level
u4_sig_coeff_map
is non-zero i.e. has atleast one non-zero coeff *
[
all
...]
ihevcd_iquant_itrans_recon_ctb.c
253
UWORD32
u4_sig_coeff_map
;
local
268
u4_sig_coeff_map
= ps_tu_sblk_coeff_data->u2_sig_coeff_map;
269
//for(sblk_scan_idx = (31 - CLZ(
u4_sig_coeff_map
)); sblk_scan_idx >= 0; sblk_scan_idx--)
273
WORD32 clz = CLZ(
u4_sig_coeff_map
);
276
/* when clz is 31,
u4_sig_coeff_map
<< (clz+1) might result in unknown behaviour in some cases */
278
u4_sig_coeff_map
=
u4_sig_coeff_map
<< clz;
325
u4_sig_coeff_map
<<= 1;
327
}while(
u4_sig_coeff_map
);
[
all
...]
ihevcd_parse_slice.c
537
UWORD32
u4_sig_coeff_map
;
local
571
u4_sig_coeff_map
= 0xFFFFFFFF;
573
ps_tu_sblk_coeff_data->u2_sig_coeff_map =
u4_sig_coeff_map
;
[
all
...]
/external/libavc/encoder/
ih264e_defs.h
41
#define PARSE_COEFF_DATA_BLOCK_4x4(pv_mb_coeff_data, ps_mb_coeff_data, u4_nnz,
u4_sig_coeff_map
, pi2_res_block) \
47
u4_sig_coeff_map
= ps_mb_coeff_data->i4_sig_map_nnz >> 16; \
ih264e_cavlc.c
111
* @param[in]
u4_sig_coeff_map
127
UWORD32
u4_sig_coeff_map
)
152
i4_val = (
u4_sig_coeff_map
& 0x1);
153
u4_sig_coeff_map
>>= 1;
168
i4_val = (
u4_sig_coeff_map
& 0x1);
169
u4_sig_coeff_map
>>= 1;
229
* @param[in]
u4_sig_coeff_map
246
UWORD32
u4_sig_coeff_map
)
319
u4_sig_coeff_map
);
[
all
...]
/external/libavc/decoder/
ih264d_process_intra_mb.c
649
UWORD32
u4_sig_coeff_map
;
local
657
u4_sig_coeff_map
= ps_tu_8x8->au4_sig_coeff_map[1];
659
while(
u4_sig_coeff_map
)
661
idx = CLZ(
u4_sig_coeff_map
);
664
RESET_BIT(
u4_sig_coeff_map
,idx);
671
u4_sig_coeff_map
= ps_tu_8x8->au4_sig_coeff_map[0];
672
while(
u4_sig_coeff_map
)
674
idx = CLZ(
u4_sig_coeff_map
);
677
RESET_BIT(
u4_sig_coeff_map
,idx);
[
all
...]
Completed in 103 milliseconds