Lines Matching defs:dst
54 static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst,
72 dst[out++] = 0x80;
76 dst[out++] = table[c * 2];
77 dst[out++] = table[(c * 2) + 1];
80 dst += pitch;
94 dst[out] = dst[out - pitch];
101 t = dst[out - pitch] + (table[c * 2] - 128);
103 dst[out] = t;
105 t = dst[out - pitch] + (table[(c * 2) + 1] - 128);
107 dst[out] = t;
111 dst += pitch;
116 static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst,
139 t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
141 dst[out] = t;
143 t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
145 dst[out] = t;
149 dst += pitch;