Lines Matching defs:dst
349 static void copy_image_block_Y(const int *src, unsigned char *dst, unsigned int bytes_per_line, unsigned int scalebits)
354 unsigned char *d = dst;
361 d = dst + bytes_per_line;
367 d = dst + bytes_per_line*2;
373 d = dst + bytes_per_line*3;
381 unsigned char *d = dst;
385 d = dst + bytes_per_line;
389 d = dst + bytes_per_line*2;
393 d = dst + bytes_per_line*3;
403 static void copy_image_block_CrCb(const int *src, unsigned char *dst, unsigned int bytes_per_line, unsigned int scalebits)
409 unsigned char *d = dst;
420 d = dst + bytes_per_line;
433 unsigned char *d = dst;
440 d = dst + bytes_per_line;
643 * @dst: image output
647 void *dst)
664 pout_planar_y = dst;
665 pout_planar_u = dst + plane_size;
666 pout_planar_v = dst + plane_size + plane_size / 4;