HomeSort by relevance Sort by last modified time
    Searched refs:u4_sig_coeff_map (Results 1 - 3 of 3) sorted by null

  /external/libhevc/decoder/
ihevcd_parse_residual.c 461 UWORD32 u4_sig_coeff_map; local
547 u4_sig_coeff_map = 0;
556 u4_sig_coeff_map = 1 << last_scan_pos;
611 u4_sig_coeff_map |= significant_coeff_flag << n;
625 u4_sig_coeff_map |= 1;
644 ps_tu_sblk_coeff_data->u2_sig_coeff_map = u4_sig_coeff_map;
665 clz = CLZ(u4_sig_coeff_map);
667 u4_sig_coeff_map_shift = u4_sig_coeff_map << clz;
674 //TODO: Scan lookup will be removed later and instead u4_sig_coeff_map will be used
726 /* 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...]

Completed in 50 milliseconds