Lines Matching refs:stream
37 RK_U8 *stream; member
57 RK_U8 *stream; in h263d_init() local
65 stream = mpp_malloc_size(RK_U8, stream_size); in h263d_init()
66 if (NULL == stream) { in h263d_init()
71 ret = mpp_packet_init(&task_pkt, stream, stream_size); in h263d_init()
79 mpp_packet_set_pos(task_pkt, stream); in h263d_init()
92 p->stream = stream; in h263d_init()
102 if (stream) { in h263d_init()
103 mpp_free(stream); in h263d_init()
104 stream = NULL; in h263d_init()
127 if (p->stream) { in h263d_deinit()
128 mpp_free(p->stream); in h263d_deinit()
129 p->stream = NULL; in h263d_deinit()
194 if (NULL == p->stream) { in h263d_prepare()
211 mpp_free(p->stream); in h263d_prepare()
212 p->stream = mpp_malloc_size(RK_U8, p->stream_size); in h263d_prepare()
213 mpp_assert(p->stream); in h263d_prepare()
214 mpp_packet_set_data(p->task_pkt, p->stream); in h263d_prepare()
218 memcpy(p->stream, pos, length); in h263d_prepare()
219 mpp_packet_set_pos(p->task_pkt, p->stream); in h263d_prepare()
252 memcpy(dst, p->stream, remain_length); in h263d_prepare()
253 mpp_free(p->stream); in h263d_prepare()
254 p->stream = dst; in h263d_prepare()
255 mpp_packet_set_data(p->task_pkt, p->stream); in h263d_prepare()