Home
last modified time | relevance | path

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

/external/libavc/encoder/
Dih264e_encode.c218 out_buf_t s_out_buf; in ih264e_encode() local
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()
247 s_out_buf.u4_is_last = 0; 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()
263 ps_codec->as_out_buf[ctxt_sel] = s_out_buf; in ih264e_encode()
449 ps_video_encode_op->s_ive_op.s_out_buf = ps_codec->as_out_buf[ctxt_sel].s_bits_buf; in ih264e_encode()
477 s_out_buf.u4_is_last = s_inp_buf.u4_is_last; in ih264e_encode()
714 s_out_buf.u4_is_last = 0; in ih264e_encode()
[all …]
Dive2.h386 iv_bits_buf_t s_out_buf; member
424 iv_bits_buf_t s_out_buf; member
557 iv_bits_buf_t s_out_buf; member
606 iv_bits_buf_t s_out_buf; member
Dih264e_process.c306 out_buf_t s_out_buf; in ih264e_entropy() local
361 s_out_buf = ps_codec->as_out_buf[ctxt_sel]; in ih264e_entropy()
364 s_out_buf.u4_is_last = ps_entropy->u4_is_last; in ih264e_entropy()
367 s_out_buf.u4_timestamp_high = ps_entropy->u4_timestamp_high; in ih264e_entropy()
368 s_out_buf.u4_timestamp_low = ps_entropy->u4_timestamp_low; in ih264e_entropy()
373 … ih264e_bitstrm_init(ps_bitstrm, s_out_buf.s_bits_buf.pv_buf, s_out_buf.s_bits_buf.u4_bufsize); in ih264e_entropy()
/external/libavc/fuzzer/
Davc_enc_fuzzer.cpp851 sEncodeIp.s_out_buf.pv_buf = header; in encodeFrames()
852 sEncodeIp.s_out_buf.u4_bytes = 0; in encodeFrames()
853 sEncodeIp.s_out_buf.u4_bufsize = kHeaderLength; in encodeFrames()
863 sEncodeOp.s_out_buf.pv_buf = nullptr; in encodeFrames()
876 sEncodeIp.s_out_buf.pv_buf = outputBuffer; in encodeFrames()
877 sEncodeIp.s_out_buf.u4_bufsize = outputBufferSize; in encodeFrames()
/external/libavc/test/encoder/
Dmain.c2041 ps_video_encode_ip->s_out_buf.pv_buf = pu1_buf; in synchronous_encode()
2042 ps_video_encode_ip->s_out_buf.u4_bytes = 0; in synchronous_encode()
2043 ps_video_encode_ip->s_out_buf.u4_bufsize = buff_size; in synchronous_encode()
2081 ps_video_encode_op->s_out_buf.pv_buf= NULL; in synchronous_encode()
2128 num_bytes = ps_video_encode_op->s_out_buf.u4_bytes; in synchronous_encode()
2129 buff_size = ps_video_encode_op->s_out_buf.u4_bufsize; in synchronous_encode()
2130 pu1_buf = (UWORD8*)ps_video_encode_op->s_out_buf.pv_buf; in synchronous_encode()
2159 if(ps_app_ctxt->as_output_buf[i].pu1_buf == ps_video_encode_op->s_out_buf.pv_buf) in synchronous_encode()