Lines Matching refs:slot
60 FileBufSlot *slot = NULL; in dec_loop() local
65 ret = reader_read(cmd->reader, &slot); in dec_loop()
68 mpp_assert(slot); in dec_loop()
70 pkt_eos = slot->eos; in dec_loop()
83 if (!slot->buf) { in dec_loop()
85 mpp_packet_set_data(packet, slot->data); in dec_loop()
86 mpp_packet_set_size(packet, slot->size); in dec_loop()
87 mpp_packet_set_pos(packet, slot->data); in dec_loop()
88 mpp_packet_set_length(packet, slot->size); in dec_loop()
91 void *buf = mpp_buffer_get_ptr(slot->buf); in dec_loop()
92 size_t size = mpp_buffer_get_size(slot->buf); in dec_loop()
98 mpp_packet_set_buffer(packet, slot->buf); in dec_loop()