Lines Matching defs:BLK
61 #define BLK(data, x, y) data[av_clip((x) + (y) * 320, 0, 320 * 200 -1)]
96 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) = val;
107 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) = val;
117 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) =
118 BLK(ctx->cur, l0x + (j & 3) - mx, l0y + (j >> 2) - my);
129 BLK(ctx->cur, l1x, l1y) = val;
130 BLK(ctx->cur, l1x + 1, l1y) = val;
131 BLK(ctx->cur, l1x, l1y + 1) = val;
132 BLK(ctx->cur, l1x + 1, l1y + 1) = val;
141 BLK(ctx->cur, l1x, l1y) = BLK(ctx->cur, l1x - mx, l1y - my);
142 BLK(ctx->cur, l1x + 1, l1y) =
143 BLK(ctx->cur, l1x + 1 - mx, l1y - my);
144 BLK(ctx->cur, l1x, l1y + 1) =
145 BLK(ctx->cur, l1x - mx, l1y + 1 - my);
146 BLK(ctx->cur, l1x + 1, l1y + 1) =
147 BLK(ctx->cur, l1x + 1 - mx, l1y + 1 - my);
150 BLK(ctx->cur, l1x, l1y) = bytestream2_get_byte(&ctx->g);
151 BLK(ctx->cur, l1x + 1, l1y) = bytestream2_get_byte(&ctx->g);
152 BLK(ctx->cur, l1x, l1y + 1) = bytestream2_get_byte(&ctx->g);
153 BLK(ctx->cur, l1x + 1, l1y + 1) = bytestream2_get_byte(&ctx->g);
187 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) = val;
190 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) =
191 BLK(ctx->prev, bx + (i & 0x7), by + (i >> 3));
207 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) = val;
217 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) =
218 BLK(ctx->prev, l0x + (j & 3) + mx, l0y + (j >> 2) + my);
229 BLK(ctx->cur, l1x, l1y) = val;
230 BLK(ctx->cur, l1x + 1, l1y) = val;
231 BLK(ctx->cur, l1x, l1y + 1) = val;
232 BLK(ctx->cur, l1x + 1, l1y + 1) = val;
241 BLK(ctx->cur, l1x, l1y) = BLK(ctx->prev, l1x + mx, l1y + my);
242 BLK(ctx->cur, l1x + 1, l1y) =
243 BLK(ctx->prev, l1x + 1 + mx, l1y + my);
244 BLK(ctx->cur, l1x, l1y + 1) =
245 BLK(ctx->prev, l1x + mx, l1y + 1 + my);
246 BLK(ctx->cur, l1x + 1, l1y + 1) =
247 BLK(ctx->prev, l1x + 1 + mx, l1y + 1 + my);
250 BLK(ctx->cur, l1x, l1y) = bytestream2_get_byte(&ctx->g);
251 BLK(ctx->cur, l1x + 1, l1y) = bytestream2_get_byte(&ctx->g);
252 BLK(ctx->cur, l1x, l1y + 1) = bytestream2_get_byte(&ctx->g);
253 BLK(ctx->cur, l1x + 1, l1y + 1) = bytestream2_get_byte(&ctx->g);