Lines Matching refs:video

57     unsigned  is_interlaced;///< video is interlaced
58 unsigned is_brush; ///< video is in ANBR format
67 uint8_t *video[2];
393 av_freep(&s->video[0]);
394 av_freep(&s->video[1]);
445 s->video[0] = av_calloc(FFALIGN(avctx->width, 2) * avctx->height, s->bpp);
446 s->video[1] = av_calloc(FFALIGN(avctx->width, 2) * avctx->height, s->bpp);
448 if (!s->video[0] || !s->video[1] || !s->pal)
1610 memcpy(s->video[0], buf, FFMIN(buf_end - buf, s->video_size));
1665 uint8_t *video = s->video[0];
1673 memcpy(video, s->planebuf, s->planesize);
1674 video += s->planesize;
1690 uint8_t *video = s->video[0];
1697 memcpy(video, s->planebuf, s->planesize);
1698 video += s->planesize;
1795 decode_short_horizontal_delta(s->video[0], buf, buf_end, avctx->width, s->bpp, s->video_size);
1799 decode_byte_vertical_delta(s->video[0], buf, buf_end, avctx->width, s->is_brush, s->bpp, s->video_size);
1804 decode_short_vertical_delta(s->video[0], buf, buf_end, avctx->width, s->bpp, s->video_size);
1806 decode_long_vertical_delta(s->video[0], buf, buf_end, avctx->width, s->bpp, s->video_size);
1811 decode_short_vertical_delta2(s->video[0], buf, buf_end, avctx->width, s->bpp, s->video_size);
1813 decode_long_vertical_delta2(s->video[0], buf, buf_end, avctx->width, s->bpp, s->video_size);
1817 decode_delta_j(s->video[0], buf, buf_end, avctx->width, avctx->height, s->bpp, s->video_size);
1823 decode_delta_d(s->video[0], buf, buf_end, avctx->width, s->is_interlaced, s->bpp, s->video_size);
1829 decode_delta_e(s->video[0], buf, buf_end, avctx->width, s->is_interlaced, s->bpp, s->video_size);
1833 decode_delta_l(s->video[0], buf, buf_end, avctx->width, s->is_short, s->bpp, s->video_size);
1840 memcpy(s->video[1], s->video[0], s->video_size);
1845 buf = s->video[0];
1859 buf = s->video[0];
1892 FFSWAP(uint8_t *, s->video[0], s->video[1]);