Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  *  Fast C2P (Chunky-to-Planar) Conversion
0003  *
0004  *  Copyright (C) 2003-2008 Geert Uytterhoeven
0005  *
0006  *  This file is subject to the terms and conditions of the GNU General Public
0007  *  License. See the file COPYING in the main directory of this archive
0008  *  for more details.
0009  */
0010 
0011 #include <linux/types.h>
0012 
0013 extern void c2p_planar(void *dst, const void *src, u32 dx, u32 dy, u32 width,
0014                u32 height, u32 dst_nextline, u32 dst_nextplane,
0015                u32 src_nextline, u32 bpp);
0016 
0017 extern void c2p_iplan2(void *dst, const void *src, u32 dx, u32 dy, u32 width,
0018                u32 height, u32 dst_nextline, u32 src_nextline,
0019                u32 bpp);