HomeSort by relevance Sort by last modified time
    Searched defs:u4_sig_coeff_map (Results 1 - 4 of 4) 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 550 UWORD32 u4_sig_coeff_map; local
584 u4_sig_coeff_map = 0xFFFFFFFF;
586 ps_tu_sblk_coeff_data->u2_sig_coeff_map = 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 127 milliseconds