Lines Matching defs:last_pic
95 SVQ3Frame *last_pic;
431 const SVQ3Frame *pic = (dir == 0) ? s->last_pic : s->next_pic;
1128 s->last_pic = &s->frames[1];
1132 s->last_pic->f = av_frame_alloc();
1134 if (!s->cur_pic->f || !s->last_pic->f || !s->next_pic->f)
1406 FFSWAP(SVQ3Frame*, s->next_pic, s->last_pic);
1430 if (!s->last_pic->f->data[0]) {
1432 av_frame_unref(s->last_pic->f);
1433 ret = get_buffer(avctx, s->last_pic);
1436 memset(s->last_pic->f->data[0], 0, avctx->height * s->last_pic->f->linesize[0]);
1437 memset(s->last_pic->f->data[1], 0x80, (avctx->height / 2) *
1438 s->last_pic->f->linesize[1]);
1439 memset(s->last_pic->f->data[2], 0x80, (avctx->height / 2) *
1440 s->last_pic->f->linesize[2]);
1538 s->last_pic->f->data[0] ? s->last_pic->f : NULL,
1557 else if (s->last_pic->f->data[0])
1558 ret = av_frame_ref(rframe, s->last_pic->f);
1563 if (s->last_pic->f->data[0] || s->low_delay)