Lines Matching defs:dst
113 static void fic_idct_put(uint8_t *dst, int stride, int16_t *block)
134 dst[i] = av_clip_uint8(ptr[i]);
135 dst += stride;
140 uint8_t *dst, int stride, int16_t *block, int *is_p)
167 fic_idct_put(dst, stride, block);
189 uint8_t* dst = ctx->frame->data[p] + (y_off >> !!p) * stride;
195 if ((ret = fic_decode_block(ctx, &gb, dst + x, stride,
200 dst += 8 * stride;
207 static av_always_inline void fic_alpha_blend(uint8_t *dst, uint8_t *src,
213 dst[i] += ((src[i] - dst[i]) * alpha[i]) >> 8;