Lines Matching refs:data
738 size = store_huffman_tables(s, pkt->data);
747 init_put_bits(&s->pb, pkt->data + size, pkt->size - size);
753 put_bits(&s->pb, 8, leftv = p->data[2][0]);
754 put_bits(&s->pb, 8, lefty = p->data[0][1]);
755 put_bits(&s->pb, 8, leftu = p->data[1][0]);
756 put_bits(&s->pb, 8, p->data[0][0]);
758 lefty = sub_left_prediction(s, s->temp[0], p->data[0], width , 0);
759 leftu = sub_left_prediction(s, s->temp[1], p->data[1], width2, 0);
760 leftv = sub_left_prediction(s, s->temp[2], p->data[2], width2, 0);
768 lefty = sub_left_prediction(s, s->temp[0], p->data[0] + p->linesize[0], width , lefty);
769 leftu = sub_left_prediction(s, s->temp[1], p->data[1] + p->linesize[1], width2, leftu);
770 leftv = sub_left_prediction(s, s->temp[2], p->data[2] + p->linesize[2], width2, leftv);
776 lefty = sub_left_prediction(s, s->temp[0], p->data[0] + fake_ystride, 4, lefty);
777 leftu = sub_left_prediction(s, s->temp[1], p->data[1] + fake_ustride, 2, leftu);
778 leftv = sub_left_prediction(s, s->temp[2], p->data[2] + fake_vstride, 2, leftv);
782 lefttopy = p->data[0][3];
783 lefttopu = p->data[1][1];
784 lefttopv = p->data[2][1];
785 s->llvidencdsp.sub_median_pred(s->temp[0], p->data[0] + 4, p->data[0] + fake_ystride + 4, width - 4, &lefty, &lefttopy);
786 s->llvidencdsp.sub_median_pred(s->temp[1], p->data[1] + 2, p->data[1] + fake_ustride + 2, width2 - 2, &leftu, &lefttopu);
787 s->llvidencdsp.sub_median_pred(s->temp[2], p->data[2] + 2, p->data[2] + fake_vstride + 2, width2 - 2, &leftv, &lefttopv);
796 ydst = p->data[0] + p->linesize[0] * y;
803 ydst = p->data[0] + p->linesize[0] * y;
804 udst = p->data[1] + p->linesize[1] * cy;
805 vdst = p->data[2] + p->linesize[2] * cy;
819 ydst = p->data[0] + p->linesize[0] * y;
833 ydst = p->data[0] + p->linesize[0] * y;
834 udst = p->data[1] + p->linesize[1] * cy;
835 vdst = p->data[2] + p->linesize[2] * cy;
855 uint8_t *data = p->data[0] + (height - 1) * p->linesize[0];
861 put_bits(&s->pb, 8, lefta = data[A]);
862 put_bits(&s->pb, 8, leftr = data[R]);
863 put_bits(&s->pb, 8, leftg = data[G]);
864 put_bits(&s->pb, 8, leftb = data[B]);
866 sub_left_prediction_bgr32(s, s->temp[0], data + 4, width - 1,
871 uint8_t *dst = data + y*stride;
883 uint8_t *data = p->data[0] + (height - 1) * p->linesize[0];
889 put_bits(&s->pb, 8, leftr = data[0]);
890 put_bits(&s->pb, 8, leftg = data[1]);
891 put_bits(&s->pb, 8, leftb = data[2]);
894 sub_left_prediction_rgb24(s, s->temp[0], data + 3, width - 1,
899 uint8_t *dst = data + y * stride;
925 left = sub_left_prediction(s, s->temp[0], p->data[plane], w , 0);
933 left = sub_left_prediction(s, s->temp[0], p->data[plane] + p->linesize[plane], w , left);
939 lefttop = p->data[plane][0];
942 uint8_t *dst = p->data[plane] + p->linesize[plane] * y;
950 uint8_t *dst = p->data[plane] + p->linesize[plane] * y;
993 s->bdsp.bswap_buf((uint32_t *) pkt->data, (uint32_t *) pkt->data, size);