Lines Matching refs:pkt
924 vpx_codec_cx_pkt_t pkt; in encoder_encode() local
949 pkt.kind = VPX_CODEC_CX_FRAME_PKT; in encoder_encode()
950 pkt.data.frame.pts = ticks_to_timebase_units(timebase, dst_time_stamp); in encoder_encode()
951 pkt.data.frame.duration = in encoder_encode()
954 pkt.data.frame.flags = lib_flags << 16; in encoder_encode()
962 pkt.data.frame.flags |= VPX_FRAME_IS_KEY; in encoder_encode()
965 pkt.data.frame.flags |= VPX_FRAME_IS_INVISIBLE; in encoder_encode()
971 pkt.data.frame.pts = in encoder_encode()
973 pkt.data.frame.duration = 0; in encoder_encode()
977 pkt.data.frame.flags |= VPX_FRAME_IS_DROPPABLE; in encoder_encode()
984 pkt.data.frame.buf = ctx->pending_cx_data; in encoder_encode()
985 pkt.data.frame.sz = ctx->pending_cx_data_sz; in encoder_encode()
991 pkt.data.frame.buf = cx_data; in encoder_encode()
992 pkt.data.frame.sz = size; in encoder_encode()
994 pkt.data.frame.partition_id = -1; in encoder_encode()
995 vpx_codec_pkt_list_add(&ctx->pkt_list.head, &pkt); in encoder_encode()
1000 vpx_codec_cx_pkt_t pkt = {0}; in encoder_encode() local
1002 pkt.kind = VPX_CODEC_SPATIAL_SVC_LAYER_SIZES; in encoder_encode()
1004 pkt.data.layer_sizes[i] = cpi->svc.layer_context[i].layer_size; in encoder_encode()
1007 vpx_codec_pkt_list_add(&ctx->pkt_list.head, &pkt); in encoder_encode()