• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:BLK

59 #define BLK(data, x, y)  data[av_clip((x) + (y) * 320, 0, 320 * 200 -1)]
94 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) = val;
105 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) = val;
115 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) =
116 BLK(ctx->cur, l0x + (j & 3) - mx, l0y + (j >> 2) - my);
127 BLK(ctx->cur, l1x, l1y) = val;
128 BLK(ctx->cur, l1x + 1, l1y) = val;
129 BLK(ctx->cur, l1x, l1y + 1) = val;
130 BLK(ctx->cur, l1x + 1, l1y + 1) = val;
139 BLK(ctx->cur, l1x, l1y) = BLK(ctx->cur, l1x - mx, l1y - my);
140 BLK(ctx->cur, l1x + 1, l1y) =
141 BLK(ctx->cur, l1x + 1 - mx, l1y - my);
142 BLK(ctx->cur, l1x, l1y + 1) =
143 BLK(ctx->cur, l1x - mx, l1y + 1 - my);
144 BLK(ctx->cur, l1x + 1, l1y + 1) =
145 BLK(ctx->cur, l1x + 1 - mx, l1y + 1 - my);
148 BLK(ctx->cur, l1x, l1y) = bytestream2_get_byte(&ctx->g);
149 BLK(ctx->cur, l1x + 1, l1y) = bytestream2_get_byte(&ctx->g);
150 BLK(ctx->cur, l1x, l1y + 1) = bytestream2_get_byte(&ctx->g);
151 BLK(ctx->cur, l1x + 1, l1y + 1) = bytestream2_get_byte(&ctx->g);
185 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) = val;
188 BLK(ctx->cur, bx + (i & 0x7), by + (i >> 3)) =
189 BLK(ctx->prev, bx + (i & 0x7), by + (i >> 3));
205 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) = val;
215 BLK(ctx->cur, l0x + (j & 3), l0y + (j >> 2)) =
216 BLK(ctx->prev, l0x + (j & 3) + mx, l0y + (j >> 2) + my);
227 BLK(ctx->cur, l1x, l1y) = val;
228 BLK(ctx->cur, l1x + 1, l1y) = val;
229 BLK(ctx->cur, l1x, l1y + 1) = val;
230 BLK(ctx->cur, l1x + 1, l1y + 1) = val;
239 BLK(ctx->cur, l1x, l1y) = BLK(ctx->prev, l1x + mx, l1y + my);
240 BLK(ctx->cur, l1x + 1, l1y) =
241 BLK(ctx->prev, l1x + 1 + mx, l1y + my);
242 BLK(ctx->cur, l1x, l1y + 1) =
243 BLK(ctx->prev, l1x + mx, l1y + 1 + my);
244 BLK(ctx->cur, l1x + 1, l1y + 1) =
245 BLK(ctx->prev, l1x + 1 + mx, l1y + 1 + my);
248 BLK(ctx->cur, l1x, l1y) = bytestream2_get_byte(&ctx->g);
249 BLK(ctx->cur, l1x + 1, l1y) = bytestream2_get_byte(&ctx->g);
250 BLK(ctx->cur, l1x, l1y + 1) = bytestream2_get_byte(&ctx->g);
251 BLK(ctx->cur, l1x + 1, l1y + 1) = bytestream2_get_byte(&ctx->g);