Lines Matching defs:slot
106 struct rvce_cpb_slot *slot = &enc->cpb_array[i];
107 slot->index = i;
108 slot->picture_type = PIPE_H2645_ENC_PICTURE_TYPE_SKIP;
109 slot->frame_num = 0;
110 slot->pic_order_cnt = 0;
111 list_addtail(&slot->list, &enc->cpb_slots);
203 * Get the slot for the currently encoded frame
211 * Get the slot for L0
219 * Get the slot for L1
229 void rvce_frame_offset(struct rvce_encoder *enc, struct rvce_cpb_slot *slot,
238 *luma_offset = slot->index * fsize;
337 struct rvce_cpb_slot *slot = list_entry(enc->cpb_slots.prev,
345 slot->picture_type = enc->pic.picture_type;
346 slot->frame_num = enc->pic.frame_num;
347 slot->pic_order_cnt = enc->pic.pic_order_cnt;
349 list_del(&slot->list);
350 list_add(&slot->list, &enc->cpb_slots);