Searched defs:u4_temp (Results 1 - 13 of 13) sorted by relevance

/external/libhevc/decoder/
H A Dihevcd_bitstream.c111 UWORD32 u4_temp; local
115 u4_temp = *pu4_buf++;
116 u4_cur_word = ITT_BIG_ENDIAN(u4_temp);
117 u4_temp = *pu4_buf++;
118 u4_nxt_word = ITT_BIG_ENDIAN(u4_temp);
/external/libmpeg2/decoder/
H A Dimpeg2d_bitstream.c149 UWORD32 u4_bit,u4_offset,u4_temp; local
170 u4_temp = *(ps_stream->pu4_buf_aligned)++;
171 CONV_LE_TO_BE(ps_stream->u4_buf_nxt,u4_temp)
262 UWORD32 u4_bits,u4_offset,u4_temp; local
275 u4_temp = ps_stream->u4_buf_nxt;
278 u4_temp = (u4_temp >> (BITS_IN_INT - u4_bit_ptr));
280 /* u4_temp consists of bits,if any that had to be read from the next word
283 u4_bits = (u4_bits >> (32 - i4_no_of_bits)) | u4_temp;
337 size_t u4_temp; local
[all...]
/external/libavc/decoder/
H A Dih264d_parse_headers.c201 UWORD32 u4_temp; local
211 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
212 if(u4_temp & MASK_ERR_PIC_SET_ID)
215 *ps_pps = ps_dec->ps_pps[u4_temp];
216 ps_pps->u1_pic_parameter_set_id = (WORD8)u4_temp;
228 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
229 if(u4_temp & MASK_ERR_SEQ_SET_ID)
231 COPYTHECONTEXT("PPS: seq_parameter_set_id",u4_temp);
232 ps_sps = &ps_dec->ps_sps[u4_temp];
247 u4_temp
490 UWORD32 u4_temp; local
[all...]
H A Dih264d_parse_islice.c93 UWORD32 u4_temp; local
109 u4_temp = ps_dec->u1_mb_ngbr_availablity;
110 ui_is_top_mb_available = BOOLEAN(u4_temp & TOP_MB_AVAILABLE_MASK);
111 ui_is_left_mb_available = BOOLEAN(u4_temp & LEFT_MB_AVAILABLE_MASK);
161 UWORD32 u4_word, u4_ldz, u4_temp; local
178 u4_temp = ((1 << u4_ldz) + u4_word - 1);
179 if(u4_temp > 3)
183 ps_cur_mb_info->u1_chroma_pred_mode = u4_temp;
297 u4_temp = ((1 << u4_ldz) + u4_word - 1);
301 if(u4_temp >
822 UWORD32 u4_word, u4_ldz, u4_temp; local
1376 UWORD32 u4_temp; local
[all...]
H A Dih264d_parse_cabac.c1277 UWORD32 u4_temp = ih264d_cabac_parse_8x8block(pi2_coeff_block, local
1282 ui16_csbp |= (u4_temp << 2);
1296 UWORD32 u4_temp = ih264d_cabac_parse_8x8block( local
1299 ui16_csbp |= (u4_temp << 8);
1313 UWORD32 u4_temp = ih264d_cabac_parse_8x8block( local
1316 ui16_csbp |= (u4_temp << 10);
1580 UWORD32 u4_temp; local
1593 u4_temp = ih264d_cabac_parse_8x8block(pi2_coeff_block, 2,
1597 u2_chroma_csbp |= (u4_temp << 4);
H A Dih264d_parse_slice.c97 UWORD32 u4_temp; local
115 /* u4_temp = (pui32_weight_offset_l0[0] | (pui32_weight_offset_l1[0] << 16));
116 pu4_mat_iwt_ofst[0] = u4_temp;
117 u4_temp = (pui32_weight_offset_l0[1] | (pui32_weight_offset_l1[1] << 16));
118 pu4_mat_iwt_ofst[1] = u4_temp;
119 u4_temp = (pui32_weight_offset_l0[2] | (pui32_weight_offset_l1[2] << 16));
120 pu4_mat_iwt_ofst[2] = u4_temp;
138 u4_temp = (UWORD32)pui32_weight_offset_l0[0];
139 pu4_mat_iwt_ofst[0] = u4_temp;
140 u4_temp
1021 UWORD32 u4_temp; local
[all...]
H A Dih264d_parse_bslice.c1358 UWORD32 u4_temp, ui_temp1; local
1384 u4_temp = ps_dec->ps_cur_pps->u1_num_ref_idx_lx_active[0];
1388 u4_temp = 1 + ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
1390 u4_temp - 1);
1402 if((u4_temp > u1_max_ref_idx) || (ui_temp1 > u1_max_ref_idx)
1403 || (u4_temp < 1) || (ui_temp1 < 1))
1407 ps_slice->u1_num_ref_idx_lx_active[0] = u4_temp;
1594 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
1595 if(u4_temp > MAX_CABAC_INIT_IDC)
1599 ps_slice->u1_cabac_init_idc = u4_temp;
[all...]
H A Dih264d_parse_cavlc.c2504 UWORD32 u4_temp; local
2508 ps_cur_mb_info->u1_mb_field_decodingflag, &u4_temp);
2511 ui16_csbp = u4_temp;
2533 UWORD32 u4_temp = (u4_nbr_avl | 0x1); local
2534 ret = pf_cavlc_parse_8x8block[u4_temp](
2538 ps_cur_mb_info->u1_mb_field_decodingflag, &u4_temp);
2541 ui16_csbp |= (u4_temp << 2);
2563 UWORD32 u4_temp = (u4_nbr_avl | 0x2); local
2564 ret = pf_cavlc_parse_8x8block[u4_temp](
2567 ps_cur_mb_info->u1_mb_field_decodingflag, &u4_temp);
2592 UWORD32 u4_temp; local
2678 UWORD32 u4_temp; local
[all...]
H A Dih264d_parse_pslice.c1287 UWORD32 u4_word, u4_ldz, u4_temp; local
1304 u4_temp = ((1 << u4_ldz) + u4_word - 1);
1306 if(u4_temp > (UWORD32)(25 + u1_mb_threshold))
1308 u1_mb_type = u4_temp;
1925 UWORD32 u4_temp; local
1953 u4_temp = ps_dec->ps_cur_pps->u1_num_ref_idx_lx_active[0];
1956 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf) + 1;
1964 if(u4_temp > u1_max_ref_idx || u4_temp < 1)
1968 ps_cur_slice->u1_num_ref_idx_lx_active[0] = u4_temp;
[all...]
H A Dih264d_process_intra_mb.c118 UWORD32 u4_temp; local
121 GETBIT(u4_temp, ps_bitstrm->u4_ofst, ps_bitstrm->pu4_buffer);
122 *pu1_prev_intra4x4_pred_mode_flag = (UWORD8)u4_temp;
125 GETBITS(u4_temp, ps_bitstrm->u4_ofst, ps_bitstrm->pu4_buffer, 3);
127 *(pu1_rem_intra4x4_pred_mode) = (UWORD8)u4_temp;
142 UWORD32 u4_temp; local
143 GETBIT(u4_temp, ps_bitstrm->u4_ofst, ps_bitstrm->pu4_buffer);
144 *pu1_prev_intra4x4_pred_mode_flag = (UWORD8)u4_temp;
147 GETBITS(u4_temp, ps_bitstrm->u4_ofst, ps_bitstrm->pu4_buffer, 3);
149 (*pu1_rem_intra4x4_pred_mode) = (UWORD8)u4_temp;
420 UWORD32 u4_temp = 0; local
[all...]
H A Dih264d_process_pslice.c828 UWORD32 u4_temp; local
831 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
832 if(u4_temp & MASK_LOG2_WEIGHT_DENOM)
836 uc_luma_log2_weight_denom = u4_temp;
840 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
841 if(u4_temp & MASK_LOG2_WEIGHT_DENOM)
845 uc_chroma_log2_weight_denom = u4_temp;
H A Dih264d_compute_bs.c141 UWORD32 u4_reordered_vert_bs2_dec, u4_temp; local
157 u4_temp = pu2_4x4_v2h_reorder[(u4_vert_bs2_dec >> 4) & 0xF];
158 u4_reordered_vert_bs2_dec |= (u4_temp << 1);
159 u4_temp = pu2_4x4_v2h_reorder[(u4_vert_bs2_dec >> 8) & 0xF];
160 u4_reordered_vert_bs2_dec |= (u4_temp << 2);
161 u4_temp = pu2_4x4_v2h_reorder[(u4_vert_bs2_dec >> 12) & 0xF];
162 u4_reordered_vert_bs2_dec |= (u4_temp << 3);
/external/libavc/encoder/
H A Dih264e_deblk.c187 UWORD32 u4_reordered_vert_bs_enc, u4_temp; local
227 u4_temp = ih264e_gu2_4x4_v2h_reorder[(u4_vert_bs_enc >> 4) & 0xF];
228 u4_reordered_vert_bs_enc |= (u4_temp << 1);
230 u4_temp = ih264e_gu2_4x4_v2h_reorder[(u4_vert_bs_enc >> 8) & 0xF];
231 u4_reordered_vert_bs_enc |= (u4_temp << 2);
233 u4_temp = ih264e_gu2_4x4_v2h_reorder[(u4_vert_bs_enc >> 12) & 0xF];
234 u4_reordered_vert_bs_enc |= (u4_temp << 3);

Completed in 880 milliseconds