Lines Matching defs:dst
229 void (*put_pixels_tab[4])(uint8_t *dst, const uint8_t *src[5], int stride, int h);
230 void (*avg_pixels_tab[4])(uint8_t *dst, const uint8_t *src[5], int stride, int h);
231 void (*add_obmc)(uint16_t *dst, const uint8_t *src, int stride, const uint8_t *obmc_weight, int yblen);
1238 #define CHECKEDREAD(dst, cond, errmsg) \
1244 dst = tmp;
1486 DiracBlock *dst = block;
1489 dst[x] = *block;
1492 dst += stride;
1494 dst[x] = *block;
1742 static void add_dc(uint16_t *dst, int dc, int stride,
1750 dst[x ] += dc * obmc_weight[x ];
1751 dst[x+1] += dc * obmc_weight[x+1];
1753 dst += stride;