Lines Matching defs:vert_pred
78 unsigned int *vert_pred;
422 av_fast_malloc(&s->vert_pred, &s->vert_pred_size, s->avctx->width * sizeof(unsigned int));
423 if (!s->vert_pred)
494 av_fast_malloc(&s->vert_pred, &s->vert_pred_size, s->avctx->width * sizeof(unsigned int));
495 if (!s->vert_pred)
615 *current_pixel_pair = *vert_pred + horiz_pred; \
616 *vert_pred++ = *current_pixel_pair++;
624 unsigned int *vert_pred;
640 memset(s->vert_pred, 0, s->avctx->width * sizeof(unsigned int));
649 vert_pred = s->vert_pred;
718 *vert_pred++ = *current_pixel_pair++;
719 horiz_pred = *current_pixel_pair - *vert_pred;
720 *vert_pred++ = *current_pixel_pair++;
751 unsigned int *vert_pred;
767 memset(s->vert_pred, 0, s->avctx->width * sizeof(unsigned int));
776 vert_pred = s->vert_pred;
844 *vert_pred++ = *current_pixel_pair++;
845 horiz_pred = *current_pixel_pair - *vert_pred;
846 *vert_pred++ = *current_pixel_pair++;
908 av_freep(&s->vert_pred);