1*f7018c21STomi Valkeinen /* 2*f7018c21STomi Valkeinen * Fast C2P (Chunky-to-Planar) Conversion 3*f7018c21STomi Valkeinen * 4*f7018c21STomi Valkeinen * Copyright (C) 2003-2008 Geert Uytterhoeven 5*f7018c21STomi Valkeinen * 6*f7018c21STomi Valkeinen * This file is subject to the terms and conditions of the GNU General Public 7*f7018c21STomi Valkeinen * License. See the file COPYING in the main directory of this archive 8*f7018c21STomi Valkeinen * for more details. 9*f7018c21STomi Valkeinen */ 10*f7018c21STomi Valkeinen 11*f7018c21STomi Valkeinen #include <linux/types.h> 12*f7018c21STomi Valkeinen 13*f7018c21STomi Valkeinen extern void c2p_planar(void *dst, const void *src, u32 dx, u32 dy, u32 width, 14*f7018c21STomi Valkeinen u32 height, u32 dst_nextline, u32 dst_nextplane, 15*f7018c21STomi Valkeinen u32 src_nextline, u32 bpp); 16*f7018c21STomi Valkeinen 17*f7018c21STomi Valkeinen extern void c2p_iplan2(void *dst, const void *src, u32 dx, u32 dy, u32 width, 18*f7018c21STomi Valkeinen u32 height, u32 dst_nextline, u32 src_nextline, 19*f7018c21STomi Valkeinen u32 bpp); 20