/external/libavc/decoder/ |
ih264d_cabac_init_tables.c | 62 const UWORD32 gau4_ih264d_cabac_table[128][4] = [all...] |
ih264d_transfer_address.h | 31 UWORD32 u4_inc_y[2]; 32 UWORD32 u4_inc_uv[2]; 40 UWORD32 u4_y_inc; 41 UWORD32 u4_uv_inc;
|
ih264d_thread_compute_bs.h | 31 UWORD32 u4_mb_num); 35 UWORD32 deblk_mb_grp, 37 UWORD32 u4_check_mb_map);
|
ih264d_bitstrm.h | 48 /* 396[MAX_FS] * 128 * 1.5 [ChromaFormatParameter] / sizeof(UWORD32) 51 /* 1620[MAX_FS] * 128 * 1.5 [ChromaFormatParameter] / sizeof(UWORD32) 58 UWORD32 u4_ofst; /* Offset in the buffer for the current bit */ 59 UWORD32 *pu4_buffer; /* Bitstream Buffer */ 60 UWORD32 u4_max_ofst; /* Position of the last bit read in the current buffer */ 68 UWORD32 ih264d_get_bits_h264(dec_bit_stream_t *, UWORD32); 71 UWORD32 ih264d_next_bits_h264(dec_bit_stream_t *, UWORD32); 104 UWORD32 *pu4_buf = (pu4_bitstream); [all...] |
ih264d_vui.h | 50 UWORD32 u4_cpb_cnt; 53 UWORD32 u4_bit_rate[32]; 54 UWORD32 u4_cpb_size[32]; 75 UWORD32 u4_num_units_in_tick; 76 UWORD32 u4_time_scale; 86 UWORD32 u4_max_bytes_per_pic_denom; 87 UWORD32 u4_max_bits_per_mb_denom; 88 UWORD32 u4_log2_max_mv_length_horz; 89 UWORD32 u4_log2_max_mv_length_vert; 90 UWORD32 u4_num_reorder_frames [all...] |
ih264d_bitstrm.c | 65 UWORD32 u4_code; 90 UWORD32 ih264d_get_bits_h264(dec_bit_stream_t *ps_bitstrm, UWORD32 u4_num_bits) 92 UWORD32 u4_code = 0; 115 UWORD32 ih264d_next_bits_h264(dec_bit_stream_t *ps_bitstrm, UWORD32 u4_num_bits) 117 UWORD32 u4_word_off = (ps_bitstrm->u4_ofst >> 5); 118 UWORD32 u4_bit_off = ps_bitstrm->u4_ofst & 0x1F; 119 UWORD32 *pu4_bitstream = ps_bitstrm->pu4_buffer; 120 UWORD32 u4_bits = pu4_bitstream[u4_word_off++] << u4_bit_off [all...] |
ih264d_parse_headers.h | 44 UWORD32 u4_length);
|
/external/libavc/encoder/ |
iv2.h | 208 UWORD32 u4_size; 221 UWORD32 u4_size; 225 UWORD32 u4_mem_size; 227 UWORD32 u4_mem_alignment; 235 UWORD32 u4_size; 244 UWORD32 au4_wd[IV_MAX_RAW_COMPONENTS]; 247 UWORD32 au4_ht[IV_MAX_RAW_COMPONENTS]; 250 UWORD32 au4_strd[IV_MAX_RAW_COMPONENTS]; 258 UWORD32 u4_size; 264 UWORD32 u4_bytes [all...] |
ih264e_intra_modes_eval.h | 329 UWORD32 src_strd, 330 UWORD32 dst_strd, 332 UWORD32 *u4_intra_mode, 334 UWORD32 u4_valid_intra_modes); 400 UWORD32 src_strd, 401 UWORD32 dst_strd, 403 UWORD32 *u4_intra_mode, 405 UWORD32 u4_valid_intra_modes, 406 UWORD32 u4_lambda, 407 UWORD32 u4_predictd_mode) [all...] |
irc_rate_control_api.h | 39 UWORD32 u4_avg_bit_rate, 40 UWORD32 *pu4_peak_bit_rate, 41 UWORD32 u4_min_bit_rate, 42 UWORD32 u4_frame_rate, 43 UWORD32 u4_max_delay, 44 UWORD32 u4_intra_frame_interval, 47 UWORD32 u4_max_vbv_buff_size, 52 UWORD32 u4_src_ticks, 53 UWORD32 u4_tgt_ticks); 133 UWORD32 u4_average_bit_rate) [all...] |
ime_typedefs.h | 40 typedef unsigned int UWORD32;
|
irc_datatypes.h | 46 typedef unsigned int UWORD32;
|
/external/libmpeg2/decoder/ |
impeg2d_globals.h | 29 UWORD32 rows; 30 UWORD32 dst_wd; 31 UWORD32 dst_offset_scale;
|
impeg2d_bitstream.h | 49 UWORD32 *pu4_buf_aligned; /* Pointer to the buffer after alignment correction, 52 UWORD32 u4_offset; /* Offset in the buffer for the current bit */ 54 UWORD32 u4_buf; /* Buffer storing the current word */ 56 UWORD32 u4_buf_nxt; /* Buffer storing the next Word */ 58 UWORD32 u4_max_offset; /* Max Bit stream buffer offset in bytes for error checks */ 71 UWORD32 u4_temp; \ 106 UWORD32 u4_temp; \ 141 UWORD32 u4_max_offset); 143 INLINE void impeg2d_bit_stream_flush(void* ctxt, UWORD32 NoOfBits); 145 INLINE UWORD32 impeg2d_bit_stream_nxt(stream_t *stream, WORD32 NoOfBits) [all...] |
impeg2d_bitstream.c | 61 UWORD32 u4_max_offset) 64 UWORD32 *pu4_word_buf; 66 UWORD32 u4_temp1,u4_temp2; 80 u4_temp1 = ((UWORD32)(*pu1_byte_buff++)) << 8; 81 u4_temp1 += ((UWORD32)(*pu1_byte_buff++)) << 16; 82 u4_temp1 += ((UWORD32)(*pu1_byte_buff++)) << 24; 84 pu4_word_buf = (UWORD32 *)pu1_byte_buff; 90 u4_temp1 = ((UWORD32)(*pu1_byte_buff++)) << 16; 91 u4_temp1 += ((UWORD32)(*pu1_byte_buff++)) << 24; 93 pu4_word_buf = (UWORD32 *)pu1_byte_buff [all...] |
/external/libavc/common/ |
ithread.h | 61 UWORD32 ithread_get_handle_size(void); 63 UWORD32 ithread_get_mutex_lock_size(void); 81 void ithread_sleep(UWORD32 u4_time); 83 void ithread_msleep(UWORD32 u4_time_ms); 85 void ithread_usleep(UWORD32 u4_time_us); 87 UWORD32 ithread_get_sem_struct_size(void); 89 WORD32 ithread_sem_init(void *sem,WORD32 pshared,UWORD32 value);
|
ih264_trans_data.c | 166 const UWORD32 gu4_forward_quant_round_factor_4x4[9] =
|
ih264_typedefs.h | 46 typedef unsigned int UWORD32;
|
/external/libhevc/common/ |
ihevc_buf_mgr.h | 48 UWORD32 u4_max_buf_cnt; 53 UWORD32 u4_active_buf_cnt; 57 UWORD32 au4_status[BUF_MGR_MAX_CNT]; 89 UWORD32 mask); 95 UWORD32 mask); 98 UWORD32 ihevc_buf_mgr_get_status( 108 UWORD32 ihevc_buf_mgr_get_num_active_buf(
|
ithread.h | 39 UWORD32 ithread_get_handle_size(void); 41 UWORD32 ithread_get_mutex_lock_size(void); 61 void ithread_sleep(UWORD32 u4_time); 63 void ithread_msleep(UWORD32 u4_time_ms); 65 void ithread_usleep(UWORD32 u4_time_us); 67 UWORD32 ithread_get_sem_struct_size(void); 69 WORD32 ithread_sem_init(void *sem, WORD32 pshared, UWORD32 value);
|
ihevc_structs.h | 67 UWORD32 u4_cpb_delay_offset; 72 UWORD32 u4_dpb_delay_offset; 82 UWORD32 u4_au_cpb_removal_delay_delta_minus1; 88 UWORD32 au4_nal_initial_cpb_removal_delay[MAX_CPB_CNT]; 94 UWORD32 au4_nal_initial_alt_cpb_removal_delay[MAX_CPB_CNT]; 100 UWORD32 au4_nal_initial_cpb_removal_delay_offset[MAX_CPB_CNT]; 106 UWORD32 au4_nal_initial_alt_cpb_removal_delay_offset[MAX_CPB_CNT]; 112 UWORD32 au4_vcl_initial_cpb_removal_delay[MAX_CPB_CNT]; 118 UWORD32 au4_vcl_initial_alt_cpb_removal_delay[MAX_CPB_CNT]; 124 UWORD32 au4_vcl_initial_cpb_removal_delay_offset[MAX_CPB_CNT] [all...] |
/external/libmpeg2/common/ |
impeg2_buf_mgr.h | 50 UWORD32 u4_max_buf_cnt; 55 UWORD32 u4_active_buf_cnt; 59 UWORD32 au4_status[BUF_MGR_MAX_CNT]; 91 UWORD32 mask); 97 UWORD32 mask); 100 UWORD32 impeg2_buf_mgr_get_status( 110 UWORD32 impeg2_buf_mgr_get_num_active_buf(
|
ithread.h | 41 UWORD32 ithread_get_handle_size(void); 43 UWORD32 ithread_get_mutex_lock_size(void); 63 void ithread_sleep(UWORD32 u4_time); 65 void ithread_msleep(UWORD32 u4_time_ms); 67 void ithread_usleep(UWORD32 u4_time_us); 69 UWORD32 ithread_get_sem_struct_size(void); 71 WORD32 ithread_sem_init(void *sem,WORD32 pshared,UWORD32 value);
|
impeg2_format_conv.c | 110 UWORD32 u4_width, 111 UWORD32 u4_height, 112 UWORD32 u4_src_stride_y, 113 UWORD32 u4_src_stride_u, 114 UWORD32 u4_src_stride_v, 115 UWORD32 u4_dst_stride_y, 116 UWORD32 u4_dst_stride_u, 117 UWORD32 u4_dst_stride_v) 190 UWORD32 u4_width, 191 UWORD32 u4_height [all...] |
/external/libhevc/decoder/ |
ihevcd_mv_pred.h | 41 UWORD32 *pu4_top_pu_idx, 42 UWORD32 *pu4_left_pu_idx, 43 UWORD32 *pu4_top_left_pu_idx,
|