Home
last modified time | relevance | path

Searched refs:s_ive_ip (Results 1 – 5 of 5) sorted by relevance

/external/libavc/encoder/
Dih264e.h74 iv_num_mem_rec_ip_t s_ive_ip; member
91 iv_fill_mem_rec_ip_t s_ive_ip; member
107 iv_retrieve_mem_rec_ip_t s_ive_ip; member
123 ive_init_ip_t s_ive_ip; member
138 ive_queue_inp_ip_t s_ive_ip; member
151 ive_dequeue_inp_ip_t s_ive_ip; member
165 ive_queue_out_ip_t s_ive_ip; member
178 ive_dequeue_out_ip_t s_ive_ip; member
192 ive_get_recon_ip_t s_ive_ip; member
206 ive_ctl_flush_ip_t s_ive_ip; member
[all …]
Dih264e_api.c171 iv_raw_buf_t *ps_inp_buf = &ps_ip->s_ive_ip.s_inp_buf; in api_check_input_dimensions()
363 if (ps_ip->s_ive_ip.u4_size != sizeof(ih264e_num_mem_rec_ip_t)) in api_check_struct_sanity()
388 WORD32 max_wd = ALIGN16(ps_ip->s_ive_ip.u4_max_wd); in api_check_struct_sanity()
389 WORD32 max_ht = ALIGN16(ps_ip->s_ive_ip.u4_max_ht); in api_check_struct_sanity()
393 if (ps_ip->s_ive_ip.u4_size != sizeof(ih264e_fill_mem_rec_ip_t)) in api_check_struct_sanity()
424 if (NULL == ps_ip->s_ive_ip.ps_mem_rec) in api_check_struct_sanity()
433 if (ps_ip->s_ive_ip.u4_num_mem_rec != MEM_REC_CNT) in api_check_struct_sanity()
442 ps_mem_rec = ps_ip->s_ive_ip.ps_mem_rec; in api_check_struct_sanity()
463 WORD32 max_wd = ALIGN16(ps_ip->s_ive_ip.u4_max_wd); in api_check_struct_sanity()
464 WORD32 max_ht = ALIGN16(ps_ip->s_ive_ip.u4_max_ht); in api_check_struct_sanity()
[all …]
Dih264e_encode.c233 ps_video_encode_op->s_ive_op.s_inp_buf = ps_video_encode_ip->s_ive_ip.s_inp_buf; in ih264e_encode()
236 if (ps_video_encode_ip->s_ive_ip.s_out_buf.u4_bufsize < MIN_STREAM_SIZE) in ih264e_encode()
246 s_out_buf.s_bits_buf = ps_video_encode_ip->s_ive_ip.s_out_buf; in ih264e_encode()
248 s_out_buf.u4_timestamp_low = ps_video_encode_ip->s_ive_ip.u4_timestamp_low; in ih264e_encode()
249 s_out_buf.u4_timestamp_high = ps_video_encode_ip->s_ive_ip.u4_timestamp_high; in ih264e_encode()
278 if ( ((ps_cfg->u4_timestamp_high == ps_video_encode_ip->s_ive_ip.u4_timestamp_high) && in ih264e_encode()
279 … (ps_cfg->u4_timestamp_low == ps_video_encode_ip->s_ive_ip.u4_timestamp_low)) || in ih264e_encode()
440 ps_video_encode_op->s_ive_op.s_inp_buf = ps_video_encode_ip->s_ive_ip.s_inp_buf; in ih264e_encode()
441 … ps_video_encode_op->s_ive_op.u4_timestamp_low = ps_video_encode_ip->s_ive_ip.u4_timestamp_low; in ih264e_encode()
442 … ps_video_encode_op->s_ive_op.u4_timestamp_high = ps_video_encode_ip->s_ive_ip.u4_timestamp_high; in ih264e_encode()
[all …]
/external/libavc/test/encoder/
Dmain.c1021 s_frame_dimensions_ip.s_ive_ip.e_cmd = IVE_CMD_VIDEO_CTL; in set_dimensions()
1022 s_frame_dimensions_ip.s_ive_ip.e_sub_cmd = IVE_CMD_CTL_SET_DIMENSIONS; in set_dimensions()
1024 s_frame_dimensions_ip.s_ive_ip.u4_ht = ps_app_ctxt->u4_ht; in set_dimensions()
1025 s_frame_dimensions_ip.s_ive_ip.u4_wd = ps_app_ctxt->u4_wd; in set_dimensions()
1027 s_frame_dimensions_ip.s_ive_ip.u4_timestamp_high = u4_timestamp_high; in set_dimensions()
1028 s_frame_dimensions_ip.s_ive_ip.u4_timestamp_low = u4_timestamp_low; in set_dimensions()
1030 s_frame_dimensions_ip.s_ive_ip.u4_size = in set_dimensions()
1056 s_frame_rate_ip.s_ive_ip.e_cmd = IVE_CMD_VIDEO_CTL; in set_frame_rate()
1057 s_frame_rate_ip.s_ive_ip.e_sub_cmd = IVE_CMD_CTL_SET_FRAMERATE; in set_frame_rate()
1059 s_frame_rate_ip.s_ive_ip.u4_src_frame_rate = in set_frame_rate()
[all …]
/external/libavc/fuzzer/
Davc_enc_fuzzer.cpp413 sGetBufInfoIp.s_ive_ip.u4_size = sizeof(ih264e_ctl_getbufinfo_ip_t); in getBufInfo()
416 sGetBufInfoIp.s_ive_ip.e_cmd = IVE_CMD_VIDEO_CTL; in getBufInfo()
417 sGetBufInfoIp.s_ive_ip.e_sub_cmd = IVE_CMD_CTL_GETBUFINFO; in getBufInfo()
418 sGetBufInfoIp.s_ive_ip.u4_max_ht = mHeight; in getBufInfo()
419 sGetBufInfoIp.s_ive_ip.u4_max_wd = mWidth; in getBufInfo()
420 sGetBufInfoIp.s_ive_ip.e_inp_color_fmt = mIvVideoColorFormat; in getBufInfo()