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

  /external/libhevc/decoder/
ihevcd_parse_residual.c 195 WORD32 scan_idx; local
311 scan_idx = SCAN_DIAG_UPRIGHT;
319 scan_idx = SCAN_VERT;
324 scan_idx = SCAN_HORZ;
330 if(SCAN_VERT == scan_idx)
348 *pi1_scan_idx = (scan_idx << 1) | transform_skip_flag;
363 /* If transform is larger than 4x4, then based on scan_idx and transform size, choose a scan table */
369 pu1_scan_blk = (UWORD8 *)gapv_ihevc_scan[scan_idx * 3 + (log2_trafo_size - 2 - 1)];
380 pu1_scan_coeff = &gau1_ihevc_scan4x4[scan_idx][0];
391 pu1_scan_blk = (UWORD8 *)gapv_ihevc_invscan[scan_idx * 3 + (log2_trafo_size - 2 - 1)]
    [all...]
  /external/libaom/libaom/av1/common/
txb_common.h 301 static INLINE int get_lower_levels_ctx_eob(int bwl, int height, int scan_idx) {
302 if (scan_idx == 0) return 0;
303 if (scan_idx <= (height << bwl) / 8) return 1;
304 if (scan_idx <= (height << bwl) / 4) return 2;
332 static INLINE int get_lower_levels_ctx_general(int is_last, int scan_idx,
338 if (scan_idx == 0) return 0;
339 if (scan_idx <= (height << bwl) >> 3) return 1;
340 if (scan_idx <= (height << bwl) >> 2) return 2;
  /external/libhevc/encoder/
ihevce_enc_sbh_funcs.c 138 WORD32 scan_idx = ps_rdoq_sbh_params->i4_scan_idx; local
153 /* Select proper order for your transform unit and csb based on scan_idx*/
157 pu1_csb_table = (UWORD8 *)&(g_u1_scan_table_4x4[scan_idx][0]);
166 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_8x8[scan_idx][0]);
169 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_4x4[scan_idx][0]);
172 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_2x2[scan_idx][0]);
ihevce_enc_loop_utils.h 109 WORD32 scan_idx,
ihevce_cabac_tu.c 2347 WORD32 scan_idx = ps_rdoq_ctxt->i4_scan_idx; local
    [all...]
ihevce_enc_loop_utils.c 859 * \param[in] scan_idx Scan index specifying the scan order
881 WORD32 scan_idx,
911 /* Select proper order for your transform unit and csb based on scan_idx*/
915 pu1_csb_table = (UWORD8 *)&(g_u1_scan_table_4x4[scan_idx][0]);
923 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_8x8[scan_idx][0]);
926 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_4x4[scan_idx][0]);
929 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_2x2[scan_idx][0]);
6451 WORD32 scan_idx; local
7214 WORD32 scan_idx; local
    [all...]
  /external/libhevc/encoder/arm/
ihevce_scan_coeffs_neon.c 119 WORD32 scan_idx,
146 pu1_csb_table = (UWORD8 *)&(g_u1_scan_table_4x4[scan_idx][0]);
155 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_8x8[scan_idx][0]);
158 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_4x4[scan_idx][0]);
161 pu1_trans_table = (UWORD8 *)&(g_u1_scan_table_2x2[scan_idx][0]);
274 *pu1_out_data_header = (UWORD8)scan_idx;
  /external/icu/icu4c/source/test/perf/ustrperf/
stringperf.h 452 volatile int scan_idx; variable
458 scan_idx = uScan_STRING.indexOf(c);
463 scan_idx = uScan_STRING.indexOf(SCAN1,3);
470 scan_idx = uScan_STRING.indexOf(c1);
471 scan_idx = uScan_STRING.indexOf(c2);
542 scan_idx = (int) sScan_STRING.find('.');
547 scan_idx = (int) sScan_STRING.find(L"123");
552 scan_idx = (int) sScan_STRING.find_first_of(L"sm");
  /external/libaom/libaom/av1/encoder/
encodetxb.c 324 static int get_coeff_cost(const tran_low_t qc, const int scan_idx,
333 const int pos = scan[scan_idx];
341 cost += get_sign_bit_cost(qc, scan_idx, txb_costs->dc_sign_cost,
355 const int height, const int scan_idx,
359 if (scan_idx == 0) return 0;
360 if (scan_idx <= (height << bwl) / 8) return 1;
361 if (scan_idx <= (height << bwl) / 4) return 2;
369 static void get_dist_cost_stats(LevelDownStats *const stats, const int scan_idx,
375 const int coeff_idx = scan[scan_idx];
391 scan_idx, is_eob, txb_info->tx_size, tx_class)
    [all...]

Completed in 823 milliseconds