• 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:cy

1067 static int opcode_0xf7(SANMVideoContext *ctx, int cx, int cy, int block_size, int pitch)
1069 uint16_t *dst = ctx->frm0 + cx + cy * ctx->pitch;
1101 static int opcode_0xf8(SANMVideoContext *ctx, int cx, int cy, int block_size, int pitch)
1103 uint16_t *dst = ctx->frm0 + cx + cy * ctx->pitch;
1129 static int good_mvec(SANMVideoContext *ctx, int cx, int cy, int mx, int my,
1132 int start_pos = cx + mx + (cy + my) * ctx->pitch;
1140 cx + mx, cy + my, cx, cy, block_size);
1145 static int codec2subblock(SANMVideoContext *ctx, int cx, int cy, int blk_size)
1160 if (good_mvec(ctx, cx, cy, mx, my, blk_size)) {
1161 copy_block(ctx->frm0 + cx + ctx->pitch * cy,
1162 ctx->frm2 + cx + mx + ctx->pitch * (cy + my),
1174 if (good_mvec(ctx, cx, cy, mx, my, blk_size)) {
1175 copy_block(ctx->frm0 + cx + ctx->pitch * cy,
1176 ctx->frm2 + cx + mx + ctx->pitch * (cy + my),
1181 copy_block(ctx->frm0 + cx + ctx->pitch * cy,
1182 ctx->frm1 + cx + ctx->pitch * cy,
1186 opcode_0xf7(ctx, cx, cy, blk_size, ctx->pitch);
1190 opcode_0xf8(ctx, cx, cy, blk_size, ctx->pitch);
1196 fill_block(ctx->frm0 + cx + cy * ctx->pitch,
1202 fill_block(ctx->frm0 + cx + cy * ctx->pitch,
1208 fill_block(ctx->frm0 + cx + cy * ctx->pitch,
1213 opcode_0xf8(ctx, cx, cy, blk_size, ctx->pitch);
1216 if (codec2subblock(ctx, cx, cy, blk_size))
1218 if (codec2subblock(ctx, cx + blk_size, cy, blk_size))
1220 if (codec2subblock(ctx, cx, cy + blk_size, blk_size))
1222 if (codec2subblock(ctx, cx + blk_size, cy + blk_size, blk_size))
1232 int cx, cy, ret;
1234 for (cy = 0; cy < ctx->aligned_height; cy += 8)
1236 if (ret = codec2subblock(ctx, cx, cy, 8))