• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:BLK

60 #define BLK(data, x, y)  data[av_clip((x) + (y) * 320, 0, 320 * 200 -1)]
95 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) = val;
106 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) = val;
112 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) =
113 BLK(ctx->cur, l0x + (j & 3) - mx, l0y + (j >> 2) - my);
124 BLK(ctx->cur, l1x, l1y) = val;
125 BLK(ctx->cur, l1x + 1, l1y) = val;
126 BLK(ctx->cur, l1x, l1y + 1) = val;
127 BLK(ctx->cur, l1x + 1, l1y + 1) = val;
132 BLK(ctx->cur, l1x, l1y) = BLK(ctx->cur, l1x - mx, l1y - my);
133 BLK(ctx->cur, l1x + 1, l1y) =
134 BLK(ctx->cur, l1x + 1 - mx, l1y - my);
135 BLK(ctx->cur, l1x, l1y + 1) =
136 BLK(ctx->cur, l1x - mx, l1y + 1 - my);
137 BLK(ctx->cur, l1x + 1, l1y + 1) =
138 BLK(ctx->cur, l1x + 1 - mx, l1y + 1 - my);
141 BLK(ctx->cur, l1x, l1y) = bytestream2_get_byte(&ctx->g);
142 BLK(ctx->cur, l1x + 1, l1y) = bytestream2_get_byte(&ctx->g);
143 BLK(ctx->cur, l1x, l1y + 1) = bytestream2_get_byte(&ctx->g);
144 BLK(ctx->cur, l1x + 1, l1y + 1) = bytestream2_get_byte(&ctx->g);
178 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) = val;
181 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) =
182 BLK(ctx->prev, bx + (i & 0x7), by + (i >> 3));
198 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) = val;
204 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) =
205 BLK(ctx->prev, l0x + (j & 3) + mx, l0y + (j >> 2) + my);
216 BLK(ctx->cur, l1x, l1y) = val;
217 BLK(ctx->cur, l1x + 1, l1y) = val;
218 BLK(ctx->cur, l1x, l1y + 1) = val;
219 BLK(ctx->cur, l1x + 1, l1y + 1) = val;
224 BLK(ctx->cur, l1x, l1y) = BLK(ctx->prev, l1x + mx, l1y + my);
225 BLK(ctx->cur, l1x + 1, l1y) =
226 BLK(ctx->prev, l1x + 1 + mx, l1y + my);
227 BLK(ctx->cur, l1x, l1y + 1) =
228 BLK(ctx->prev, l1x + mx, l1y + 1 + my);
229 BLK(ctx->cur, l1x + 1, l1y + 1) =
230 BLK(ctx->prev, l1x + 1 + mx, l1y + 1 + my);
233 BLK(ctx->cur, l1x, l1y) = bytestream2_get_byte(&ctx->g);
234 BLK(ctx->cur, l1x + 1, l1y) = bytestream2_get_byte(&ctx->g);
235 BLK(ctx->cur, l1x, l1y + 1) = bytestream2_get_byte(&ctx->g);
236 BLK(ctx->cur, l1x + 1, l1y + 1) = bytestream2_get_byte(&ctx->g);