Lines Matching defs:slot
94 struct rvce_cpb_slot *slot = &enc->cpb_array[i];
95 slot->index = i;
96 slot->picture_type = PIPE_H2645_ENC_PICTURE_TYPE_SKIP;
97 slot->frame_num = 0;
98 slot->pic_order_cnt = 0;
99 list_addtail(&slot->list, &enc->cpb_slots);
190 * Get the slot for the currently encoded frame
198 * Get the slot for L0
206 * Get the slot for L1
216 void si_vce_frame_offset(struct rvce_encoder *enc, struct rvce_cpb_slot *slot, signed *luma_offset,
231 *luma_offset = slot->index * fsize;
329 struct rvce_cpb_slot *slot = list_entry(enc->cpb_slots.prev, struct rvce_cpb_slot, list);
335 slot->picture_type = enc->pic.picture_type;
336 slot->frame_num = enc->pic.frame_num;
337 slot->pic_order_cnt = enc->pic.pic_order_cnt;
339 list_del(&slot->list);
340 list_add(&slot->list, &enc->cpb_slots);