Searched refs:hdr_pkt (Results 1 – 4 of 4) sorted by relevance
| /OK3568_Linux_fs/external/mpp/mpp/codec/enc/h264/ |
| H A D | h264e_api_v2.c | 68 MppPacket hdr_pkt; member 205 mpp_packet_init(&p->hdr_pkt, p->hdr_buf, p->hdr_size); in h264e_init() 206 mpp_assert(p->hdr_pkt); in h264e_init() 232 if (p->hdr_pkt) in h264e_deinit() 233 mpp_packet_deinit(&p->hdr_pkt); in h264e_deinit() 655 mpp_packet_reset(p->hdr_pkt); in h264e_gen_hdr() 657 h264e_sps_to_packet(&p->sps, p->hdr_pkt, &p->sps_offset, &p->sps_len, p->cfg); in h264e_gen_hdr() 658 h264e_pps_to_packet(&p->pps, p->hdr_pkt, &p->pps_offset, &p->pps_len); in h264e_gen_hdr() 659 p->hdr_len = mpp_packet_get_length(p->hdr_pkt); in h264e_gen_hdr()
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/ |
| H A D | mpp_enc_v2.cpp | 125 mpp_packet_init(&p->hdr_pkt, p->hdr_buf, size); in mpp_enc_init_v2() 126 mpp_packet_set_length(p->hdr_pkt, 0); in mpp_enc_init_v2() 178 if (enc->hdr_pkt) in mpp_enc_deinit_v2() 179 mpp_packet_deinit(&enc->hdr_pkt); in mpp_enc_deinit_v2()
|
| H A D | mpp_enc_impl.cpp | 962 enc_impl_gen_hdr(enc->impl, enc->hdr_pkt); in mpp_enc_proc_cfg() 963 enc->hdr_len = mpp_packet_get_length(enc->hdr_pkt); in mpp_enc_proc_cfg() 971 *(MppPacket *)param = enc->hdr_pkt; in mpp_enc_proc_cfg() 973 mpp_packet_copy((MppPacket)param, enc->hdr_pkt); in mpp_enc_proc_cfg() 976 if (enc->hdr_pkt) { in mpp_enc_proc_cfg() 979 mpp_ops_enc_get_pkt(mpp->mDump, enc->hdr_pkt); in mpp_enc_proc_cfg() 1518 mpp_packet_append(packet, enc->hdr_pkt); in mpp_enc_add_sw_header() 1940 enc_impl_gen_hdr(enc->impl, enc->hdr_pkt); in try_get_enc_task() 1941 enc->hdr_len = mpp_packet_get_length(enc->hdr_pkt); in try_get_enc_task() 1947 mpp_packet_append(enc->packet, enc->hdr_pkt); in try_get_enc_task() [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/inc/ |
| H A D | mpp_enc_impl.h | 118 MppPacket hdr_pkt; member
|